├── .gitignore ├── .travis.yml ├── Makefile ├── README.adoc ├── RELEASING.adoc ├── collector ├── impl │ ├── jolokia_metrics_collector.go │ ├── json_metrics_collector.go │ └── prometheus_metrics_collector.go ├── manager │ ├── metrics_collector_creator.go │ └── metrics_collector_manager.go ├── metric_units.go ├── metric_units_test.go ├── metrics_collector.go ├── metrics_endpoint.go └── tracker │ ├── metrics_tracker.go │ └── metrics_tracker_test.go ├── config.yaml ├── config ├── config.go ├── config_test.go ├── security │ ├── config_security.go │ └── config_security_test.go └── tags │ ├── config_tags.go │ └── config_tags_test.go ├── deploy ├── docker │ └── Dockerfile └── openshift │ ├── hawkular-openshift-agent-configmap.yaml │ ├── hawkular-openshift-agent-route.yaml │ └── hawkular-openshift-agent.yaml ├── emitter ├── emitter_server.go ├── health │ └── health_emitter.go ├── metrics │ └── metrics_emitter.go └── status │ ├── status_emitter.go │ └── status_emitter_test.go ├── examples ├── README.adoc ├── deploy-example.sh ├── go-expvar-example │ ├── Dockerfile │ ├── Makefile │ ├── go-expvar.yaml │ └── src │ │ └── go-expvar-example │ │ └── go-expvar-example.go ├── jolokia-wildfly-example │ ├── Dockerfile │ ├── Makefile │ └── jolokia-wildfly.yaml ├── multiple-endpoints-example │ ├── Dockerfile │ ├── Makefile │ ├── multiple-endpoints.py │ └── multiple-endpoints.yaml └── prometheus-python-example │ ├── Dockerfile │ ├── Makefile │ ├── prometheus-python.py │ └── prometheus-python.yaml ├── glide.lock ├── glide.yaml ├── hack ├── README.adoc ├── build-openshift.sh ├── build-openshiftmetrics.sh ├── cluster-openshift.sh ├── deploy-openshift-agent.sh ├── env-openshift.sh └── start-openshift.sh ├── hawkular-openshift-agent.go ├── http ├── http_client.go └── http_client_test.go ├── jolokia ├── jolokia_request.go ├── jolokia_response.go ├── jolokia_test.go ├── parse_metric_name.go ├── process_jolokia_response.go └── process_jolokia_response_test.go ├── json └── json_scraper.go ├── k8s ├── configmap.go ├── configmap_entry.go ├── configmap_test.go ├── configmaps.go ├── configmaps_test.go ├── discovery.go ├── get_local_node.go ├── inventory.go ├── k8s_client.go ├── namespace.go ├── node.go ├── node_event.go ├── node_event_consumer.go ├── pod.go ├── pod_inventory.go └── pod_inventory_test.go ├── log └── log.go ├── prometheus ├── prometheus_scraper.go ├── prometheus_scraper_test.go └── testdata │ ├── prometheus-counter.txt │ ├── prometheus-gauge.txt │ ├── prometheus-histogram.txt │ ├── prometheus-summary.txt │ ├── prometheus.data │ └── prometheus.txt ├── storage └── metrics_storage.go ├── util ├── expand │ ├── mapping_func.go │ └── mapping_func_test.go ├── math │ ├── math.go │ └── math_test.go └── stopwatch │ └── stopwatch.go └── vendor ├── github.com ├── beorn7 │ └── perks │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── histogram │ │ ├── bench_test.go │ │ ├── histogram.go │ │ └── histogram_test.go │ │ ├── quantile │ │ ├── bench_test.go │ │ ├── example_test.go │ │ ├── exampledata.txt │ │ ├── stream.go │ │ └── stream_test.go │ │ └── topk │ │ ├── topk.go │ │ └── topk_test.go ├── blang │ └── semver │ │ ├── LICENSE │ │ ├── README.md │ │ ├── examples │ │ └── main.go │ │ ├── json.go │ │ ├── json_test.go │ │ ├── range.go │ │ ├── range_test.go │ │ ├── semver.go │ │ ├── semver_test.go │ │ ├── sort.go │ │ ├── sort_test.go │ │ ├── sql.go │ │ └── sql_test.go ├── cloudfoundry-incubator │ └── candiedyaml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── api.go │ │ ├── candiedyaml_suite_test.go │ │ ├── decode.go │ │ ├── decode_test.go │ │ ├── emitter.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── fixtures │ │ └── specification │ │ │ ├── example2_1.yaml │ │ │ ├── example2_10.yaml │ │ │ ├── example2_11.yaml │ │ │ ├── example2_12.yaml │ │ │ ├── example2_13.yaml │ │ │ ├── example2_14.yaml │ │ │ ├── example2_15.yaml │ │ │ ├── example2_15_dumped.yaml │ │ │ ├── example2_16.yaml │ │ │ ├── example2_17.yaml │ │ │ ├── example2_17_control.yaml │ │ │ ├── example2_17_hexesc.yaml │ │ │ ├── example2_17_quoted.yaml │ │ │ ├── example2_17_single.yaml │ │ │ ├── example2_17_tie_fighter.yaml │ │ │ ├── example2_17_unicode.yaml │ │ │ ├── example2_18.yaml │ │ │ ├── example2_19.yaml │ │ │ ├── example2_2.yaml │ │ │ ├── example2_20.yaml │ │ │ ├── example2_21.yaml │ │ │ ├── example2_22.yaml │ │ │ ├── example2_23.yaml │ │ │ ├── example2_23_application.yaml │ │ │ ├── example2_23_non_date.yaml │ │ │ ├── example2_23_picture.yaml │ │ │ ├── example2_24.yaml │ │ │ ├── example2_24_dumped.yaml │ │ │ ├── example2_25.yaml │ │ │ ├── example2_26.yaml │ │ │ ├── example2_27.yaml │ │ │ ├── example2_27_dumped.yaml │ │ │ ├── example2_28.yaml │ │ │ ├── example2_3.yaml │ │ │ ├── example2_4.yaml │ │ │ ├── example2_5.yaml │ │ │ ├── example2_6.yaml │ │ │ ├── example2_7.yaml │ │ │ ├── example2_8.yaml │ │ │ ├── example2_9.yaml │ │ │ ├── example_empty.yaml │ │ │ └── types │ │ │ ├── map.yaml │ │ │ ├── map_mixed_tags.yaml │ │ │ ├── merge.yaml │ │ │ ├── omap.yaml │ │ │ ├── pairs.yaml │ │ │ ├── seq.yaml │ │ │ ├── set.yaml │ │ │ ├── v.yaml │ │ │ └── value.yaml │ │ ├── libyaml-LICENSE │ │ ├── parser.go │ │ ├── parser_test.go │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── resolver.go │ │ ├── resolver_test.go │ │ ├── run_parser.go │ │ ├── scanner.go │ │ ├── scanner_test.go │ │ ├── tags.go │ │ ├── writer.go │ │ ├── yaml_definesh.go │ │ ├── yaml_privateh.go │ │ └── yamlh.go ├── davecgh │ └── go-spew │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cov_report.sh │ │ ├── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── common_test.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── dump_test.go │ │ ├── dumpcgo_test.go │ │ ├── dumpnocgo_test.go │ │ ├── example_test.go │ │ ├── format.go │ │ ├── format_test.go │ │ ├── internal_test.go │ │ ├── internalunsafe_test.go │ │ ├── spew.go │ │ ├── spew_test.go │ │ └── testdata │ │ │ └── dumpcgo.go │ │ └── test_coverage.txt ├── docker │ └── distribution │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── AUTHORS │ │ ├── BUILDING.md │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Dockerfile │ │ ├── Godeps │ │ ├── Godeps.json │ │ └── Readme │ │ ├── Jenkinsfile │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── ROADMAP.md │ │ ├── blobs.go │ │ ├── circle.yml │ │ ├── cmd │ │ ├── digest │ │ │ └── main.go │ │ ├── registry-api-descriptor-template │ │ │ └── main.go │ │ └── registry │ │ │ ├── config-cache.yml │ │ │ ├── config-dev.yml │ │ │ ├── config-example.yml │ │ │ └── main.go │ │ ├── configuration │ │ ├── configuration.go │ │ ├── configuration_test.go │ │ └── parser.go │ │ ├── context │ │ ├── context.go │ │ ├── doc.go │ │ ├── http.go │ │ ├── http_test.go │ │ ├── logger.go │ │ ├── trace.go │ │ ├── trace_test.go │ │ ├── util.go │ │ ├── version.go │ │ └── version_test.go │ │ ├── contrib │ │ ├── apache │ │ │ ├── README.MD │ │ │ └── apache.conf │ │ ├── compose │ │ │ ├── README.md │ │ │ ├── docker-compose.yml │ │ │ └── nginx │ │ │ │ ├── Dockerfile │ │ │ │ ├── docker-registry-v2.conf │ │ │ │ ├── docker-registry.conf │ │ │ │ ├── nginx.conf │ │ │ │ └── registry.conf │ │ ├── docker-integration │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── docker-compose.yml │ │ │ ├── golem.conf │ │ │ ├── helpers.bash │ │ │ ├── install_certs.sh │ │ │ ├── malevolent-certs │ │ │ │ ├── localregistry.cert │ │ │ │ └── localregistry.key │ │ │ ├── malevolent.bats │ │ │ ├── nginx │ │ │ │ ├── Dockerfile │ │ │ │ ├── docker-registry-v2.conf │ │ │ │ ├── nginx.conf │ │ │ │ ├── registry-basic.conf │ │ │ │ ├── registry-noauth.conf │ │ │ │ ├── registry.conf │ │ │ │ ├── test.passwd │ │ │ │ └── v1 │ │ │ │ │ └── search.json │ │ │ ├── run_multiversion.sh │ │ │ ├── tls.bats │ │ │ ├── token.bats │ │ │ ├── tokenserver-oauth │ │ │ │ ├── .htpasswd │ │ │ │ ├── Dockerfile │ │ │ │ ├── certs │ │ │ │ │ ├── auth.localregistry.cert │ │ │ │ │ ├── auth.localregistry.key │ │ │ │ │ ├── localregistry.cert │ │ │ │ │ ├── localregistry.key │ │ │ │ │ ├── signing.cert │ │ │ │ │ └── signing.key │ │ │ │ ├── registry-config-notls.yml │ │ │ │ └── registry-config.yml │ │ │ └── tokenserver │ │ │ │ ├── .htpasswd │ │ │ │ ├── Dockerfile │ │ │ │ ├── certs │ │ │ │ ├── auth.localregistry.cert │ │ │ │ ├── auth.localregistry.key │ │ │ │ ├── localregistry.cert │ │ │ │ ├── localregistry.key │ │ │ │ ├── signing.cert │ │ │ │ └── signing.key │ │ │ │ └── registry-config.yml │ │ └── token-server │ │ │ ├── errors.go │ │ │ ├── main.go │ │ │ └── token.go │ │ ├── coverpkg.sh │ │ ├── digest │ │ ├── digest.go │ │ ├── digest_test.go │ │ ├── digester.go │ │ ├── digester_resumable_test.go │ │ ├── doc.go │ │ ├── set.go │ │ ├── set_test.go │ │ ├── verifiers.go │ │ └── verifiers_test.go │ │ ├── doc.go │ │ ├── docs │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── architecture.md │ │ ├── compatibility.md │ │ ├── configuration.md │ │ ├── deploying.md │ │ ├── deprecated.md │ │ ├── garbage-collection.md │ │ ├── glossary.md │ │ ├── help.md │ │ ├── images │ │ │ ├── notifications.gliffy │ │ │ ├── notifications.png │ │ │ ├── notifications.svg │ │ │ └── v2-registry-auth.png │ │ ├── index.md │ │ ├── insecure.md │ │ ├── introduction.md │ │ ├── menu.md │ │ ├── migration.md │ │ ├── notifications.md │ │ ├── recipes │ │ │ ├── apache.md │ │ │ ├── index.md │ │ │ ├── menu.md │ │ │ ├── mirror.md │ │ │ ├── nginx.md │ │ │ ├── osx-setup-guide.md │ │ │ └── osx │ │ │ │ ├── com.docker.registry.plist │ │ │ │ └── config.yml │ │ ├── spec │ │ │ ├── api.md │ │ │ ├── api.md.tmpl │ │ │ ├── auth │ │ │ │ ├── index.md │ │ │ │ ├── jwt.md │ │ │ │ ├── oauth.md │ │ │ │ ├── scope.md │ │ │ │ └── token.md │ │ │ ├── implementations.md │ │ │ ├── index.md │ │ │ ├── json.md │ │ │ ├── manifest-v2-1.md │ │ │ ├── manifest-v2-2.md │ │ │ └── menu.md │ │ └── storage-drivers │ │ │ ├── azure.md │ │ │ ├── filesystem.md │ │ │ ├── gcs.md │ │ │ ├── index.md │ │ │ ├── inmemory.md │ │ │ ├── menu.md │ │ │ ├── oss.md │ │ │ ├── s3.md │ │ │ └── swift.md │ │ ├── errors.go │ │ ├── health │ │ ├── api │ │ │ ├── api.go │ │ │ └── api_test.go │ │ ├── checks │ │ │ ├── checks.go │ │ │ └── checks_test.go │ │ ├── doc.go │ │ ├── health.go │ │ └── health_test.go │ │ ├── manifest │ │ ├── doc.go │ │ ├── manifestlist │ │ │ ├── manifestlist.go │ │ │ └── manifestlist_test.go │ │ ├── schema1 │ │ │ ├── config_builder.go │ │ │ ├── config_builder_test.go │ │ │ ├── manifest.go │ │ │ ├── manifest_test.go │ │ │ ├── reference_builder.go │ │ │ ├── reference_builder_test.go │ │ │ ├── sign.go │ │ │ └── verify.go │ │ ├── schema2 │ │ │ ├── builder.go │ │ │ ├── builder_test.go │ │ │ ├── manifest.go │ │ │ └── manifest_test.go │ │ └── versioned.go │ │ ├── manifests.go │ │ ├── notifications │ │ ├── bridge.go │ │ ├── bridge_test.go │ │ ├── endpoint.go │ │ ├── event.go │ │ ├── event_test.go │ │ ├── http.go │ │ ├── http_test.go │ │ ├── listener.go │ │ ├── listener_test.go │ │ ├── metrics.go │ │ ├── sinks.go │ │ └── sinks_test.go │ │ ├── project │ │ ├── dev-image │ │ │ └── Dockerfile │ │ └── hooks │ │ │ ├── README.md │ │ │ ├── configure-hooks.sh │ │ │ └── pre-commit │ │ ├── reference │ │ ├── reference.go │ │ ├── reference_test.go │ │ ├── regexp.go │ │ └── regexp_test.go │ │ ├── registry.go │ │ ├── registry │ │ ├── api │ │ │ ├── errcode │ │ │ │ ├── errors.go │ │ │ │ ├── errors_test.go │ │ │ │ ├── handler.go │ │ │ │ └── register.go │ │ │ └── v2 │ │ │ │ ├── descriptors.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── routes.go │ │ │ │ ├── routes_test.go │ │ │ │ ├── urls.go │ │ │ │ └── urls_test.go │ │ ├── auth │ │ │ ├── auth.go │ │ │ ├── htpasswd │ │ │ │ ├── access.go │ │ │ │ ├── access_test.go │ │ │ │ ├── htpasswd.go │ │ │ │ └── htpasswd_test.go │ │ │ ├── silly │ │ │ │ ├── access.go │ │ │ │ └── access_test.go │ │ │ └── token │ │ │ │ ├── accesscontroller.go │ │ │ │ ├── stringset.go │ │ │ │ ├── token.go │ │ │ │ ├── token_test.go │ │ │ │ └── util.go │ │ ├── client │ │ │ ├── auth │ │ │ │ ├── addr.go │ │ │ │ ├── api_version.go │ │ │ │ ├── authchallenge.go │ │ │ │ ├── authchallenge_test.go │ │ │ │ ├── session.go │ │ │ │ └── session_test.go │ │ │ ├── blob_writer.go │ │ │ ├── blob_writer_test.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── repository.go │ │ │ ├── repository_test.go │ │ │ └── transport │ │ │ │ ├── http_reader.go │ │ │ │ └── transport.go │ │ ├── doc.go │ │ ├── handlers │ │ │ ├── api_test.go │ │ │ ├── app.go │ │ │ ├── app_test.go │ │ │ ├── basicauth.go │ │ │ ├── basicauth_prego14.go │ │ │ ├── blob.go │ │ │ ├── blobupload.go │ │ │ ├── catalog.go │ │ │ ├── context.go │ │ │ ├── health_test.go │ │ │ ├── helpers.go │ │ │ ├── hmac.go │ │ │ ├── hmac_test.go │ │ │ ├── hooks.go │ │ │ ├── images.go │ │ │ ├── mail.go │ │ │ └── tags.go │ │ ├── listener │ │ │ └── listener.go │ │ ├── middleware │ │ │ ├── registry │ │ │ │ └── middleware.go │ │ │ └── repository │ │ │ │ └── middleware.go │ │ ├── proxy │ │ │ ├── proxyauth.go │ │ │ ├── proxyblobstore.go │ │ │ ├── proxyblobstore_test.go │ │ │ ├── proxymanifeststore.go │ │ │ ├── proxymanifeststore_test.go │ │ │ ├── proxymetrics.go │ │ │ ├── proxyregistry.go │ │ │ ├── proxytagservice.go │ │ │ ├── proxytagservice_test.go │ │ │ └── scheduler │ │ │ │ ├── scheduler.go │ │ │ │ └── scheduler_test.go │ │ ├── registry.go │ │ ├── registry_test.go │ │ ├── root.go │ │ └── storage │ │ │ ├── blob_test.go │ │ │ ├── blobcachemetrics.go │ │ │ ├── blobserver.go │ │ │ ├── blobstore.go │ │ │ ├── blobwriter.go │ │ │ ├── blobwriter_nonresumable.go │ │ │ ├── blobwriter_resumable.go │ │ │ ├── cache │ │ │ ├── cache.go │ │ │ ├── cachecheck │ │ │ │ └── suite.go │ │ │ ├── cachedblobdescriptorstore.go │ │ │ ├── memory │ │ │ │ ├── memory.go │ │ │ │ └── memory_test.go │ │ │ └── redis │ │ │ │ ├── redis.go │ │ │ │ └── redis_test.go │ │ │ ├── catalog.go │ │ │ ├── catalog_test.go │ │ │ ├── doc.go │ │ │ ├── driver │ │ │ ├── azure │ │ │ │ ├── azure.go │ │ │ │ └── azure_test.go │ │ │ ├── base │ │ │ │ ├── base.go │ │ │ │ └── regulator.go │ │ │ ├── factory │ │ │ │ └── factory.go │ │ │ ├── fileinfo.go │ │ │ ├── filesystem │ │ │ │ ├── driver.go │ │ │ │ └── driver_test.go │ │ │ ├── gcs │ │ │ │ ├── doc.go │ │ │ │ ├── gcs.go │ │ │ │ └── gcs_test.go │ │ │ ├── inmemory │ │ │ │ ├── driver.go │ │ │ │ ├── driver_test.go │ │ │ │ └── mfs.go │ │ │ ├── middleware │ │ │ │ ├── cloudfront │ │ │ │ │ └── middleware.go │ │ │ │ ├── redirect │ │ │ │ │ ├── middleware.go │ │ │ │ │ └── middleware_test.go │ │ │ │ └── storagemiddleware.go │ │ │ ├── oss │ │ │ │ ├── doc.go │ │ │ │ ├── oss.go │ │ │ │ └── oss_test.go │ │ │ ├── s3-aws │ │ │ │ ├── s3.go │ │ │ │ ├── s3_test.go │ │ │ │ └── s3_v2_signer.go │ │ │ ├── s3-goamz │ │ │ │ ├── s3.go │ │ │ │ └── s3_test.go │ │ │ ├── storagedriver.go │ │ │ ├── swift │ │ │ │ ├── swift.go │ │ │ │ └── swift_test.go │ │ │ ├── testdriver │ │ │ │ └── testdriver.go │ │ │ └── testsuites │ │ │ │ └── testsuites.go │ │ │ ├── filereader.go │ │ │ ├── filereader_test.go │ │ │ ├── garbagecollect.go │ │ │ ├── garbagecollect_test.go │ │ │ ├── linkedblobstore.go │ │ │ ├── linkedblobstore_test.go │ │ │ ├── manifestlisthandler.go │ │ │ ├── manifeststore.go │ │ │ ├── manifeststore_test.go │ │ │ ├── paths.go │ │ │ ├── paths_test.go │ │ │ ├── purgeuploads.go │ │ │ ├── purgeuploads_test.go │ │ │ ├── registry.go │ │ │ ├── schema2manifesthandler.go │ │ │ ├── schema2manifesthandler_test.go │ │ │ ├── signedmanifesthandler.go │ │ │ ├── tagstore.go │ │ │ ├── tagstore_test.go │ │ │ ├── util.go │ │ │ ├── vacuum.go │ │ │ ├── walk.go │ │ │ └── walk_test.go │ │ ├── tags.go │ │ ├── testutil │ │ ├── handler.go │ │ ├── manifests.go │ │ └── tarfile.go │ │ ├── uuid │ │ ├── uuid.go │ │ └── uuid_test.go │ │ └── version │ │ ├── print.go │ │ ├── version.go │ │ └── version.sh ├── emicklei │ └── go-restful │ │ ├── .gitignore │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Srcfile │ │ ├── bench_curly_test.go │ │ ├── bench_test.go │ │ ├── bench_test.sh │ │ ├── compress.go │ │ ├── compress_test.go │ │ ├── compressor_cache.go │ │ ├── compressor_pools.go │ │ ├── compressors.go │ │ ├── constants.go │ │ ├── container.go │ │ ├── container_test.go │ │ ├── cors_filter.go │ │ ├── cors_filter_test.go │ │ ├── coverage.sh │ │ ├── curly.go │ │ ├── curly_route.go │ │ ├── curly_test.go │ │ ├── doc.go │ │ ├── doc_examples_test.go │ │ ├── entity_accessors.go │ │ ├── entity_accessors_test.go │ │ ├── examples │ │ ├── .goconvey │ │ ├── google_app_engine │ │ │ ├── .goconvey │ │ │ ├── app.yaml │ │ │ ├── datastore │ │ │ │ ├── .goconvey │ │ │ │ ├── app.yaml │ │ │ │ └── main.go │ │ │ ├── restful-appstats-integration.go │ │ │ └── restful-user-service.go │ │ ├── home.html │ │ ├── msgpack │ │ │ ├── msgpack_entity.go │ │ │ └── msgpack_entity_test.go │ │ ├── restful-CORS-filter.go │ │ ├── restful-NCSA-logging.go │ │ ├── restful-basic-authentication.go │ │ ├── restful-cpuprofiler-service.go │ │ ├── restful-curly-router.go │ │ ├── restful-curly-router_test.go │ │ ├── restful-encoding-filter.go │ │ ├── restful-filters.go │ │ ├── restful-form-handling.go │ │ ├── restful-hello-world.go │ │ ├── restful-html-template.go │ │ ├── restful-multi-containers.go │ │ ├── restful-no-cache-filter.go │ │ ├── restful-options-filter.go │ │ ├── restful-path-tail.go │ │ ├── restful-pre-post-filters.go │ │ ├── restful-resource-functions.go │ │ ├── restful-route_test.go │ │ ├── restful-routefunction_test.go │ │ ├── restful-serve-static.go │ │ ├── restful-swagger.go │ │ ├── restful-user-resource.go │ │ └── restful-user-service.go │ │ ├── filter.go │ │ ├── filter_test.go │ │ ├── install.sh │ │ ├── jsr311.go │ │ ├── jsr311_test.go │ │ ├── log │ │ └── log.go │ │ ├── logger.go │ │ ├── mime.go │ │ ├── mime_test.go │ │ ├── options_filter.go │ │ ├── options_filter_test.go │ │ ├── parameter.go │ │ ├── path_expression.go │ │ ├── path_expression_test.go │ │ ├── request.go │ │ ├── request_test.go │ │ ├── response.go │ │ ├── response_test.go │ │ ├── route.go │ │ ├── route_builder.go │ │ ├── route_builder_test.go │ │ ├── route_test.go │ │ ├── router.go │ │ ├── service_error.go │ │ ├── swagger │ │ ├── CHANGES.md │ │ ├── README.md │ │ ├── api_declaration_list.go │ │ ├── config.go │ │ ├── model_builder.go │ │ ├── model_builder_test.go │ │ ├── model_list.go │ │ ├── model_list_test.go │ │ ├── model_property_ext.go │ │ ├── model_property_ext_test.go │ │ ├── model_property_list.go │ │ ├── model_property_list_test.go │ │ ├── ordered_route_map.go │ │ ├── ordered_route_map_test.go │ │ ├── postbuild_model_test.go │ │ ├── swagger.go │ │ ├── swagger_builder.go │ │ ├── swagger_test.go │ │ ├── swagger_webservice.go │ │ ├── test_package │ │ │ └── struct.go │ │ └── utils_test.go │ │ ├── tracer_test.go │ │ ├── web_service.go │ │ ├── web_service_container.go │ │ └── web_service_test.go ├── ghodss │ └── yaml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── fields.go │ │ ├── yaml.go │ │ └── yaml_test.go ├── gogo │ └── protobuf │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── GOLANG_CONTRIBUTORS │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README │ │ ├── Readme.md │ │ ├── _conformance │ │ ├── Makefile │ │ ├── conformance.go │ │ └── conformance_proto │ │ │ ├── conformance.pb.go │ │ │ └── conformance.proto │ │ ├── bench.md │ │ ├── codec │ │ ├── codec.go │ │ └── codec_test.go │ │ ├── extensions.md │ │ ├── gogoproto │ │ ├── Makefile │ │ ├── doc.go │ │ ├── gogo.pb.go │ │ ├── gogo.pb.golden │ │ ├── gogo.proto │ │ └── helper.go │ │ ├── gogoreplace │ │ └── main.go │ │ ├── install-protobuf.sh │ │ ├── io │ │ ├── full.go │ │ ├── io.go │ │ ├── io_test.go │ │ ├── uint32.go │ │ └── varint.go │ │ ├── jsonpb │ │ ├── jsonpb.go │ │ ├── jsonpb_test.go │ │ └── jsonpb_test_proto │ │ │ ├── Makefile │ │ │ ├── bytes.go │ │ │ ├── more_test_objects.pb.go │ │ │ ├── more_test_objects.proto │ │ │ ├── test_objects.pb.go │ │ │ └── test_objects.proto │ │ ├── plugin │ │ ├── compare │ │ │ ├── compare.go │ │ │ └── comparetest.go │ │ ├── defaultcheck │ │ │ └── defaultcheck.go │ │ ├── description │ │ │ ├── description.go │ │ │ └── descriptiontest.go │ │ ├── embedcheck │ │ │ └── embedcheck.go │ │ ├── enumstringer │ │ │ └── enumstringer.go │ │ ├── equal │ │ │ ├── equal.go │ │ │ └── equaltest.go │ │ ├── face │ │ │ ├── face.go │ │ │ └── facetest.go │ │ ├── gostring │ │ │ ├── gostring.go │ │ │ └── gostringtest.go │ │ ├── marshalto │ │ │ └── marshalto.go │ │ ├── oneofcheck │ │ │ └── oneofcheck.go │ │ ├── populate │ │ │ └── populate.go │ │ ├── size │ │ │ ├── size.go │ │ │ └── sizetest.go │ │ ├── stringer │ │ │ ├── stringer.go │ │ │ └── stringertest.go │ │ ├── testgen │ │ │ └── testgen.go │ │ ├── union │ │ │ ├── union.go │ │ │ └── uniontest.go │ │ └── unmarshal │ │ │ └── unmarshal.go │ │ ├── proto │ │ ├── Makefile │ │ ├── all_test.go │ │ ├── any_test.go │ │ ├── clone.go │ │ ├── clone_test.go │ │ ├── decode.go │ │ ├── decode_gogo.go │ │ ├── duration.go │ │ ├── duration_gogo.go │ │ ├── encode.go │ │ ├── encode_gogo.go │ │ ├── equal.go │ │ ├── equal_test.go │ │ ├── extensions.go │ │ ├── extensions_gogo.go │ │ ├── extensions_test.go │ │ ├── lib.go │ │ ├── lib_gogo.go │ │ ├── message_set.go │ │ ├── message_set_test.go │ │ ├── pointer_reflect.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_gogo.go │ │ ├── properties.go │ │ ├── properties_gogo.go │ │ ├── proto3_proto │ │ │ ├── proto3.pb.go │ │ │ └── proto3.proto │ │ ├── proto3_test.go │ │ ├── size2_test.go │ │ ├── size_test.go │ │ ├── skip_gogo.go │ │ ├── testdata │ │ │ ├── Makefile │ │ │ ├── golden_test.go │ │ │ ├── test.pb.go │ │ │ ├── test.pb.go.golden │ │ │ └── test.proto │ │ ├── text.go │ │ ├── text_gogo.go │ │ ├── text_parser.go │ │ ├── text_parser_test.go │ │ ├── text_test.go │ │ ├── timestamp.go │ │ └── timestamp_gogo.go │ │ ├── protobuf │ │ ├── Makefile │ │ └── google │ │ │ └── protobuf │ │ │ ├── any.proto │ │ │ ├── compiler │ │ │ └── plugin.proto │ │ │ ├── descriptor.proto │ │ │ ├── duration.proto │ │ │ ├── empty.proto │ │ │ ├── field_mask.proto │ │ │ ├── struct.proto │ │ │ ├── timestamp.proto │ │ │ └── wrappers.proto │ │ ├── protoc-gen-combo │ │ └── combo.go │ │ ├── protoc-gen-gofast │ │ └── main.go │ │ ├── protoc-gen-gogo │ │ ├── Makefile │ │ ├── descriptor │ │ │ ├── Makefile │ │ │ ├── descriptor.pb.go │ │ │ ├── descriptor_gostring.gen.go │ │ │ └── helper.go │ │ ├── doc.go │ │ ├── generator │ │ │ ├── generator.go │ │ │ ├── helper.go │ │ │ └── name_test.go │ │ ├── grpc │ │ │ └── grpc.go │ │ ├── main.go │ │ ├── plugin │ │ │ ├── Makefile │ │ │ └── plugin.pb.go │ │ └── testdata │ │ │ ├── Makefile │ │ │ ├── extension_base.proto │ │ │ ├── extension_extra.proto │ │ │ ├── extension_test.go │ │ │ ├── extension_user.proto │ │ │ ├── grpc.proto │ │ │ ├── imp.pb.go.golden │ │ │ ├── imp.proto │ │ │ ├── imp2.proto │ │ │ ├── imp3.proto │ │ │ ├── main_test.go │ │ │ ├── multi │ │ │ ├── .gitignore │ │ │ ├── multi1.proto │ │ │ ├── multi2.proto │ │ │ └── multi3.proto │ │ │ ├── my_test │ │ │ ├── test.pb.go │ │ │ └── test.proto │ │ │ └── proto3.proto │ │ ├── protoc-gen-gogofast │ │ └── main.go │ │ ├── protoc-gen-gogofaster │ │ └── main.go │ │ ├── protoc-gen-gogoslick │ │ └── main.go │ │ ├── protoc-gen-gogotypes │ │ └── main.go │ │ ├── protoc-gen-gostring │ │ └── main.go │ │ ├── protoc-min-version │ │ └── minversion.go │ │ ├── sortkeys │ │ └── sortkeys.go │ │ ├── test │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── asymetric-issue125 │ │ │ ├── Makefile │ │ │ ├── asym.pb.go │ │ │ ├── asym.proto │ │ │ ├── asym_test.go │ │ │ ├── asympb_test.go │ │ │ └── pop.go │ │ ├── bug_test.go │ │ ├── casttype │ │ │ ├── Makefile │ │ │ ├── casttype.proto │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ ├── casttype.proto │ │ │ │ │ └── casttypepb_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ ├── casttype.proto │ │ │ │ │ └── casttypepb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ ├── casttype.proto │ │ │ │ │ └── casttypepb_test.go │ │ │ │ ├── unmarshaler │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ ├── casttype.proto │ │ │ │ │ └── casttypepb_test.go │ │ │ │ ├── unsafeboth │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ ├── casttype.proto │ │ │ │ │ └── casttypepb_test.go │ │ │ │ ├── unsafemarshaler │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ ├── casttype.proto │ │ │ │ │ └── casttypepb_test.go │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ ├── casttype.proto │ │ │ │ │ └── casttypepb_test.go │ │ │ └── mytypes.go │ │ ├── castvalue │ │ │ ├── Makefile │ │ │ ├── castvalue.pb.go │ │ │ ├── castvalue.proto │ │ │ ├── castvaluepb_test.go │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ └── mytypes.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ └── mytypes.go │ │ │ │ ├── unmarshaler │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ └── mytypes.go │ │ │ │ ├── unsafeboth │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ └── mytypes.go │ │ │ │ ├── unsafemarshaler │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ └── mytypes.go │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ └── mytypes.go │ │ │ └── mytypes.go │ │ ├── combos │ │ │ ├── both │ │ │ │ ├── bug_test.go │ │ │ │ ├── thetest.pb.go │ │ │ │ ├── thetest.proto │ │ │ │ ├── thetestpb_test.go │ │ │ │ └── uuid.go │ │ │ ├── marshaler │ │ │ │ ├── bug_test.go │ │ │ │ ├── thetest.pb.go │ │ │ │ ├── thetest.proto │ │ │ │ ├── thetestpb_test.go │ │ │ │ └── uuid.go │ │ │ ├── unmarshaler │ │ │ │ ├── bug_test.go │ │ │ │ ├── thetest.pb.go │ │ │ │ ├── thetest.proto │ │ │ │ ├── thetestpb_test.go │ │ │ │ └── uuid.go │ │ │ ├── unsafeboth │ │ │ │ ├── bug_test.go │ │ │ │ ├── thetest.pb.go │ │ │ │ ├── thetest.proto │ │ │ │ ├── thetestpb_test.go │ │ │ │ └── uuid.go │ │ │ ├── unsafemarshaler │ │ │ │ ├── bug_test.go │ │ │ │ ├── thetest.pb.go │ │ │ │ ├── thetest.proto │ │ │ │ ├── thetestpb_test.go │ │ │ │ └── uuid.go │ │ │ └── unsafeunmarshaler │ │ │ │ ├── bug_test.go │ │ │ │ ├── thetest.pb.go │ │ │ │ ├── thetest.proto │ │ │ │ ├── thetestpb_test.go │ │ │ │ └── uuid.go │ │ ├── custom-dash-type │ │ │ └── customdash.go │ │ ├── custom │ │ │ ├── custom.go │ │ │ └── custom_test.go │ │ ├── custombytesnonstruct │ │ │ ├── Makefile │ │ │ ├── custombytesnonstruct_test.go │ │ │ ├── customtype.go │ │ │ ├── proto.pb.go │ │ │ └── proto.proto │ │ ├── dashfilename │ │ │ ├── dash-filename.proto │ │ │ ├── df_test.go │ │ │ └── doc.go │ │ ├── defaultconflict │ │ │ ├── df.proto │ │ │ ├── dg.proto │ │ │ ├── doc.go │ │ │ ├── nc.proto │ │ │ ├── nc_test.go │ │ │ ├── ne.proto │ │ │ └── nx.proto │ │ ├── embedconflict │ │ │ ├── .gitignore │ │ │ ├── doc.go │ │ │ ├── eb.proto │ │ │ ├── ec.proto │ │ │ ├── ec_test.go │ │ │ ├── ee.proto │ │ │ ├── em.proto │ │ │ ├── en.proto │ │ │ └── er.proto │ │ ├── empty-issue70 │ │ │ ├── Makefile │ │ │ ├── empty.pb.go │ │ │ ├── empty.proto │ │ │ └── empty_test.go │ │ ├── enumcustomname │ │ │ ├── Makefile │ │ │ ├── enumcustomname.pb.go │ │ │ └── enumcustomname.proto │ │ ├── enumprefix │ │ │ ├── Makefile │ │ │ ├── enumprefix.pb.go │ │ │ └── enumprefix.proto │ │ ├── enumstringer │ │ │ ├── Makefile │ │ │ ├── enumstringer.pb.go │ │ │ ├── enumstringer.proto │ │ │ ├── enumstringerpb_test.go │ │ │ └── string.go │ │ ├── example │ │ │ ├── Makefile │ │ │ ├── example.pb.go │ │ │ ├── example.proto │ │ │ ├── example_test.go │ │ │ └── examplepb_test.go │ │ ├── extension_test.go │ │ ├── filedotname │ │ │ ├── Makefile │ │ │ ├── file.dot.pb.go │ │ │ ├── file.dot.proto │ │ │ └── file.dotpb_test.go │ │ ├── fuzztests │ │ │ ├── Makefile │ │ │ ├── fuzz.pb.go │ │ │ ├── fuzz.proto │ │ │ └── fuzz_test.go │ │ ├── group │ │ │ ├── Makefile │ │ │ ├── group.pb.go │ │ │ ├── group.proto │ │ │ └── grouppb_test.go │ │ ├── importdedup │ │ │ ├── Makefile │ │ │ ├── importdedup_test.go │ │ │ ├── proto.pb.go │ │ │ ├── proto.proto │ │ │ └── subpkg │ │ │ │ ├── customtype.go │ │ │ │ ├── subproto.pb.go │ │ │ │ └── subproto.proto │ │ ├── indeximport-issue72 │ │ │ ├── Makefile │ │ │ ├── index │ │ │ │ ├── index.pb.go │ │ │ │ ├── index.proto │ │ │ │ └── indexpb_test.go │ │ │ ├── indeximport.pb.go │ │ │ ├── indeximport.proto │ │ │ └── indeximportpb_test.go │ │ ├── issue34 │ │ │ ├── Makefile │ │ │ ├── issue34_test.go │ │ │ ├── proto.pb.go │ │ │ └── proto.proto │ │ ├── issue42order │ │ │ ├── Makefile │ │ │ ├── issue42.pb.go │ │ │ ├── issue42.proto │ │ │ └── order_test.go │ │ ├── issue8 │ │ │ ├── Makefile │ │ │ ├── proto.pb.go │ │ │ ├── proto.proto │ │ │ └── protopb_test.go │ │ ├── mapsproto2 │ │ │ ├── Makefile │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ ├── unmarshaler │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ ├── unsafeboth │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ ├── unsafemarshaler │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ ├── doc.go │ │ │ ├── header.proto │ │ │ ├── mapsproto2.proto │ │ │ └── mapsproto2_test.go.in │ │ ├── mixbench │ │ │ ├── marshal.txt │ │ │ ├── marshaler.txt │ │ │ ├── mixbench.go │ │ │ ├── unmarshal.txt │ │ │ ├── unmarshaler.txt │ │ │ ├── unsafe_marshaler.txt │ │ │ └── unsafe_unmarshaler.txt │ │ ├── moredefaults │ │ │ ├── Makefile │ │ │ ├── md.pb.go │ │ │ ├── md.proto │ │ │ ├── md_test.go │ │ │ └── mdpb_test.go │ │ ├── nopackage │ │ │ ├── Makefile │ │ │ ├── nopackage.pb.go │ │ │ ├── nopackage.proto │ │ │ └── nopackage_test.go │ │ ├── oneof │ │ │ ├── Makefile │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ ├── unmarshaler │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ ├── unsafeboth │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ ├── unsafemarshaler │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ ├── doc.go │ │ │ └── one.proto │ │ ├── oneof3 │ │ │ ├── Makefile │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ ├── unmarshaler │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ ├── unsafeboth │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ ├── unsafemarshaler │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ ├── doc.go │ │ │ └── one.proto │ │ ├── oneofembed │ │ │ ├── Makefile │ │ │ ├── oneofembed.pb.go │ │ │ ├── oneofembed.proto │ │ │ └── oneofembedpb_test.go │ │ ├── packed │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── packed.pb.go │ │ │ ├── packed.proto │ │ │ └── packed_test.go │ │ ├── proto3extension │ │ │ ├── Makefile │ │ │ ├── proto3ext.pb.go │ │ │ └── proto3ext.proto │ │ ├── protosize │ │ │ ├── Makefile │ │ │ ├── protosize.pb.go │ │ │ ├── protosize.proto │ │ │ ├── protosize_test.go │ │ │ └── protosizepb_test.go │ │ ├── required │ │ │ ├── Makefile │ │ │ ├── requiredexample.pb.go │ │ │ ├── requiredexample.proto │ │ │ └── requiredexamplepb_test.go │ │ ├── sizeunderscore │ │ │ ├── Makefile │ │ │ ├── sizeunderscore.pb.go │ │ │ ├── sizeunderscore.proto │ │ │ └── sizeunderscorepb_test.go │ │ ├── stdtypes │ │ │ ├── Makefile │ │ │ ├── stdtypes.pb.go │ │ │ ├── stdtypes.proto │ │ │ └── stdtypespb_test.go │ │ ├── tags │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── tags.pb.go │ │ │ ├── tags.proto │ │ │ └── tags_test.go │ │ ├── theproto3 │ │ │ ├── Makefile │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ ├── unmarshaler │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ ├── unsafeboth │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ ├── unsafemarshaler │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ └── theproto3pb_test.go │ │ │ ├── doc.go │ │ │ ├── footer.proto │ │ │ ├── header.proto │ │ │ ├── maps.proto │ │ │ ├── proto3_test.go.in │ │ │ └── theproto3.proto │ │ ├── thetest.pb.go │ │ ├── thetest.proto │ │ ├── thetestpb_test.go │ │ ├── types │ │ │ ├── Makefile │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── types.pb.go │ │ │ │ │ ├── types.proto │ │ │ │ │ ├── types_test.go │ │ │ │ │ └── typespb_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── types.pb.go │ │ │ │ │ ├── types.proto │ │ │ │ │ ├── types_test.go │ │ │ │ │ └── typespb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── types.pb.go │ │ │ │ │ ├── types.proto │ │ │ │ │ ├── types_test.go │ │ │ │ │ └── typespb_test.go │ │ │ │ ├── unmarshaler │ │ │ │ │ ├── types.pb.go │ │ │ │ │ ├── types.proto │ │ │ │ │ ├── types_test.go │ │ │ │ │ └── typespb_test.go │ │ │ │ ├── unsafeboth │ │ │ │ │ ├── types.pb.go │ │ │ │ │ ├── types.proto │ │ │ │ │ ├── types_test.go │ │ │ │ │ └── typespb_test.go │ │ │ │ ├── unsafemarshaler │ │ │ │ │ ├── types.pb.go │ │ │ │ │ ├── types.proto │ │ │ │ │ ├── types_test.go │ │ │ │ │ └── typespb_test.go │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ ├── types.pb.go │ │ │ │ │ ├── types.proto │ │ │ │ │ ├── types_test.go │ │ │ │ │ └── typespb_test.go │ │ │ ├── types.proto │ │ │ └── types_test.go.in │ │ ├── unmarshalmerge │ │ │ ├── Makefile │ │ │ ├── unmarshalmerge.pb.go │ │ │ ├── unmarshalmerge.proto │ │ │ ├── unmarshalmerge_test.go │ │ │ └── unmarshalmergepb_test.go │ │ ├── unrecognized │ │ │ ├── Makefile │ │ │ ├── oldnew_test.go │ │ │ ├── unrecognized.pb.go │ │ │ ├── unrecognized.proto │ │ │ └── unrecognizedpb_test.go │ │ ├── unrecognizedgroup │ │ │ ├── Makefile │ │ │ ├── oldnew_test.go │ │ │ ├── unrecognizedgroup.pb.go │ │ │ ├── unrecognizedgroup.proto │ │ │ └── unrecognizedgrouppb_test.go │ │ ├── uuid.go │ │ └── uuid_test.go │ │ ├── types │ │ ├── Makefile │ │ ├── any.go │ │ ├── any.pb.go │ │ ├── any_test.go │ │ ├── doc.go │ │ ├── duration.go │ │ ├── duration.pb.go │ │ ├── duration_gogo.go │ │ ├── duration_test.go │ │ ├── empty.pb.go │ │ ├── field_mask.pb.go │ │ ├── struct.pb.go │ │ ├── timestamp.go │ │ ├── timestamp.pb.go │ │ ├── timestamp_gogo.go │ │ ├── timestamp_test.go │ │ └── wrappers.pb.go │ │ ├── vanity │ │ ├── command │ │ │ └── command.go │ │ ├── enum.go │ │ ├── field.go │ │ ├── file.go │ │ ├── foreach.go │ │ ├── msg.go │ │ └── test │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── fast │ │ │ ├── gogovanity.pb.go │ │ │ ├── proto3.pb.go │ │ │ └── vanity.pb.go │ │ │ ├── faster │ │ │ ├── gogovanity.pb.go │ │ │ ├── proto3.pb.go │ │ │ └── vanity.pb.go │ │ │ ├── gofast │ │ │ └── .gitignore │ │ │ ├── gogovanity.proto │ │ │ ├── proto3.proto │ │ │ ├── slick │ │ │ ├── gogovanity.pb.go │ │ │ ├── proto3.pb.go │ │ │ └── vanity.pb.go │ │ │ ├── vanity.proto │ │ │ └── vanity_test.go │ │ └── version │ │ └── version.go ├── golang │ ├── glog │ │ ├── LICENSE │ │ ├── README │ │ ├── glog.go │ │ ├── glog_file.go │ │ └── glog_test.go │ └── protobuf │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── Make.protobuf │ │ ├── Makefile │ │ ├── README.md │ │ ├── _conformance │ │ ├── Makefile │ │ ├── conformance.go │ │ └── conformance_proto │ │ │ ├── conformance.pb.go │ │ │ └── conformance.proto │ │ ├── jsonpb │ │ ├── jsonpb.go │ │ ├── jsonpb_test.go │ │ └── jsonpb_test_proto │ │ │ ├── Makefile │ │ │ ├── more_test_objects.pb.go │ │ │ ├── more_test_objects.proto │ │ │ ├── test_objects.pb.go │ │ │ └── test_objects.proto │ │ ├── proto │ │ ├── Makefile │ │ ├── all_test.go │ │ ├── any_test.go │ │ ├── clone.go │ │ ├── clone_test.go │ │ ├── decode.go │ │ ├── decode_test.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── equal.go │ │ ├── equal_test.go │ │ ├── extensions.go │ │ ├── extensions_test.go │ │ ├── lib.go │ │ ├── message_set.go │ │ ├── message_set_test.go │ │ ├── pointer_reflect.go │ │ ├── pointer_unsafe.go │ │ ├── properties.go │ │ ├── proto3_proto │ │ │ ├── proto3.pb.go │ │ │ └── proto3.proto │ │ ├── proto3_test.go │ │ ├── size2_test.go │ │ ├── size_test.go │ │ ├── testdata │ │ │ ├── Makefile │ │ │ ├── golden_test.go │ │ │ ├── test.pb.go │ │ │ └── test.proto │ │ ├── text.go │ │ ├── text_parser.go │ │ ├── text_parser_test.go │ │ └── text_test.go │ │ ├── protoc-gen-go │ │ ├── Makefile │ │ ├── descriptor │ │ │ ├── Makefile │ │ │ └── descriptor.pb.go │ │ ├── doc.go │ │ ├── generator │ │ │ ├── Makefile │ │ │ ├── generator.go │ │ │ └── name_test.go │ │ ├── grpc │ │ │ └── grpc.go │ │ ├── link_grpc.go │ │ ├── main.go │ │ ├── plugin │ │ │ ├── Makefile │ │ │ ├── plugin.pb.go │ │ │ └── plugin.pb.golden │ │ └── testdata │ │ │ ├── Makefile │ │ │ ├── extension_base.proto │ │ │ ├── extension_extra.proto │ │ │ ├── extension_test.go │ │ │ ├── extension_user.proto │ │ │ ├── grpc.proto │ │ │ ├── imp.pb.go.golden │ │ │ ├── imp.proto │ │ │ ├── imp2.proto │ │ │ ├── imp3.proto │ │ │ ├── main_test.go │ │ │ ├── multi │ │ │ ├── multi1.proto │ │ │ ├── multi2.proto │ │ │ └── multi3.proto │ │ │ ├── my_test │ │ │ ├── test.pb.go │ │ │ ├── test.pb.go.golden │ │ │ └── test.proto │ │ │ └── proto3.proto │ │ └── ptypes │ │ ├── any.go │ │ ├── any │ │ ├── any.pb.go │ │ └── any.proto │ │ ├── any_test.go │ │ ├── doc.go │ │ ├── duration.go │ │ ├── duration │ │ ├── duration.pb.go │ │ └── duration.proto │ │ ├── duration_test.go │ │ ├── empty │ │ ├── empty.pb.go │ │ └── empty.proto │ │ ├── regen.sh │ │ ├── struct │ │ ├── struct.pb.go │ │ └── struct.proto │ │ ├── timestamp.go │ │ ├── timestamp │ │ ├── timestamp.pb.go │ │ └── timestamp.proto │ │ ├── timestamp_test.go │ │ └── wrappers │ │ ├── wrappers.pb.go │ │ └── wrappers.proto ├── google │ └── gofuzz │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── example_test.go │ │ ├── fuzz.go │ │ └── fuzz_test.go ├── hawkular │ └── hawkular-client-go │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.adoc │ │ └── metrics │ │ ├── client.go │ │ ├── client_test.go │ │ ├── helpers.go │ │ └── types.go ├── juju │ └── ratelimit │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ratelimit.go │ │ ├── ratelimit_test.go │ │ └── reader.go ├── matttproud │ └── golang_protobuf_extensions │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile.TRAVIS │ │ ├── NOTICE │ │ ├── README.md │ │ ├── ext │ │ └── moved.go │ │ ├── pbtest │ │ └── deleted.go │ │ ├── pbutil │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── all_test.go │ │ ├── decode.go │ │ ├── decode_test.go │ │ ├── doc.go │ │ ├── encode.go │ │ └── encode_test.go │ │ └── testdata │ │ ├── README.THIRD_PARTY │ │ ├── test.pb.go │ │ └── test.proto ├── pborman │ └── uuid │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── hash.go │ │ ├── json.go │ │ ├── json_test.go │ │ ├── node.go │ │ ├── seq_test.go │ │ ├── sql.go │ │ ├── sql_test.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── uuid_test.go │ │ ├── version1.go │ │ └── version4.go ├── prometheus │ ├── client_golang │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS.md │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── VERSION │ │ ├── api │ │ │ └── prometheus │ │ │ │ ├── api.go │ │ │ │ └── api_test.go │ │ ├── examples │ │ │ ├── random │ │ │ │ └── main.go │ │ │ └── simple │ │ │ │ └── main.go │ │ └── prometheus │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── benchmark_test.go │ │ │ ├── collector.go │ │ │ ├── counter.go │ │ │ ├── counter_test.go │ │ │ ├── desc.go │ │ │ ├── doc.go │ │ │ ├── example_clustermanager_test.go │ │ │ ├── example_timer_complex_test.go │ │ │ ├── example_timer_gauge_test.go │ │ │ ├── example_timer_test.go │ │ │ ├── examples_test.go │ │ │ ├── expvar_collector.go │ │ │ ├── expvar_collector_test.go │ │ │ ├── fnv.go │ │ │ ├── gauge.go │ │ │ ├── gauge_test.go │ │ │ ├── go_collector.go │ │ │ ├── go_collector_test.go │ │ │ ├── graphite │ │ │ ├── bridge.go │ │ │ └── bridge_test.go │ │ │ ├── histogram.go │ │ │ ├── histogram_test.go │ │ │ ├── http.go │ │ │ ├── http_test.go │ │ │ ├── metric.go │ │ │ ├── metric_test.go │ │ │ ├── process_collector.go │ │ │ ├── process_collector_test.go │ │ │ ├── promhttp │ │ │ ├── http.go │ │ │ └── http_test.go │ │ │ ├── push │ │ │ ├── example_add_from_gatherer_test.go │ │ │ ├── examples_test.go │ │ │ ├── push.go │ │ │ └── push_test.go │ │ │ ├── registry.go │ │ │ ├── registry_test.go │ │ │ ├── summary.go │ │ │ ├── summary_test.go │ │ │ ├── timer.go │ │ │ ├── timer_test.go │ │ │ ├── untyped.go │ │ │ ├── value.go │ │ │ ├── vec.go │ │ │ └── vec_test.go │ ├── client_model │ │ ├── .gitignore │ │ ├── AUTHORS.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── README.md │ │ ├── cpp │ │ │ ├── metrics.pb.cc │ │ │ └── metrics.pb.h │ │ ├── go │ │ │ └── metrics.pb.go │ │ ├── metrics.proto │ │ ├── pom.xml │ │ ├── python │ │ │ └── prometheus │ │ │ │ ├── __init__.py │ │ │ │ └── client │ │ │ │ ├── __init__.py │ │ │ │ └── model │ │ │ │ ├── __init__.py │ │ │ │ └── metrics_pb2.py │ │ ├── ruby │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── lib │ │ │ │ └── prometheus │ │ │ │ │ └── client │ │ │ │ │ ├── model.rb │ │ │ │ │ └── model │ │ │ │ │ ├── metrics.pb.rb │ │ │ │ │ └── version.rb │ │ │ └── prometheus-client-model.gemspec │ │ ├── setup.py │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── io │ │ │ └── prometheus │ │ │ └── client │ │ │ └── Metrics.java │ ├── common │ │ ├── .travis.yml │ │ ├── AUTHORS.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── config │ │ │ ├── config.go │ │ │ ├── testdata │ │ │ │ ├── tls_config.cert_no_key.bad.yml │ │ │ │ ├── tls_config.empty.good.yml │ │ │ │ ├── tls_config.insecure.good.yml │ │ │ │ ├── tls_config.invalid_field.bad.yml │ │ │ │ └── tls_config.key_no_cert.bad.yml │ │ │ ├── tls_config.go │ │ │ └── tls_config_test.go │ │ ├── expfmt │ │ │ ├── bench_test.go │ │ │ ├── decode.go │ │ │ ├── decode_test.go │ │ │ ├── encode.go │ │ │ ├── expfmt.go │ │ │ ├── fuzz.go │ │ │ ├── fuzz │ │ │ │ └── corpus │ │ │ │ │ ├── from_test_parse_0 │ │ │ │ │ ├── from_test_parse_1 │ │ │ │ │ ├── from_test_parse_2 │ │ │ │ │ ├── from_test_parse_3 │ │ │ │ │ ├── from_test_parse_4 │ │ │ │ │ ├── from_test_parse_error_0 │ │ │ │ │ ├── from_test_parse_error_1 │ │ │ │ │ ├── from_test_parse_error_10 │ │ │ │ │ ├── from_test_parse_error_11 │ │ │ │ │ ├── from_test_parse_error_12 │ │ │ │ │ ├── from_test_parse_error_13 │ │ │ │ │ ├── from_test_parse_error_14 │ │ │ │ │ ├── from_test_parse_error_15 │ │ │ │ │ ├── from_test_parse_error_16 │ │ │ │ │ ├── from_test_parse_error_17 │ │ │ │ │ ├── from_test_parse_error_18 │ │ │ │ │ ├── from_test_parse_error_19 │ │ │ │ │ ├── from_test_parse_error_2 │ │ │ │ │ ├── from_test_parse_error_3 │ │ │ │ │ ├── from_test_parse_error_4 │ │ │ │ │ ├── from_test_parse_error_5 │ │ │ │ │ ├── from_test_parse_error_6 │ │ │ │ │ ├── from_test_parse_error_7 │ │ │ │ │ ├── from_test_parse_error_8 │ │ │ │ │ ├── from_test_parse_error_9 │ │ │ │ │ └── minimal │ │ │ ├── testdata │ │ │ │ ├── json2 │ │ │ │ ├── json2_bad │ │ │ │ ├── protobuf │ │ │ │ ├── protobuf.gz │ │ │ │ ├── text │ │ │ │ └── text.gz │ │ │ ├── text_create.go │ │ │ ├── text_create_test.go │ │ │ ├── text_parse.go │ │ │ └── text_parse_test.go │ │ ├── internal │ │ │ └── bitbucket.org │ │ │ │ └── ww │ │ │ │ └── goautoneg │ │ │ │ ├── README.txt │ │ │ │ ├── autoneg.go │ │ │ │ └── autoneg_test.go │ │ ├── log │ │ │ ├── eventlog_formatter.go │ │ │ ├── log.go │ │ │ ├── log_test.go │ │ │ └── syslog_formatter.go │ │ ├── model │ │ │ ├── alert.go │ │ │ ├── alert_test.go │ │ │ ├── fingerprinting.go │ │ │ ├── fnv.go │ │ │ ├── labels.go │ │ │ ├── labels_test.go │ │ │ ├── labelset.go │ │ │ ├── metric.go │ │ │ ├── metric_test.go │ │ │ ├── model.go │ │ │ ├── signature.go │ │ │ ├── signature_test.go │ │ │ ├── silence.go │ │ │ ├── silence_test.go │ │ │ ├── time.go │ │ │ ├── time_test.go │ │ │ ├── value.go │ │ │ └── value_test.go │ │ ├── route │ │ │ ├── route.go │ │ │ └── route_test.go │ │ └── version │ │ │ └── info.go │ └── procfs │ │ ├── .travis.yml │ │ ├── AUTHORS.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── README.md │ │ ├── doc.go │ │ ├── fixtures │ │ ├── 584 │ │ │ └── stat │ │ ├── 26231 │ │ │ ├── cmdline │ │ │ ├── comm │ │ │ ├── exe │ │ │ ├── fd │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ └── 10 │ │ │ ├── io │ │ │ ├── limits │ │ │ ├── mountstats │ │ │ └── stat │ │ ├── 26232 │ │ │ ├── cmdline │ │ │ ├── comm │ │ │ ├── fd │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ └── 4 │ │ │ ├── limits │ │ │ └── stat │ │ ├── mdstat │ │ ├── net │ │ │ ├── ip_vs │ │ │ └── ip_vs_stats │ │ ├── self │ │ ├── stat │ │ └── symlinktargets │ │ │ ├── README │ │ │ ├── abc │ │ │ ├── def │ │ │ ├── ghi │ │ │ ├── uvw │ │ │ └── xyz │ │ ├── fs.go │ │ ├── fs_test.go │ │ ├── ipvs.go │ │ ├── ipvs_test.go │ │ ├── mdstat.go │ │ ├── mdstat_test.go │ │ ├── mountstats.go │ │ ├── mountstats_test.go │ │ ├── proc.go │ │ ├── proc_io.go │ │ ├── proc_io_test.go │ │ ├── proc_limits.go │ │ ├── proc_limits_test.go │ │ ├── proc_stat.go │ │ ├── proc_stat_test.go │ │ ├── proc_test.go │ │ ├── stat.go │ │ └── stat_test.go ├── spf13 │ └── pflag │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bool.go │ │ ├── bool_test.go │ │ ├── duration.go │ │ ├── example_test.go │ │ ├── export_test.go │ │ ├── flag.go │ │ ├── flag_test.go │ │ ├── float32.go │ │ ├── float64.go │ │ ├── int.go │ │ ├── int32.go │ │ ├── int64.go │ │ ├── int8.go │ │ ├── ip.go │ │ ├── ipmask.go │ │ ├── string.go │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ └── uint8.go └── ugorji │ └── go │ ├── LICENSE │ ├── README.md │ ├── codec │ ├── 0doc.go │ ├── README.md │ ├── binc.go │ ├── cbor.go │ ├── cbor_test.go │ ├── codec_test.go │ ├── codecgen │ │ ├── README.md │ │ ├── gen.go │ │ └── z.go │ ├── codecgen_test.go │ ├── decode.go │ ├── decode_go.go │ ├── decode_go14.go │ ├── encode.go │ ├── fast-path.generated.go │ ├── fast-path.go.tmpl │ ├── fast-path.not.go │ ├── gen-dec-array.go.tmpl │ ├── gen-dec-map.go.tmpl │ ├── gen-helper.generated.go │ ├── gen-helper.go.tmpl │ ├── gen.generated.go │ ├── gen.go │ ├── gen_15.go │ ├── gen_16.go │ ├── gen_17.go │ ├── helper.go │ ├── helper_internal.go │ ├── helper_not_unsafe.go │ ├── helper_test.go │ ├── helper_unsafe.go │ ├── json.go │ ├── msgpack.go │ ├── noop.go │ ├── prebuild.go │ ├── prebuild.sh │ ├── py_test.go │ ├── rpc.go │ ├── simple.go │ ├── test-cbor-goldens.json │ ├── test.py │ ├── tests.sh │ ├── time.go │ └── values_test.go │ └── msgpack.org.md ├── golang.org └── x │ └── net │ ├── .gitattributes │ ├── .gitignore │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── README │ ├── codereview.cfg │ ├── context │ ├── context.go │ ├── context_test.go │ ├── ctxhttp │ │ ├── cancelreq.go │ │ ├── cancelreq_go14.go │ │ ├── ctxhttp.go │ │ └── ctxhttp_test.go │ └── withtimeout_test.go │ ├── dict │ └── dict.go │ ├── html │ ├── atom │ │ ├── atom.go │ │ ├── atom_test.go │ │ ├── gen.go │ │ ├── table.go │ │ └── table_test.go │ ├── charset │ │ ├── charset.go │ │ ├── charset_test.go │ │ └── testdata │ │ │ ├── HTTP-charset.html │ │ │ ├── HTTP-vs-UTF-8-BOM.html │ │ │ ├── HTTP-vs-meta-charset.html │ │ │ ├── HTTP-vs-meta-content.html │ │ │ ├── No-encoding-declaration.html │ │ │ ├── README │ │ │ ├── UTF-16BE-BOM.html │ │ │ ├── UTF-16LE-BOM.html │ │ │ ├── UTF-8-BOM-vs-meta-charset.html │ │ │ ├── UTF-8-BOM-vs-meta-content.html │ │ │ ├── meta-charset-attribute.html │ │ │ └── meta-content-attribute.html │ ├── const.go │ ├── doc.go │ ├── doctype.go │ ├── entity.go │ ├── entity_test.go │ ├── escape.go │ ├── escape_test.go │ ├── example_test.go │ ├── foreign.go │ ├── node.go │ ├── node_test.go │ ├── parse.go │ ├── parse_test.go │ ├── render.go │ ├── render_test.go │ ├── testdata │ │ ├── go1.html │ │ └── webkit │ │ │ ├── README │ │ │ ├── adoption01.dat │ │ │ ├── adoption02.dat │ │ │ ├── comments01.dat │ │ │ ├── doctype01.dat │ │ │ ├── entities01.dat │ │ │ ├── entities02.dat │ │ │ ├── html5test-com.dat │ │ │ ├── inbody01.dat │ │ │ ├── isindex.dat │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ ├── pending-spec-changes.dat │ │ │ ├── plain-text-unsafe.dat │ │ │ ├── scriptdata01.dat │ │ │ ├── scripted │ │ │ ├── adoption01.dat │ │ │ └── webkit01.dat │ │ │ ├── tables01.dat │ │ │ ├── tests1.dat │ │ │ ├── tests10.dat │ │ │ ├── tests11.dat │ │ │ ├── tests12.dat │ │ │ ├── tests14.dat │ │ │ ├── tests15.dat │ │ │ ├── tests16.dat │ │ │ ├── tests17.dat │ │ │ ├── tests18.dat │ │ │ ├── tests19.dat │ │ │ ├── tests2.dat │ │ │ ├── tests20.dat │ │ │ ├── tests21.dat │ │ │ ├── tests22.dat │ │ │ ├── tests23.dat │ │ │ ├── tests24.dat │ │ │ ├── tests25.dat │ │ │ ├── tests26.dat │ │ │ ├── tests3.dat │ │ │ ├── tests4.dat │ │ │ ├── tests5.dat │ │ │ ├── tests6.dat │ │ │ ├── tests7.dat │ │ │ ├── tests8.dat │ │ │ ├── tests9.dat │ │ │ ├── tests_innerHTML_1.dat │ │ │ ├── tricky01.dat │ │ │ ├── webkit01.dat │ │ │ └── webkit02.dat │ ├── token.go │ └── token_test.go │ ├── http2 │ ├── .gitignore │ ├── Dockerfile │ ├── Makefile │ ├── README │ ├── client_conn_pool.go │ ├── configure_transport.go │ ├── errors.go │ ├── errors_test.go │ ├── fixed_buffer.go │ ├── fixed_buffer_test.go │ ├── flow.go │ ├── flow_test.go │ ├── frame.go │ ├── frame_test.go │ ├── go15.go │ ├── gotrack.go │ ├── gotrack_test.go │ ├── h2demo │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── h2demo.go │ │ ├── launch.go │ │ ├── rootCA.key │ │ ├── rootCA.pem │ │ ├── rootCA.srl │ │ ├── server.crt │ │ └── server.key │ ├── h2i │ │ ├── README.md │ │ └── h2i.go │ ├── headermap.go │ ├── hpack │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── hpack.go │ │ ├── hpack_test.go │ │ ├── huffman.go │ │ └── tables.go │ ├── http2.go │ ├── http2_test.go │ ├── not_go15.go │ ├── not_go16.go │ ├── pipe.go │ ├── pipe_test.go │ ├── priority_test.go │ ├── server.go │ ├── server_test.go │ ├── testdata │ │ └── draft-ietf-httpbis-http2.xml │ ├── transport.go │ ├── transport_test.go │ ├── write.go │ ├── writesched.go │ └── z_spec_test.go │ ├── icmp │ ├── dstunreach.go │ ├── echo.go │ ├── endpoint.go │ ├── example_test.go │ ├── extension.go │ ├── extension_test.go │ ├── helper.go │ ├── helper_posix.go │ ├── interface.go │ ├── ipv4.go │ ├── ipv4_test.go │ ├── ipv6.go │ ├── listen_posix.go │ ├── listen_stub.go │ ├── message.go │ ├── message_test.go │ ├── messagebody.go │ ├── mpls.go │ ├── multipart.go │ ├── multipart_test.go │ ├── packettoobig.go │ ├── paramprob.go │ ├── ping_test.go │ ├── sys_freebsd.go │ └── timeexceeded.go │ ├── idna │ ├── idna.go │ ├── idna_test.go │ ├── punycode.go │ └── punycode_test.go │ ├── internal │ ├── iana │ │ ├── const.go │ │ └── gen.go │ ├── nettest │ │ ├── error_posix.go │ │ ├── error_stub.go │ │ ├── interface.go │ │ ├── rlimit.go │ │ ├── rlimit_stub.go │ │ ├── rlimit_unix.go │ │ ├── rlimit_windows.go │ │ ├── stack.go │ │ ├── stack_stub.go │ │ ├── stack_unix.go │ │ └── stack_windows.go │ └── timeseries │ │ ├── timeseries.go │ │ └── timeseries_test.go │ ├── ipv4 │ ├── control.go │ ├── control_bsd.go │ ├── control_pktinfo.go │ ├── control_stub.go │ ├── control_unix.go │ ├── control_windows.go │ ├── defs_darwin.go │ ├── defs_dragonfly.go │ ├── defs_freebsd.go │ ├── defs_linux.go │ ├── defs_netbsd.go │ ├── defs_openbsd.go │ ├── defs_solaris.go │ ├── dgramopt_posix.go │ ├── dgramopt_stub.go │ ├── doc.go │ ├── endpoint.go │ ├── example_test.go │ ├── gen.go │ ├── genericopt_posix.go │ ├── genericopt_stub.go │ ├── header.go │ ├── header_test.go │ ├── helper.go │ ├── helper_stub.go │ ├── helper_unix.go │ ├── helper_windows.go │ ├── iana.go │ ├── icmp.go │ ├── icmp_linux.go │ ├── icmp_stub.go │ ├── icmp_test.go │ ├── mocktransponder_test.go │ ├── multicast_test.go │ ├── multicastlistener_test.go │ ├── multicastsockopt_test.go │ ├── packet.go │ ├── payload.go │ ├── payload_cmsg.go │ ├── payload_nocmsg.go │ ├── readwrite_test.go │ ├── sockopt.go │ ├── sockopt_asmreq.go │ ├── sockopt_asmreq_stub.go │ ├── sockopt_asmreq_unix.go │ ├── sockopt_asmreq_windows.go │ ├── sockopt_asmreqn_stub.go │ ├── sockopt_asmreqn_unix.go │ ├── sockopt_ssmreq_stub.go │ ├── sockopt_ssmreq_unix.go │ ├── sockopt_stub.go │ ├── sockopt_unix.go │ ├── sockopt_windows.go │ ├── sys_bsd.go │ ├── sys_darwin.go │ ├── sys_freebsd.go │ ├── sys_linux.go │ ├── sys_openbsd.go │ ├── sys_stub.go │ ├── sys_windows.go │ ├── syscall_linux_386.go │ ├── syscall_unix.go │ ├── thunk_linux_386.s │ ├── unicast_test.go │ ├── unicastsockopt_test.go │ ├── zsys_darwin.go │ ├── zsys_dragonfly.go │ ├── zsys_freebsd_386.go │ ├── zsys_freebsd_amd64.go │ ├── zsys_freebsd_arm.go │ ├── zsys_linux_386.go │ ├── zsys_linux_amd64.go │ ├── zsys_linux_arm.go │ ├── zsys_linux_arm64.go │ ├── zsys_linux_mips64.go │ ├── zsys_linux_mips64le.go │ ├── zsys_linux_ppc64.go │ ├── zsys_linux_ppc64le.go │ ├── zsys_netbsd.go │ ├── zsys_openbsd.go │ └── zsys_solaris.go │ ├── ipv6 │ ├── control.go │ ├── control_rfc2292_unix.go │ ├── control_rfc3542_unix.go │ ├── control_stub.go │ ├── control_unix.go │ ├── control_windows.go │ ├── defs_darwin.go │ ├── defs_dragonfly.go │ ├── defs_freebsd.go │ ├── defs_linux.go │ ├── defs_netbsd.go │ ├── defs_openbsd.go │ ├── defs_solaris.go │ ├── dgramopt_posix.go │ ├── dgramopt_stub.go │ ├── doc.go │ ├── endpoint.go │ ├── example_test.go │ ├── gen.go │ ├── genericopt_posix.go │ ├── genericopt_stub.go │ ├── header.go │ ├── header_test.go │ ├── helper.go │ ├── helper_stub.go │ ├── helper_unix.go │ ├── helper_windows.go │ ├── iana.go │ ├── icmp.go │ ├── icmp_bsd.go │ ├── icmp_linux.go │ ├── icmp_solaris.go │ ├── icmp_stub.go │ ├── icmp_test.go │ ├── icmp_windows.go │ ├── mocktransponder_test.go │ ├── multicast_test.go │ ├── multicastlistener_test.go │ ├── multicastsockopt_test.go │ ├── payload.go │ ├── payload_cmsg.go │ ├── payload_nocmsg.go │ ├── readwrite_test.go │ ├── sockopt.go │ ├── sockopt_asmreq_unix.go │ ├── sockopt_asmreq_windows.go │ ├── sockopt_ssmreq_stub.go │ ├── sockopt_ssmreq_unix.go │ ├── sockopt_stub.go │ ├── sockopt_test.go │ ├── sockopt_unix.go │ ├── sockopt_windows.go │ ├── sys_bsd.go │ ├── sys_darwin.go │ ├── sys_freebsd.go │ ├── sys_linux.go │ ├── sys_stub.go │ ├── sys_windows.go │ ├── syscall_linux_386.go │ ├── syscall_unix.go │ ├── thunk_linux_386.s │ ├── unicast_test.go │ ├── unicastsockopt_test.go │ ├── zsys_darwin.go │ ├── zsys_dragonfly.go │ ├── zsys_freebsd_386.go │ ├── zsys_freebsd_amd64.go │ ├── zsys_freebsd_arm.go │ ├── zsys_linux_386.go │ ├── zsys_linux_amd64.go │ ├── zsys_linux_arm.go │ ├── zsys_linux_arm64.go │ ├── zsys_linux_mips64.go │ ├── zsys_linux_mips64le.go │ ├── zsys_linux_ppc64.go │ ├── zsys_linux_ppc64le.go │ ├── zsys_netbsd.go │ ├── zsys_openbsd.go │ └── zsys_solaris.go │ ├── netutil │ ├── listen.go │ └── listen_test.go │ ├── proxy │ ├── direct.go │ ├── per_host.go │ ├── per_host_test.go │ ├── proxy.go │ ├── proxy_test.go │ └── socks5.go │ ├── publicsuffix │ ├── gen.go │ ├── list.go │ ├── list_test.go │ ├── table.go │ └── table_test.go │ ├── trace │ ├── events.go │ ├── histogram.go │ ├── histogram_test.go │ ├── trace.go │ └── trace_test.go │ ├── webdav │ ├── file.go │ ├── file_test.go │ ├── if.go │ ├── if_test.go │ ├── internal │ │ └── xml │ │ │ ├── README │ │ │ ├── atom_test.go │ │ │ ├── example_test.go │ │ │ ├── marshal.go │ │ │ ├── marshal_test.go │ │ │ ├── read.go │ │ │ ├── read_test.go │ │ │ ├── typeinfo.go │ │ │ ├── xml.go │ │ │ └── xml_test.go │ ├── litmus_test_server.go │ ├── lock.go │ ├── lock_test.go │ ├── prop.go │ ├── prop_test.go │ ├── webdav.go │ ├── webdav_test.go │ ├── xml.go │ └── xml_test.go │ ├── websocket │ ├── client.go │ ├── exampledial_test.go │ ├── examplehandler_test.go │ ├── hybi.go │ ├── hybi_test.go │ ├── server.go │ ├── websocket.go │ └── websocket_test.go │ └── xsrftoken │ ├── xsrf.go │ └── xsrf_test.go ├── gopkg.in ├── inf.v0 │ ├── LICENSE │ ├── benchmark_test.go │ ├── dec.go │ ├── dec_go1_2_test.go │ ├── dec_internal_test.go │ ├── dec_test.go │ ├── example_test.go │ ├── rounder.go │ ├── rounder_example_test.go │ └── rounder_test.go └── yaml.v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── decode_test.go │ ├── emitterc.go │ ├── encode.go │ ├── encode_test.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── suite_test.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go └── k8s.io └── client-go ├── 1.4 ├── Godeps │ ├── Godeps.json │ └── Readme ├── LICENSE ├── discovery │ ├── client_test.go │ ├── discovery_client.go │ ├── fake │ │ └── discovery.go │ ├── restmapper.go │ ├── restmapper_test.go │ └── unstructured.go ├── dynamic │ ├── client.go │ ├── client_pool.go │ ├── client_test.go │ ├── dynamic_util.go │ └── dynamic_util_test.go ├── kubernetes │ ├── clientset.go │ ├── doc.go │ ├── fake │ │ ├── clientset_generated.go │ │ └── doc.go │ ├── import_known_versions.go │ └── typed │ │ ├── authorization │ │ └── v1beta1 │ │ │ ├── authorization_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_authorization_client.go │ │ │ ├── fake_subjectaccessreview.go │ │ │ └── fake_subjectaccessreview_expansion.go │ │ │ ├── generated_expansion.go │ │ │ ├── subjectaccessreview.go │ │ │ └── subjectaccessreview_expansion.go │ │ ├── autoscaling │ │ └── v1 │ │ │ ├── autoscaling_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_autoscaling_client.go │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ ├── generated_expansion.go │ │ │ └── horizontalpodautoscaler.go │ │ ├── batch │ │ └── v1 │ │ │ ├── batch_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_batch_client.go │ │ │ └── fake_job.go │ │ │ ├── generated_expansion.go │ │ │ └── job.go │ │ ├── core │ │ └── v1 │ │ │ ├── componentstatus.go │ │ │ ├── configmap.go │ │ │ ├── core_client.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── event.go │ │ │ ├── event_expansion.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_componentstatus.go │ │ │ ├── fake_configmap.go │ │ │ ├── fake_core_client.go │ │ │ ├── fake_endpoints.go │ │ │ ├── fake_event.go │ │ │ ├── fake_event_expansion.go │ │ │ ├── fake_limitrange.go │ │ │ ├── fake_namespace.go │ │ │ ├── fake_namespace_expansion.go │ │ │ ├── fake_node.go │ │ │ ├── fake_persistentvolume.go │ │ │ ├── fake_persistentvolumeclaim.go │ │ │ ├── fake_pod.go │ │ │ ├── fake_pod_expansion.go │ │ │ ├── fake_podtemplate.go │ │ │ ├── fake_replicationcontroller.go │ │ │ ├── fake_resourcequota.go │ │ │ ├── fake_secret.go │ │ │ ├── fake_service.go │ │ │ ├── fake_service_expansion.go │ │ │ └── fake_serviceaccount.go │ │ │ ├── generated_expansion.go │ │ │ ├── limitrange.go │ │ │ ├── namespace.go │ │ │ ├── namespace_expansion.go │ │ │ ├── node.go │ │ │ ├── persistentvolume.go │ │ │ ├── persistentvolumeclaim.go │ │ │ ├── pod.go │ │ │ ├── pod_expansion.go │ │ │ ├── podtemplate.go │ │ │ ├── replicationcontroller.go │ │ │ ├── resourcequota.go │ │ │ ├── secret.go │ │ │ ├── service.go │ │ │ ├── service_expansion.go │ │ │ └── serviceaccount.go │ │ ├── extensions │ │ └── v1beta1 │ │ │ ├── daemonset.go │ │ │ ├── deployment.go │ │ │ ├── deployment_expansion.go │ │ │ ├── doc.go │ │ │ ├── extensions_client.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_daemonset.go │ │ │ ├── fake_deployment.go │ │ │ ├── fake_deployment_expansion.go │ │ │ ├── fake_extensions_client.go │ │ │ ├── fake_ingress.go │ │ │ ├── fake_job.go │ │ │ ├── fake_podsecuritypolicy.go │ │ │ ├── fake_replicaset.go │ │ │ ├── fake_scale.go │ │ │ ├── fake_scale_expansion.go │ │ │ ├── fake_storageclass.go │ │ │ └── fake_thirdpartyresource.go │ │ │ ├── generated_expansion.go │ │ │ ├── ingress.go │ │ │ ├── job.go │ │ │ ├── podsecuritypolicy.go │ │ │ ├── replicaset.go │ │ │ ├── scale.go │ │ │ ├── scale_expansion.go │ │ │ ├── storageclass.go │ │ │ └── thirdpartyresource.go │ │ └── policy │ │ └── v1alpha1 │ │ ├── doc.go │ │ ├── fake │ │ ├── doc.go │ │ ├── fake_poddisruptionbudget.go │ │ └── fake_policy_client.go │ │ ├── generated_expansion.go │ │ ├── poddisruptionbudget.go │ │ └── policy_client.go ├── pkg │ ├── api │ │ ├── OWNERS │ │ ├── context.go │ │ ├── conversion.go │ │ ├── defaults.go │ │ ├── doc.go │ │ ├── endpoints │ │ │ └── util.go │ │ ├── errors │ │ │ ├── doc.go │ │ │ └── errors.go │ │ ├── field_constants.go │ │ ├── generate.go │ │ ├── helpers.go │ │ ├── install │ │ │ └── install.go │ │ ├── mapper.go │ │ ├── meta.go │ │ ├── meta │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── help.go │ │ │ ├── interfaces.go │ │ │ ├── meta.go │ │ │ ├── metatypes │ │ │ │ └── types.go │ │ │ ├── multirestmapper.go │ │ │ ├── priority.go │ │ │ ├── restmapper.go │ │ │ └── unstructured.go │ │ ├── node_example.json │ │ ├── pod │ │ │ └── util.go │ │ ├── ref.go │ │ ├── register.go │ │ ├── replication_controller_example.json │ │ ├── requestcontext.go │ │ ├── resource │ │ │ ├── amount.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── math.go │ │ │ ├── quantity.go │ │ │ ├── quantity_proto.go │ │ │ ├── scale_int.go │ │ │ └── suffix.go │ │ ├── resource_helpers.go │ │ ├── service │ │ │ ├── annotations.go │ │ │ └── util.go │ │ ├── testapi │ │ │ └── testapi.go │ │ ├── types.generated.go │ │ ├── types.go │ │ ├── unversioned │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── group_version.go │ │ │ ├── helpers.go │ │ │ ├── meta.go │ │ │ ├── register.go │ │ │ ├── time.go │ │ │ ├── time_proto.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── validation │ │ │ │ └── validation.go │ │ │ ├── well_known_labels.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── util │ │ │ └── group_version.go │ │ ├── v1 │ │ │ ├── conversion.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── meta.go │ │ │ ├── ref.go │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.conversion.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── validation │ │ │ ├── doc.go │ │ │ ├── events.go │ │ │ ├── name.go │ │ │ ├── schema.go │ │ │ └── validation.go │ │ └── zz_generated.deepcopy.go │ ├── apimachinery │ │ ├── doc.go │ │ ├── registered │ │ │ └── registered.go │ │ └── types.go │ ├── apis │ │ ├── apps │ │ │ ├── doc.go │ │ │ ├── install │ │ │ │ └── install.go │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── v1alpha1 │ │ │ │ ├── conversion.go │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── authentication │ │ │ ├── doc.go │ │ │ ├── install │ │ │ │ └── install.go │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── v1beta1 │ │ │ │ ├── conversion.go │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── authorization │ │ │ ├── doc.go │ │ │ ├── install │ │ │ │ └── install.go │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── v1beta1 │ │ │ │ ├── conversion.go │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── autoscaling │ │ │ ├── doc.go │ │ │ ├── install │ │ │ │ └── install.go │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── v1 │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── batch │ │ │ ├── doc.go │ │ │ ├── install │ │ │ │ └── install.go │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── v1 │ │ │ │ ├── conversion.go │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v2alpha1 │ │ │ │ ├── conversion.go │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── certificates │ │ │ ├── doc.go │ │ │ ├── install │ │ │ │ └── install.go │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── v1alpha1 │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── componentconfig │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ ├── install │ │ │ │ └── install.go │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── v1alpha1 │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── extensions │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ ├── install │ │ │ │ └── install.go │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── v1beta1 │ │ │ │ ├── conversion.go │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── imagepolicy │ │ │ ├── doc.go │ │ │ ├── install │ │ │ │ └── install.go │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── policy │ │ │ ├── doc.go │ │ │ ├── install │ │ │ │ └── install.go │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── zz_generated.deepcopy.go │ │ └── rbac │ │ │ ├── doc.go │ │ │ ├── install │ │ │ └── install.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.conversion.go │ │ │ └── zz_generated.deepcopy.go │ │ │ └── zz_generated.deepcopy.go │ ├── auth │ │ └── user │ │ │ ├── doc.go │ │ │ └── user.go │ ├── capabilities │ │ ├── capabilities.go │ │ └── doc.go │ ├── conversion │ │ ├── OWNERS │ │ ├── cloner.go │ │ ├── converter.go │ │ ├── deep_equal.go │ │ ├── doc.go │ │ ├── helper.go │ │ └── queryparams │ │ │ ├── convert.go │ │ │ └── doc.go │ ├── federation │ │ └── apis │ │ │ └── federation │ │ │ ├── doc.go │ │ │ ├── install │ │ │ └── install.go │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── v1beta1 │ │ │ ├── conversion.go │ │ │ ├── defaults.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.conversion.go │ │ │ └── zz_generated.deepcopy.go │ │ │ └── zz_generated.deepcopy.go │ ├── fields │ │ ├── doc.go │ │ ├── fields.go │ │ ├── requirements.go │ │ └── selector.go │ ├── kubelet │ │ ├── qos │ │ │ ├── doc.go │ │ │ ├── policy.go │ │ │ ├── qos.go │ │ │ └── types.go │ │ ├── server │ │ │ └── portforward │ │ │ │ └── constants.go │ │ └── types │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── labels.go │ │ │ ├── pod_update.go │ │ │ └── types.go │ ├── labels │ │ ├── doc.go │ │ ├── labels.go │ │ └── selector.go │ ├── master │ │ └── ports │ │ │ ├── doc.go │ │ │ └── ports.go │ ├── runtime │ │ ├── OWNERS │ │ ├── codec.go │ │ ├── codec_check.go │ │ ├── conversion.go │ │ ├── doc.go │ │ ├── embedded.go │ │ ├── error.go │ │ ├── extension.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── helper.go │ │ ├── interfaces.go │ │ ├── register.go │ │ ├── scheme.go │ │ ├── scheme_builder.go │ │ ├── serializer │ │ │ ├── codec_factory.go │ │ │ ├── json │ │ │ │ ├── json.go │ │ │ │ └── meta.go │ │ │ ├── negotiated_codec.go │ │ │ ├── protobuf │ │ │ │ ├── doc.go │ │ │ │ └── protobuf.go │ │ │ ├── protobuf_extension.go │ │ │ ├── recognizer │ │ │ │ └── recognizer.go │ │ │ ├── streaming │ │ │ │ └── streaming.go │ │ │ └── versioning │ │ │ │ └── versioning.go │ │ ├── swagger_doc_generator.go │ │ ├── types.go │ │ ├── types_proto.go │ │ ├── unstructured.go │ │ └── zz_generated.deepcopy.go │ ├── security │ │ └── apparmor │ │ │ ├── helpers.go │ │ │ ├── validate.go │ │ │ └── validate_disabled.go │ ├── selection │ │ └── operator.go │ ├── third_party │ │ └── forked │ │ │ └── golang │ │ │ ├── json │ │ │ └── fields.go │ │ │ └── reflect │ │ │ ├── deep_equal.go │ │ │ └── type.go │ ├── types │ │ ├── doc.go │ │ ├── namespacedname.go │ │ ├── uid.go │ │ └── unix_user_id.go │ ├── util │ │ ├── clock │ │ │ └── clock.go │ │ ├── config │ │ │ ├── config.go │ │ │ ├── configuration_map.go │ │ │ ├── doc.go │ │ │ └── feature_gate.go │ │ ├── crypto │ │ │ └── crypto.go │ │ ├── diff │ │ │ └── diff.go │ │ ├── doc.go │ │ ├── errors │ │ │ ├── doc.go │ │ │ └── errors.go │ │ ├── flowcontrol │ │ │ ├── backoff.go │ │ │ └── throttle.go │ │ ├── framer │ │ │ └── framer.go │ │ ├── hash │ │ │ └── hash.go │ │ ├── homedir │ │ │ └── homedir.go │ │ ├── httpstream │ │ │ ├── doc.go │ │ │ └── httpstream.go │ │ ├── integer │ │ │ └── integer.go │ │ ├── intstr │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ └── intstr.go │ │ ├── json │ │ │ └── json.go │ │ ├── labels │ │ │ ├── doc.go │ │ │ └── labels.go │ │ ├── net │ │ │ ├── http.go │ │ │ ├── interface.go │ │ │ ├── port_range.go │ │ │ ├── port_split.go │ │ │ ├── sets │ │ │ │ ├── doc.go │ │ │ │ └── ipnet.go │ │ │ └── util.go │ │ ├── parsers │ │ │ └── parsers.go │ │ ├── rand │ │ │ └── rand.go │ │ ├── runtime │ │ │ └── runtime.go │ │ ├── sets │ │ │ ├── byte.go │ │ │ ├── doc.go │ │ │ ├── empty.go │ │ │ ├── int.go │ │ │ ├── int64.go │ │ │ └── string.go │ │ ├── strategicpatch │ │ │ └── patch.go │ │ ├── string_flag.go │ │ ├── template.go │ │ ├── testing │ │ │ ├── fake_handler.go │ │ │ └── tmpdir.go │ │ ├── trace.go │ │ ├── umask.go │ │ ├── umask_windows.go │ │ ├── util.go │ │ ├── uuid │ │ │ └── uuid.go │ │ ├── validation │ │ │ ├── field │ │ │ │ ├── errors.go │ │ │ │ └── path.go │ │ │ └── validation.go │ │ ├── wait │ │ │ ├── doc.go │ │ │ └── wait.go │ │ └── yaml │ │ │ └── decoder.go │ ├── version │ │ ├── .gitattributes │ │ ├── base.go │ │ ├── doc.go │ │ ├── semver.go │ │ └── version.go │ └── watch │ │ ├── doc.go │ │ ├── filter.go │ │ ├── mux.go │ │ ├── streamwatcher.go │ │ ├── until.go │ │ ├── versioned │ │ ├── decoder.go │ │ ├── encoder.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ └── types.go │ │ └── watch.go ├── rest │ ├── client.go │ ├── client_test.go │ ├── config.go │ ├── config_test.go │ ├── plugin.go │ ├── plugin_test.go │ ├── request.go │ ├── request_test.go │ ├── transport.go │ ├── url_utils.go │ ├── url_utils_test.go │ ├── urlbackoff.go │ ├── urlbackoff_test.go │ └── versions.go ├── testing │ ├── actions.go │ ├── fake.go │ └── fixture.go ├── tools │ ├── auth │ │ ├── clientauth.go │ │ └── clientauth_test.go │ ├── cache │ │ ├── delta_fifo.go │ │ ├── delta_fifo_test.go │ │ ├── doc.go │ │ ├── expiration_cache.go │ │ ├── expiration_cache_fakes.go │ │ ├── expiration_cache_test.go │ │ ├── fake_custom_store.go │ │ ├── fifo.go │ │ ├── fifo_test.go │ │ ├── index.go │ │ ├── index_test.go │ │ ├── listers.go │ │ ├── listers_test.go │ │ ├── listwatch.go │ │ ├── reflector.go │ │ ├── reflector_test.go │ │ ├── store.go │ │ ├── store_test.go │ │ ├── thread_safe_store.go │ │ ├── undelta_store.go │ │ └── undelta_store_test.go │ ├── clientcmd │ │ ├── api │ │ │ ├── helpers.go │ │ │ ├── helpers_test.go │ │ │ ├── latest │ │ │ │ └── latest.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_test.go │ │ │ └── v1 │ │ │ │ ├── conversion.go │ │ │ │ ├── register.go │ │ │ │ └── types.go │ │ ├── auth_loaders.go │ │ ├── client_config.go │ │ ├── client_config_test.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── loader.go │ │ ├── loader_test.go │ │ ├── merged_client_builder.go │ │ ├── overrides.go │ │ ├── validation.go │ │ └── validation_test.go │ ├── metrics │ │ └── metrics.go │ ├── portforward │ │ ├── doc.go │ │ └── portforward.go │ └── record │ │ ├── doc.go │ │ ├── event.go │ │ ├── event_test.go │ │ ├── events_cache.go │ │ ├── events_cache_test.go │ │ └── fake.go └── transport │ ├── cache.go │ ├── cache_test.go │ ├── config.go │ ├── round_trippers.go │ ├── round_trippers_test.go │ ├── transport.go │ └── transport_test.go ├── LICENSE ├── README.md ├── copy.sh ├── examples ├── in-cluster │ └── main.go └── out-of-cluster │ └── main.go └── godeps-json-updater.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/Makefile -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/README.adoc -------------------------------------------------------------------------------- /RELEASING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/RELEASING.adoc -------------------------------------------------------------------------------- /collector/impl/jolokia_metrics_collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/collector/impl/jolokia_metrics_collector.go -------------------------------------------------------------------------------- /collector/impl/json_metrics_collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/collector/impl/json_metrics_collector.go -------------------------------------------------------------------------------- /collector/impl/prometheus_metrics_collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/collector/impl/prometheus_metrics_collector.go -------------------------------------------------------------------------------- /collector/manager/metrics_collector_creator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/collector/manager/metrics_collector_creator.go -------------------------------------------------------------------------------- /collector/manager/metrics_collector_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/collector/manager/metrics_collector_manager.go -------------------------------------------------------------------------------- /collector/metric_units.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/collector/metric_units.go -------------------------------------------------------------------------------- /collector/metric_units_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/collector/metric_units_test.go -------------------------------------------------------------------------------- /collector/metrics_collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/collector/metrics_collector.go -------------------------------------------------------------------------------- /collector/metrics_endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/collector/metrics_endpoint.go -------------------------------------------------------------------------------- /collector/tracker/metrics_tracker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/collector/tracker/metrics_tracker.go -------------------------------------------------------------------------------- /collector/tracker/metrics_tracker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/collector/tracker/metrics_tracker_test.go -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/config.yaml -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/config/config.go -------------------------------------------------------------------------------- /config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/config/config_test.go -------------------------------------------------------------------------------- /config/security/config_security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/config/security/config_security.go -------------------------------------------------------------------------------- /config/security/config_security_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/config/security/config_security_test.go -------------------------------------------------------------------------------- /config/tags/config_tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/config/tags/config_tags.go -------------------------------------------------------------------------------- /config/tags/config_tags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/config/tags/config_tags_test.go -------------------------------------------------------------------------------- /deploy/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/deploy/docker/Dockerfile -------------------------------------------------------------------------------- /deploy/openshift/hawkular-openshift-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/deploy/openshift/hawkular-openshift-agent.yaml -------------------------------------------------------------------------------- /emitter/emitter_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/emitter/emitter_server.go -------------------------------------------------------------------------------- /emitter/health/health_emitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/emitter/health/health_emitter.go -------------------------------------------------------------------------------- /emitter/metrics/metrics_emitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/emitter/metrics/metrics_emitter.go -------------------------------------------------------------------------------- /emitter/status/status_emitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/emitter/status/status_emitter.go -------------------------------------------------------------------------------- /emitter/status/status_emitter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/emitter/status/status_emitter_test.go -------------------------------------------------------------------------------- /examples/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/examples/README.adoc -------------------------------------------------------------------------------- /examples/deploy-example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/examples/deploy-example.sh -------------------------------------------------------------------------------- /examples/go-expvar-example/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/examples/go-expvar-example/Dockerfile -------------------------------------------------------------------------------- /examples/go-expvar-example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/examples/go-expvar-example/Makefile -------------------------------------------------------------------------------- /examples/go-expvar-example/go-expvar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/examples/go-expvar-example/go-expvar.yaml -------------------------------------------------------------------------------- /examples/jolokia-wildfly-example/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/examples/jolokia-wildfly-example/Dockerfile -------------------------------------------------------------------------------- /examples/jolokia-wildfly-example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/examples/jolokia-wildfly-example/Makefile -------------------------------------------------------------------------------- /examples/multiple-endpoints-example/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/examples/multiple-endpoints-example/Dockerfile -------------------------------------------------------------------------------- /examples/multiple-endpoints-example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/examples/multiple-endpoints-example/Makefile -------------------------------------------------------------------------------- /examples/prometheus-python-example/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/examples/prometheus-python-example/Dockerfile -------------------------------------------------------------------------------- /examples/prometheus-python-example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/examples/prometheus-python-example/Makefile -------------------------------------------------------------------------------- /glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/glide.lock -------------------------------------------------------------------------------- /glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/glide.yaml -------------------------------------------------------------------------------- /hack/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/hack/README.adoc -------------------------------------------------------------------------------- /hack/build-openshift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/hack/build-openshift.sh -------------------------------------------------------------------------------- /hack/build-openshiftmetrics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/hack/build-openshiftmetrics.sh -------------------------------------------------------------------------------- /hack/cluster-openshift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/hack/cluster-openshift.sh -------------------------------------------------------------------------------- /hack/deploy-openshift-agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/hack/deploy-openshift-agent.sh -------------------------------------------------------------------------------- /hack/env-openshift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/hack/env-openshift.sh -------------------------------------------------------------------------------- /hack/start-openshift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/hack/start-openshift.sh -------------------------------------------------------------------------------- /hawkular-openshift-agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/hawkular-openshift-agent.go -------------------------------------------------------------------------------- /http/http_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/http/http_client.go -------------------------------------------------------------------------------- /http/http_client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/http/http_client_test.go -------------------------------------------------------------------------------- /jolokia/jolokia_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/jolokia/jolokia_request.go -------------------------------------------------------------------------------- /jolokia/jolokia_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/jolokia/jolokia_response.go -------------------------------------------------------------------------------- /jolokia/jolokia_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/jolokia/jolokia_test.go -------------------------------------------------------------------------------- /jolokia/parse_metric_name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/jolokia/parse_metric_name.go -------------------------------------------------------------------------------- /jolokia/process_jolokia_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/jolokia/process_jolokia_response.go -------------------------------------------------------------------------------- /jolokia/process_jolokia_response_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/jolokia/process_jolokia_response_test.go -------------------------------------------------------------------------------- /json/json_scraper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/json/json_scraper.go -------------------------------------------------------------------------------- /k8s/configmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/k8s/configmap.go -------------------------------------------------------------------------------- /k8s/configmap_entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/k8s/configmap_entry.go -------------------------------------------------------------------------------- /k8s/configmap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/k8s/configmap_test.go -------------------------------------------------------------------------------- /k8s/configmaps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/k8s/configmaps.go -------------------------------------------------------------------------------- /k8s/configmaps_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/k8s/configmaps_test.go -------------------------------------------------------------------------------- /k8s/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/k8s/discovery.go -------------------------------------------------------------------------------- /k8s/get_local_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/k8s/get_local_node.go -------------------------------------------------------------------------------- /k8s/inventory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/k8s/inventory.go -------------------------------------------------------------------------------- /k8s/k8s_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/k8s/k8s_client.go -------------------------------------------------------------------------------- /k8s/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/k8s/namespace.go -------------------------------------------------------------------------------- /k8s/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/k8s/node.go -------------------------------------------------------------------------------- /k8s/node_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/k8s/node_event.go -------------------------------------------------------------------------------- /k8s/node_event_consumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/k8s/node_event_consumer.go -------------------------------------------------------------------------------- /k8s/pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/k8s/pod.go -------------------------------------------------------------------------------- /k8s/pod_inventory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/k8s/pod_inventory.go -------------------------------------------------------------------------------- /k8s/pod_inventory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/k8s/pod_inventory_test.go -------------------------------------------------------------------------------- /log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/log/log.go -------------------------------------------------------------------------------- /prometheus/prometheus_scraper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/prometheus/prometheus_scraper.go -------------------------------------------------------------------------------- /prometheus/prometheus_scraper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/prometheus/prometheus_scraper_test.go -------------------------------------------------------------------------------- /prometheus/testdata/prometheus-counter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/prometheus/testdata/prometheus-counter.txt -------------------------------------------------------------------------------- /prometheus/testdata/prometheus-gauge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/prometheus/testdata/prometheus-gauge.txt -------------------------------------------------------------------------------- /prometheus/testdata/prometheus-histogram.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/prometheus/testdata/prometheus-histogram.txt -------------------------------------------------------------------------------- /prometheus/testdata/prometheus-summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/prometheus/testdata/prometheus-summary.txt -------------------------------------------------------------------------------- /prometheus/testdata/prometheus.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/prometheus/testdata/prometheus.data -------------------------------------------------------------------------------- /prometheus/testdata/prometheus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/prometheus/testdata/prometheus.txt -------------------------------------------------------------------------------- /storage/metrics_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/storage/metrics_storage.go -------------------------------------------------------------------------------- /util/expand/mapping_func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/util/expand/mapping_func.go -------------------------------------------------------------------------------- /util/expand/mapping_func_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/util/expand/mapping_func_test.go -------------------------------------------------------------------------------- /util/math/math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/util/math/math.go -------------------------------------------------------------------------------- /util/math/math_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/util/math/math_test.go -------------------------------------------------------------------------------- /util/stopwatch/stopwatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/util/stopwatch/stopwatch.go -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.prof 3 | -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/beorn7/perks/README.md -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/quantile/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/beorn7/perks/quantile/stream.go -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/topk/topk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/beorn7/perks/topk/topk.go -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/topk/topk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/beorn7/perks/topk/topk_test.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/blang/semver/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/blang/semver/README.md -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/examples/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/blang/semver/examples/main.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/blang/semver/json.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/blang/semver/json_test.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/blang/semver/range.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/range_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/blang/semver/range_test.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/semver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/blang/semver/semver.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/semver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/blang/semver/semver_test.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/blang/semver/sort.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/sort_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/blang/semver/sort_test.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/blang/semver/sql.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/sql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/blang/semver/sql_test.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry-incubator/candiedyaml/.gitignore: -------------------------------------------------------------------------------- 1 | *.coverprofile 2 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry-incubator/candiedyaml/fixtures/specification/example2_1.yaml: -------------------------------------------------------------------------------- 1 | - Mark McGwire 2 | - Sammy Sosa 3 | - Ken Griffey 4 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry-incubator/candiedyaml/fixtures/specification/example2_17_control.yaml: -------------------------------------------------------------------------------- 1 | control: "\b1998\t1999\t2000\n" 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry-incubator/candiedyaml/fixtures/specification/example2_17_hexesc.yaml: -------------------------------------------------------------------------------- 1 | hexesc: "\x0D\x0A is \r\n" 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry-incubator/candiedyaml/fixtures/specification/example2_17_quoted.yaml: -------------------------------------------------------------------------------- 1 | quoted: ' # not a ''comment''.' 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry-incubator/candiedyaml/fixtures/specification/example2_17_single.yaml: -------------------------------------------------------------------------------- 1 | single: '"Howdy!" he cried.' 2 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry-incubator/candiedyaml/fixtures/specification/example2_17_tie_fighter.yaml: -------------------------------------------------------------------------------- 1 | tie-fighter: '|\-*-/|' 2 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry-incubator/candiedyaml/fixtures/specification/example2_17_unicode.yaml: -------------------------------------------------------------------------------- 1 | unicode: "Sosa did fine.\u263A" 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry-incubator/candiedyaml/fixtures/specification/example2_21.yaml: -------------------------------------------------------------------------------- 1 | null: ~ 2 | true: yes 3 | false: no 4 | string: '12345' 5 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry-incubator/candiedyaml/fixtures/specification/example2_23_non_date.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | not-date: !!str 2002-04-28 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry-incubator/candiedyaml/fixtures/specification/example_empty.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/davecgh/go-spew/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/davecgh/go-spew/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/davecgh/go-spew/README.md -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/cov_report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/davecgh/go-spew/cov_report.sh -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/bypass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/davecgh/go-spew/spew/bypass.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/davecgh/go-spew/spew/common.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/davecgh/go-spew/spew/config.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/davecgh/go-spew/spew/doc.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/davecgh/go-spew/spew/dump.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/davecgh/go-spew/spew/format.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/spew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/davecgh/go-spew/spew/spew.go -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/docker/distribution/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/docker/distribution/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/docker/distribution/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/docker/distribution/BUILDING.md -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/docker/distribution/Dockerfile -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/docker/distribution/Jenkinsfile -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/docker/distribution/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/docker/distribution/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/docker/distribution/Makefile -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/docker/distribution/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/docker/distribution/ROADMAP.md -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/blobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/docker/distribution/blobs.go -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/docker/distribution/circle.yml -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/contrib/docker-integration/nginx/test.passwd: -------------------------------------------------------------------------------- 1 | testuser:$apr1$YmLhHjm6$AjP4z8J1WgcUNxU8J4ue5. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/contrib/docker-integration/tokenserver-oauth/.htpasswd: -------------------------------------------------------------------------------- 1 | testuser:$2y$05$T2MlBvkN1R/yICNnLuf1leOlOfAY0DvybctbbWUFKlojfkShVgn4m 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/contrib/docker-integration/tokenserver/.htpasswd: -------------------------------------------------------------------------------- 1 | testuser:$2y$05$T2MlBvkN1R/yICNnLuf1leOlOfAY0DvybctbbWUFKlojfkShVgn4m 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/coverpkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/docker/distribution/coverpkg.sh -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/docker/distribution/doc.go -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/docker/distribution/errors.go -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/manifest/doc.go: -------------------------------------------------------------------------------- 1 | package manifest 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/docker/distribution/registry.go -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/docker/distribution/tags.go -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/emicklei/go-restful/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/emicklei/go-restful/CHANGES.md -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/emicklei/go-restful/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/emicklei/go-restful/README.md -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/compress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/emicklei/go-restful/compress.go -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/emicklei/go-restful/coverage.sh -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/curly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/emicklei/go-restful/curly.go -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/emicklei/go-restful/doc.go -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/examples/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/examples/google_app_engine/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/examples/google_app_engine/datastore/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/emicklei/go-restful/filter.go -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/emicklei/go-restful/install.sh -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/jsr311.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/emicklei/go-restful/jsr311.go -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/emicklei/go-restful/log/log.go -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/emicklei/go-restful/logger.go -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/mime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/emicklei/go-restful/mime.go -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/emicklei/go-restful/request.go -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/emicklei/go-restful/response.go -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/emicklei/go-restful/route.go -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/emicklei/go-restful/router.go -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ghodss/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ghodss/yaml/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ghodss/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ghodss/yaml/README.md -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ghodss/yaml/fields.go -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ghodss/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/yaml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ghodss/yaml/yaml_test.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/.gitignore: -------------------------------------------------------------------------------- 1 | ._* 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/README -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/Readme.md -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/bench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/bench.md -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/codec/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/codec/codec.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/extensions.md -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/gogoproto/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/gogoproto/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/io/full.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/io/full.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/io/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/io/io.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/io/io_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/io/io_test.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/io/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/io/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/io/varint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/io/varint.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/jsonpb/jsonpb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/jsonpb/jsonpb.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/proto/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/all_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/proto/all_test.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/any_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/proto/any_test.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/proto/clone.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/proto/decode.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/proto/duration.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/proto/encode.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/proto/equal.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/proto/lib.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/lib_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/proto/lib_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/proto/text.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/protobuf/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/protoc-gen-gogo/testdata/multi/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/.gitignore: -------------------------------------------------------------------------------- 1 | *.dat 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/test/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/bug_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/test/bug_test.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/dashfilename/doc.go: -------------------------------------------------------------------------------- 1 | package dashfilename 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/defaultconflict/doc.go: -------------------------------------------------------------------------------- 1 | package defaultcheck 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/embedconflict/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/embedconflict/doc.go: -------------------------------------------------------------------------------- 1 | package embedconflict 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/mapsproto2/doc.go: -------------------------------------------------------------------------------- 1 | package mapsproto2 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/oneof/doc.go: -------------------------------------------------------------------------------- 1 | package one 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/oneof3/doc.go: -------------------------------------------------------------------------------- 1 | package oneof3 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/packed/doc.go: -------------------------------------------------------------------------------- 1 | package packed 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/tags/doc.go: -------------------------------------------------------------------------------- 1 | package tags 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/theproto3/doc.go: -------------------------------------------------------------------------------- 1 | package theproto3 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/test/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/uuid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/test/uuid_test.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/types/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/types/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/types/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/types/any.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/types/any.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/types/any.pb.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/types/any_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/types/any_test.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/types/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/types/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/types/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/types/duration.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/types/empty.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/types/empty.pb.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/vanity/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/vanity/enum.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/vanity/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/vanity/field.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/vanity/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/vanity/file.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/vanity/foreach.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/vanity/foreach.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/vanity/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/gogo/protobuf/vanity/msg.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/vanity/test/doc.go: -------------------------------------------------------------------------------- 1 | package test 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/vanity/test/gofast/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/golang/glog/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/golang/glog/README -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/golang/glog/glog.go -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/golang/glog/glog_file.go -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/golang/glog/glog_test.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/golang/protobuf/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/golang/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/Make.protobuf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/golang/protobuf/Make.protobuf -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/golang/protobuf/Makefile -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/golang/protobuf/README.md -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/golang/protobuf/proto/Makefile -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/golang/protobuf/proto/clone.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/golang/protobuf/proto/decode.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/golang/protobuf/proto/encode.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/golang/protobuf/proto/equal.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/golang/protobuf/proto/lib.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/golang/protobuf/proto/text.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/golang/protobuf/ptypes/any.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/golang/protobuf/ptypes/doc.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/regen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/golang/protobuf/ptypes/regen.sh -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/google/gofuzz/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/google/gofuzz/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/google/gofuzz/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/google/gofuzz/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/google/gofuzz/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/google/gofuzz/example_test.go -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/google/gofuzz/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/fuzz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/google/gofuzz/fuzz_test.go -------------------------------------------------------------------------------- /vendor/github.com/juju/ratelimit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/juju/ratelimit/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/juju/ratelimit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/juju/ratelimit/README.md -------------------------------------------------------------------------------- /vendor/github.com/juju/ratelimit/ratelimit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/juju/ratelimit/ratelimit.go -------------------------------------------------------------------------------- /vendor/github.com/juju/ratelimit/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/juju/ratelimit/reader.go -------------------------------------------------------------------------------- /vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/.gitignore: -------------------------------------------------------------------------------- 1 | cover.dat 2 | -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/pborman/uuid/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/pborman/uuid/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/pborman/uuid/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/pborman/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/pborman/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/pborman/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/pborman/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/pborman/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/pborman/uuid/json.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/pborman/uuid/json_test.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/pborman/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/seq_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/pborman/uuid/seq_test.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/pborman/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/sql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/pborman/uuid/sql_test.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/pborman/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/pborman/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/pborman/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/uuid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/pborman/uuid/uuid_test.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/pborman/uuid/version1.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/pborman/uuid/version4.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/client_golang/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/VERSION: -------------------------------------------------------------------------------- 1 | 0.8.0 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_model/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_model/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/client_model/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_model/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/client_model/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_model/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/client_model/pom.xml -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_model/ruby/Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/common/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/common/AUTHORS.md -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/common/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/common/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/common/README.md -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/config/testdata/tls_config.empty.good.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/config/testdata/tls_config.insecure.good.yml: -------------------------------------------------------------------------------- 1 | insecure_skip_verify: true 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/config/testdata/tls_config.invalid_field.bad.yml: -------------------------------------------------------------------------------- 1 | something_invalid: true 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_0: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_0: -------------------------------------------------------------------------------- 1 | bla 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_1: -------------------------------------------------------------------------------- 1 | metric{label="\t"} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_10: -------------------------------------------------------------------------------- 1 | metric{label="bla"} 3.14 2 3 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_11: -------------------------------------------------------------------------------- 1 | metric{label="bla"} blubb 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_15: -------------------------------------------------------------------------------- 1 | 2 | # TYPE metric bla 3 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_16: -------------------------------------------------------------------------------- 1 | 2 | # TYPE met-ric 3 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_17: -------------------------------------------------------------------------------- 1 | @invalidmetric{label="bla"} 3.14 2 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_18: -------------------------------------------------------------------------------- 1 | {label="bla"} 3.14 2 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_2: -------------------------------------------------------------------------------- 1 | 2 | metric{label="new 3 | line"} 3.14 4 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_3: -------------------------------------------------------------------------------- 1 | metric{@="bla"} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_4: -------------------------------------------------------------------------------- 1 | metric{__name__="bla"} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_5: -------------------------------------------------------------------------------- 1 | metric{label+="bla"} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_6: -------------------------------------------------------------------------------- 1 | metric{label=bla} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_8: -------------------------------------------------------------------------------- 1 | metric{label="bla"+} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_9: -------------------------------------------------------------------------------- 1 | metric{label="bla"} 3.14 2.72 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/minimal: -------------------------------------------------------------------------------- 1 | m{} 0 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/common/log/log.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/model/fnv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/common/model/fnv.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/model/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/common/model/time.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/procfs/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/procfs/AUTHORS.md -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/procfs/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/procfs/Makefile -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/procfs/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/procfs/README.md -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/procfs/doc.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/cmdline: -------------------------------------------------------------------------------- 1 | vimtest.go+10 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/comm: -------------------------------------------------------------------------------- 1 | vim 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/exe: -------------------------------------------------------------------------------- 1 | /usr/bin/vim -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/0: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/abc -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/1: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/def -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/10: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/xyz -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/2: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/ghi -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/3: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/uvw -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/cmdline: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/comm: -------------------------------------------------------------------------------- 1 | ata_sff 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/fd/0: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/abc -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/fd/1: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/def -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/fd/2: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/ghi -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/fd/3: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/uvw -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/fd/4: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/xyz -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/self: -------------------------------------------------------------------------------- 1 | 26231 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/procfs/fixtures/stat -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/symlinktargets/abc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/symlinktargets/def: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/symlinktargets/ghi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/symlinktargets/uvw: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/symlinktargets/xyz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/procfs/fs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/procfs/fs_test.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/ipvs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/procfs/ipvs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/ipvs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/procfs/ipvs_test.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/mdstat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/procfs/mdstat.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/mountstats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/procfs/mountstats.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/procfs/proc.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/proc_io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/procfs/proc_io.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/proc_stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/procfs/proc_stat.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/proc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/procfs/proc_test.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/procfs/stat.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/stat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/prometheus/procfs/stat_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/spf13/pflag/bool_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/spf13/pflag/example_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/spf13/pflag/export_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/spf13/pflag/flag_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/README.md -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/0doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/codec/0doc.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/codec/README.md -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/binc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/codec/binc.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/cbor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/codec/cbor.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/cbor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/codec/cbor_test.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/codec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/codec/codec_test.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/codecgen/z.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | const genCodecPath = "github.com/ugorji/go/codec" 4 | -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/codec/decode.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/decode_go.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/codec/decode_go.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/codec/encode.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/codec/gen.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/gen_15.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/codec/gen_15.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/gen_16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/codec/gen_16.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/gen_17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/codec/gen_17.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/codec/helper.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/codec/json.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/msgpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/codec/msgpack.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/noop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/codec/noop.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/prebuild.go: -------------------------------------------------------------------------------- 1 | package codec 2 | 3 | //go:generate bash prebuild.sh 4 | -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/prebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/codec/prebuild.sh -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/py_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/codec/py_test.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/codec/rpc.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/codec/simple.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/codec/test.py -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/codec/tests.sh -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/codec/time.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/msgpack.org.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/github.com/ugorji/go/msgpack.org.md -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/context/context_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/dict/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/dict/dict.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/atom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/html/atom/atom.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/atom_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/html/atom/atom_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/html/atom/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/html/atom/table.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/table_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/html/atom/table_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/charset/charset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/html/charset/charset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/html/entity_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/html/escape_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/html/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/html/node_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/html/parse_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/html/render_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/testdata/go1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/html/testdata/go1.html -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/html/token_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/errors_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/fixed_buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/fixed_buffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/flow_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/frame_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go15.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/go15.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/gotrack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/gotrack_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/h2demo/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/h2demo/Makefile -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/h2demo/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/h2demo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/h2demo/h2demo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/launch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/h2demo/launch.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/rootCA.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/h2demo/rootCA.key -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/rootCA.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/h2demo/rootCA.pem -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/h2demo/server.crt -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/h2demo/server.key -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/h2i/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2i/h2i.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/h2i/h2i.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/headermap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/headermap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/hpack/encode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/hpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/hpack/hpack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/huffman.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/hpack/huffman.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/hpack/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/http2_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go15.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/not_go15.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/not_go16.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/pipe_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/priority_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/priority_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/server_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/transport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/transport_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/writesched.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/writesched.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/z_spec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/http2/z_spec_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/dstunreach.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/icmp/dstunreach.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/icmp/echo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/icmp/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/icmp/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/icmp/extension.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/extension_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/icmp/extension_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/icmp/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/helper_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/icmp/helper_posix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/icmp/interface.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/icmp/ipv4.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/icmp/ipv4_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/icmp/ipv6.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/listen_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/icmp/listen_posix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/listen_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/icmp/listen_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/icmp/message.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/message_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/icmp/message_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/messagebody.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/icmp/messagebody.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/mpls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/icmp/mpls.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/multipart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/icmp/multipart.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/multipart_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/icmp/multipart_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/packettoobig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/icmp/packettoobig.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/paramprob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/icmp/paramprob.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ping_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/icmp/ping_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/icmp/sys_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/timeexceeded.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/icmp/timeexceeded.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/idna/idna_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/idna/punycode_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/iana/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/internal/iana/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/iana/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/internal/iana/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/control.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/control_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control_pktinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/control_pktinfo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/control_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/control_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/control_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/defs_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/defs_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/defs_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/defs_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/defs_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/defs_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/defs_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/dgramopt_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/dgramopt_posix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/dgramopt_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/dgramopt_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/genericopt_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/genericopt_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/header.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/header_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/header_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/helper_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/helper_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/helper_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/helper_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/helper_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/helper_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/iana.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/icmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/icmp_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/icmp_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/icmp_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/multicast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/multicast_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/packet.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/payload.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/payload_cmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/payload_cmsg.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/payload_nocmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/payload_nocmsg.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/readwrite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/readwrite_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/sockopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sockopt_asmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/sockopt_asmreq.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sockopt_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/sockopt_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sockopt_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/sockopt_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sockopt_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/sockopt_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/sys_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/sys_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/sys_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/sys_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/sys_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/sys_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/sys_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/thunk_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/thunk_linux_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/unicast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/unicast_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/zsys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/zsys_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/zsys_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/zsys_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/zsys_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/zsys_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/zsys_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/zsys_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/zsys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/zsys_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/zsys_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/zsys_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/zsys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv4/zsys_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/control.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/control_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/control_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/control_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/control_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/control_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/control_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/defs_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/defs_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/defs_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/defs_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/defs_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/defs_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/defs_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/dgramopt_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/dgramopt_posix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/dgramopt_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/dgramopt_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/genericopt_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/genericopt_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/header.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/header_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/header_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/helper_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/helper_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/helper_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/helper_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/helper_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/helper_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/iana.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/icmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/icmp_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/icmp_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/icmp_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/icmp_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/icmp_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/icmp_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/multicast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/multicast_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/payload.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/payload_cmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/payload_cmsg.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/payload_nocmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/payload_nocmsg.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/readwrite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/readwrite_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/sockopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sockopt_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/sockopt_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sockopt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/sockopt_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sockopt_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/sockopt_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sockopt_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/sockopt_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/sys_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/sys_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/sys_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/sys_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/sys_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/sys_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/thunk_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/thunk_linux_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/unicast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/unicast_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/zsys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/zsys_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/zsys_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/zsys_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/zsys_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/zsys_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/zsys_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/zsys_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/zsys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/zsys_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/zsys_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/zsys_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/zsys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/ipv6/zsys_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/netutil/listen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/netutil/listen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/netutil/listen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/netutil/listen_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/per_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/proxy/per_host.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/per_host_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/proxy/per_host_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/proxy/proxy_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/publicsuffix/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/publicsuffix/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/publicsuffix/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/publicsuffix/list.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/publicsuffix/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/publicsuffix/table.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/trace/histogram.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/histogram_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/trace/histogram_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/trace/trace_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/webdav/file.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/webdav/file_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/webdav/if.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/if_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/webdav/if_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/webdav/lock.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/lock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/webdav/lock_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/webdav/prop.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/prop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/webdav/prop_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/webdav.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/webdav/webdav.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/webdav_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/webdav/webdav_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/webdav/xml.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/xml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/webdav/xml_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/websocket/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/websocket/client.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/websocket/hybi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/websocket/hybi.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/websocket/hybi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/websocket/hybi_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/websocket/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/websocket/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/websocket/websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/websocket/websocket.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/xsrftoken/xsrf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/xsrftoken/xsrf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/xsrftoken/xsrf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/golang.org/x/net/xsrftoken/xsrf_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/inf.v0/benchmark_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec_go1_2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/inf.v0/dec_go1_2_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/inf.v0/dec_internal_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/inf.v0/dec_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/inf.v0/example_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/inf.v0/rounder_example_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/inf.v0/rounder_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/yaml.v2/decode_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/yaml.v2/encode_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/yaml.v2/suite_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/Godeps/Godeps.json -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/Godeps/Readme -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/dynamic/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/dynamic/client.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/kubernetes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/kubernetes/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/api/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/api/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/api/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/api/context.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/api/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/api/defaults.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/api/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/api/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/api/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/api/generate.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/api/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/api/helpers.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/api/mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/api/mapper.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/api/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/api/meta.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/api/meta/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/api/meta/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/api/pod/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/api/pod/util.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/api/ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/api/ref.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/api/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/api/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/api/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/api/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/api/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/api/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/api/v1/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/api/v1/meta.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/api/v1/ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/api/v1/ref.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/api/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/api/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/fields/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/fields/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/labels/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/labels/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/runtime/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/runtime/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/runtime/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/runtime/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/types/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/types/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/types/uid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/types/uid.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/util/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/util/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/util/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/util/trace.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/util/umask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/util/umask.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/util/util.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/version/.gitattributes: -------------------------------------------------------------------------------- 1 | base.go export-subst 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/version/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/version/base.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/version/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/version/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/watch/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/watch/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/watch/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/watch/filter.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/watch/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/watch/mux.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/watch/until.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/watch/until.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/pkg/watch/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/pkg/watch/watch.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/rest/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/rest/client.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/rest/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/rest/client_test.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/rest/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/rest/config.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/rest/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/rest/config_test.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/rest/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/rest/plugin.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/rest/plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/rest/plugin_test.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/rest/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/rest/request.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/rest/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/rest/transport.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/rest/url_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/rest/url_utils.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/rest/urlbackoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/rest/urlbackoff.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/rest/versions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/rest/versions.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/testing/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/testing/actions.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/testing/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/testing/fake.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/testing/fixture.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/testing/fixture.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/tools/cache/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/tools/cache/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/tools/cache/fifo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/tools/cache/fifo.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/tools/record/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/tools/record/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/transport/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/transport/cache.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/1.4/transport/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/1.4/transport/config.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/copy.sh -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/godeps-json-updater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkular/hawkular-openshift-agent/HEAD/vendor/k8s.io/client-go/godeps-json-updater.go --------------------------------------------------------------------------------