├── .envrc ├── .final_builds └── packages │ ├── golang-1-darwin │ └── index.yml │ ├── golang-1-linux │ └── index.yml │ ├── golang-1.8-darwin │ └── index.yml │ └── golang-1.8-linux │ └── index.yml ├── .gitignore ├── LICENSE ├── NOTICE ├── README.md ├── bosh-deployment └── k8s │ ├── aks.yml │ ├── cloud-config.yml │ ├── cpi.yml │ ├── gcp.yml │ ├── ibm.yml │ ├── minikube-local-registry.yml │ └── minikube.yml ├── config ├── blobs.yml └── final.yml ├── deployments ├── aks-cf │ ├── .gitignore │ ├── cc.yml │ ├── local.yml │ └── run.sh ├── aks │ ├── .envrc │ ├── .gitignore │ ├── local.yml │ └── run.sh ├── generic │ ├── cpi-rbac.yml │ ├── lb-cf.yml │ ├── lb.yml │ ├── local.yml │ └── ns.yml ├── gke-cf │ ├── .gitignore │ ├── cc.yml │ ├── local.yml │ └── run.sh ├── gke │ ├── .bosh.envrc │ ├── .gitignore │ ├── .kube.envrc │ ├── kubeconfig.example │ ├── kubeconfigca.pem.example │ └── run.sh ├── ibm-cf │ ├── .gitignore │ ├── cc.yml │ ├── local.yml │ └── run.sh ├── ibm │ ├── .envrc │ ├── .gitignore │ ├── lb-ibm.yml │ ├── local.yml │ ├── run.sh │ └── tests │ │ ├── access-to-host.yml │ │ ├── pdb.yml │ │ └── pods │ │ ├── pod1.yml │ │ ├── pod2.yml │ │ ├── pod3.yml │ │ ├── pod4.yml │ │ └── pod5.yml └── minikube │ ├── .envrc │ ├── .gitignore │ └── run.sh ├── deps.txt ├── docs ├── aks.md ├── features.md ├── gke.md ├── ibm.md ├── minikube.md └── tbd.md ├── jobs ├── kubernetes_cpi │ ├── monit │ ├── spec │ └── templates │ │ ├── cpi.erb │ │ └── cpi.json.erb └── kubernetes_cpi_pdbctrl │ ├── monit │ ├── spec │ └── templates │ ├── config.json │ └── ctl ├── manifests ├── dev.yml └── local-release.yml ├── packages ├── golang-1-darwin │ └── spec.lock ├── golang-1-linux │ └── spec.lock └── kubernetes_cpi │ ├── packaging │ └── spec ├── registry ├── certs.yml ├── certs │ ├── creds.yml │ ├── domain.crt │ └── domain.key ├── registry.yml └── run.sh ├── src ├── code.cloudfoundry.org │ └── clock │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── clock.go │ │ ├── fakeclock │ │ ├── fake_clock.go │ │ ├── fake_clock_test.go │ │ ├── fake_ticker.go │ │ ├── fake_ticker_test.go │ │ ├── fake_timer.go │ │ ├── fake_timer_test.go │ │ ├── fakeclock_suite_test.go │ │ └── package.go │ │ ├── package.go │ │ ├── ticker.go │ │ └── timer.go ├── github.com │ ├── PuerkitoBio │ │ ├── purell │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bench_test.go │ │ │ ├── benchmarks │ │ │ │ └── v0.1.0 │ │ │ ├── example_test.go │ │ │ ├── purell.go │ │ │ ├── purell_test.go │ │ │ └── urlnorm_test.go │ │ └── urlesc │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── urlesc.go │ │ │ └── urlesc_test.go │ ├── cloudfoundry │ │ └── bosh-utils │ │ │ ├── .envrc │ │ │ ├── .gitignore │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── assert │ │ │ ├── json_matchers.go │ │ │ └── path_matchers.go │ │ │ ├── bin │ │ │ ├── build │ │ │ ├── build-linux-amd64 │ │ │ ├── env │ │ │ ├── go │ │ │ ├── install-ginkgo │ │ │ ├── require-ci-golang-version │ │ │ ├── test │ │ │ └── test-unit │ │ │ ├── blobstore │ │ │ ├── blob_manager.go │ │ │ ├── blob_manager_interface.go │ │ │ ├── blob_manager_test.go │ │ │ ├── blobstore_interface.go │ │ │ ├── blobstore_suite_test.go │ │ │ ├── digest_blobstore_interface.go │ │ │ ├── digest_verifiable_blobstore.go │ │ │ ├── digest_verifiable_blobstore_test.go │ │ │ ├── dummy_blobstore.go │ │ │ ├── external_blobstore.go │ │ │ ├── external_blobstore_test.go │ │ │ ├── fakes │ │ │ │ ├── fake_blob_manager.go │ │ │ │ ├── fake_blobstore.go │ │ │ │ └── fake_digest_blobstore.go │ │ │ ├── local_blobstore.go │ │ │ ├── local_blobstore_test.go │ │ │ ├── provider.go │ │ │ ├── provider_test.go │ │ │ ├── retryable_blobstore.go │ │ │ ├── retryable_blobstore_test.go │ │ │ └── test_assets │ │ │ │ └── some.config │ │ │ ├── ci │ │ │ ├── README.md │ │ │ ├── configure.sh │ │ │ ├── docker │ │ │ │ ├── bosh-utils │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── build.sh │ │ │ │ │ └── install-go.sh │ │ │ │ └── deps-golang │ │ │ ├── pipeline.yml │ │ │ └── tasks │ │ │ │ ├── build-multidigest-binary.sh │ │ │ │ ├── build-multidigest-binary.yml │ │ │ │ ├── test-unit-windows.yml │ │ │ │ ├── test-unit.ps1 │ │ │ │ ├── test-unit.sh │ │ │ │ └── test-unit.yml │ │ │ ├── crypto │ │ │ ├── algorithms.go │ │ │ ├── algorithms_test.go │ │ │ ├── cryptofakes │ │ │ │ └── fake_archive_digest_file_path_reader.go │ │ │ ├── digest.go │ │ │ ├── digest_test.go │ │ │ ├── interfaces.go │ │ │ ├── multiple_digest.go │ │ │ ├── multiple_digest_test.go │ │ │ ├── suite_test.go │ │ │ ├── x509.go │ │ │ └── x509_test.go │ │ │ ├── errors │ │ │ ├── errors.go │ │ │ ├── errors_suite_test.go │ │ │ ├── errors_test.go │ │ │ ├── multi_error.go │ │ │ └── multi_error_test.go │ │ │ ├── fileutil │ │ │ ├── commands_suite_test.go │ │ │ ├── compressor_interface.go │ │ │ ├── copier_interface.go │ │ │ ├── fakes │ │ │ │ ├── fake_compressor.go │ │ │ │ ├── fake_copier.go │ │ │ │ └── fake_mover.go │ │ │ ├── generic_cp_copier.go │ │ │ ├── generic_cp_copier_test.go │ │ │ ├── mover.go │ │ │ ├── mover_interface.go │ │ │ ├── mover_test.go │ │ │ ├── mover_windows_test.go │ │ │ ├── tarball_compressor.go │ │ │ ├── tarball_compressor_test.go │ │ │ └── test_assets │ │ │ │ ├── compressor-decompress-file-to-dir.tgz │ │ │ │ ├── symlink_target │ │ │ │ ├── app.stdout.log │ │ │ │ └── sub_dir │ │ │ │ │ └── sub_app.stdout.log │ │ │ │ └── test_filtered_copy_to_temp │ │ │ │ ├── app.stderr.log │ │ │ │ ├── app.stdout.log │ │ │ │ ├── other_logs │ │ │ │ ├── more_logs │ │ │ │ │ └── more.stdout.log │ │ │ │ ├── other_app.stderr.log │ │ │ │ └── other_app.stdout.log │ │ │ │ └── some_directory │ │ │ │ └── sub_dir │ │ │ │ └── other_sub_dir │ │ │ │ └── .keep │ │ │ ├── httpclient │ │ │ ├── assets │ │ │ │ ├── test_ca.pem │ │ │ │ ├── test_client.key │ │ │ │ └── test_client.pem │ │ │ ├── default_http_clients.go │ │ │ ├── default_http_clients_test.go │ │ │ ├── http_client.go │ │ │ ├── http_client_test.go │ │ │ ├── httpclient_suite_test.go │ │ │ ├── keepalive_syscall_linux_test.go │ │ │ ├── mutual_tls_client.go │ │ │ ├── mutual_tls_client_test.go │ │ │ ├── request_retryable.go │ │ │ ├── request_retryable_test.go │ │ │ ├── retry_clients.go │ │ │ ├── retry_clients_test.go │ │ │ ├── socksify.go │ │ │ └── socksify_test.go │ │ │ ├── logger │ │ │ ├── async.go │ │ │ ├── async_test.go │ │ │ ├── fakes │ │ │ │ └── fake_logger.go │ │ │ ├── file │ │ │ │ ├── file_logger.go │ │ │ │ ├── file_suite_test.go │ │ │ │ └── file_test.go │ │ │ ├── logger.go │ │ │ ├── logger_suite_test.go │ │ │ ├── logger_test.go │ │ │ └── loggerfakes │ │ │ │ └── fake_logger.go │ │ │ ├── main │ │ │ ├── main_suite_test.go │ │ │ ├── verify_multidigest.go │ │ │ ├── verify_multidigest_test.go │ │ │ └── version.go │ │ │ ├── property │ │ │ ├── builders.go │ │ │ ├── list.go │ │ │ ├── map.go │ │ │ ├── map_test.go │ │ │ ├── property.go │ │ │ └── suite_test.go │ │ │ ├── retrystrategy │ │ │ ├── attempt_retry_strategy.go │ │ │ ├── attempt_retry_strategy_test.go │ │ │ ├── fakes │ │ │ │ └── fake_retry_strategy.go │ │ │ ├── retry_strategy.go │ │ │ ├── retrystrategy_suite_test.go │ │ │ ├── timeout_retry_strategy.go │ │ │ ├── timeout_retry_strategy_test.go │ │ │ ├── unlimited_retry_strategy.go │ │ │ └── unlimited_retry_strategy_test.go │ │ │ ├── system │ │ │ ├── cmd_runner_interface.go │ │ │ ├── exec_cmd_runner.go │ │ │ ├── exec_cmd_runner_fixtures │ │ │ │ ├── cat.go │ │ │ │ ├── child_ignore_term.go │ │ │ │ ├── child_term.go │ │ │ │ ├── exe_exits.go │ │ │ │ ├── false.go │ │ │ │ ├── parent_ignore_term.go │ │ │ │ ├── parent_term.go │ │ │ │ └── windows_exe.go │ │ │ ├── exec_cmd_runner_test.go │ │ │ ├── exec_cmd_runner_unix.go │ │ │ ├── exec_cmd_runner_windows.go │ │ │ ├── exec_error.go │ │ │ ├── exec_error_test.go │ │ │ ├── exec_process.go │ │ │ ├── exec_process_test.go │ │ │ ├── exec_process_unix.go │ │ │ ├── exec_process_unix_test.go │ │ │ ├── exec_process_windows.go │ │ │ ├── exec_process_windows_test.go │ │ │ ├── fakes │ │ │ │ ├── fake_cmd_runner.go │ │ │ │ ├── fake_cmd_runner_test.go │ │ │ │ ├── fake_file_system.go │ │ │ │ ├── fake_file_system_test.go │ │ │ │ └── fakes_suite_test.go │ │ │ ├── file_system_interface.go │ │ │ ├── ip_helper.go │ │ │ ├── ip_helper_test.go │ │ │ ├── os_file_system.go │ │ │ ├── os_file_system_test.go │ │ │ ├── os_file_system_unix.go │ │ │ ├── os_file_system_unix_test.go │ │ │ ├── os_file_system_windows.go │ │ │ ├── os_file_system_windows_test.go │ │ │ ├── os_long_path_test.go │ │ │ ├── system_suite_test.go │ │ │ └── test_assets │ │ │ │ └── test_copy_dir_entries │ │ │ │ ├── bar │ │ │ │ ├── bar.txt │ │ │ │ └── baz │ │ │ │ │ └── .gitkeep │ │ │ │ └── foo.txt │ │ │ ├── uuid │ │ │ ├── fakes │ │ │ │ └── fake_generator.go │ │ │ ├── generator_interface.go │ │ │ ├── uuid_suite_test.go │ │ │ ├── uuid_v4_generator.go │ │ │ └── uuid_v4_generator_test.go │ │ │ └── vendor │ │ │ ├── code.cloudfoundry.org │ │ │ └── clock │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ ├── README.md │ │ │ │ ├── clock.go │ │ │ │ ├── fakeclock │ │ │ │ ├── fake_clock.go │ │ │ │ ├── fake_clock_test.go │ │ │ │ ├── fake_ticker.go │ │ │ │ ├── fake_ticker_test.go │ │ │ │ ├── fake_timer.go │ │ │ │ ├── fake_timer_test.go │ │ │ │ ├── fakeclock_suite_test.go │ │ │ │ └── package.go │ │ │ │ ├── package.go │ │ │ │ ├── ticker.go │ │ │ │ └── timer.go │ │ │ ├── github.com │ │ │ ├── armon │ │ │ │ └── go-socks5 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── auth.go │ │ │ │ │ ├── auth_test.go │ │ │ │ │ ├── credentials.go │ │ │ │ │ ├── credentials_test.go │ │ │ │ │ ├── request.go │ │ │ │ │ ├── request_test.go │ │ │ │ │ ├── resolver.go │ │ │ │ │ ├── resolver_test.go │ │ │ │ │ ├── ruleset.go │ │ │ │ │ ├── ruleset_test.go │ │ │ │ │ ├── socks5.go │ │ │ │ │ └── socks5_test.go │ │ │ ├── bmatcuk │ │ │ │ └── doublestar │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doublestar.go │ │ │ │ │ └── doublestar_test.go │ │ │ ├── charlievieth │ │ │ │ └── fs │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── fs.go │ │ │ │ │ ├── fs_test.go │ │ │ │ │ ├── fs_unix.go │ │ │ │ │ ├── fs_windows.go │ │ │ │ │ └── fs_windows_test.go │ │ │ ├── cloudfoundry │ │ │ │ └── socks5-proxy │ │ │ │ │ ├── Gopkg.lock │ │ │ │ │ ├── Gopkg.toml │ │ │ │ │ ├── exports_test.go │ │ │ │ │ ├── host_key_getter.go │ │ │ │ │ ├── host_key_getter_test.go │ │ │ │ │ ├── init_test.go │ │ │ │ │ ├── socks5_proxy.go │ │ │ │ │ └── socks5_proxy_test.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 │ │ │ │ │ └── test_coverage.txt │ │ │ ├── golang │ │ │ │ └── protobuf │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Make.protobuf │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ └── 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 │ │ │ │ │ ├── map_test.go │ │ │ │ │ ├── message_set.go │ │ │ │ │ ├── message_set_test.go │ │ │ │ │ ├── pointer_reflect.go │ │ │ │ │ ├── pointer_unsafe.go │ │ │ │ │ ├── properties.go │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ ├── size2_test.go │ │ │ │ │ ├── size_test.go │ │ │ │ │ ├── text.go │ │ │ │ │ ├── text_parser.go │ │ │ │ │ ├── text_parser_test.go │ │ │ │ │ └── text_test.go │ │ │ ├── jessevdk │ │ │ │ └── go-flags │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── arg.go │ │ │ │ │ ├── arg_test.go │ │ │ │ │ ├── assert_test.go │ │ │ │ │ ├── check_crosscompile.sh │ │ │ │ │ ├── closest.go │ │ │ │ │ ├── command.go │ │ │ │ │ ├── command_test.go │ │ │ │ │ ├── completion.go │ │ │ │ │ ├── completion_test.go │ │ │ │ │ ├── convert.go │ │ │ │ │ ├── convert_test.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── flags.go │ │ │ │ │ ├── group.go │ │ │ │ │ ├── group_test.go │ │ │ │ │ ├── help.go │ │ │ │ │ ├── help_test.go │ │ │ │ │ ├── ini.go │ │ │ │ │ ├── ini_test.go │ │ │ │ │ ├── long_test.go │ │ │ │ │ ├── man.go │ │ │ │ │ ├── marshal_test.go │ │ │ │ │ ├── multitag.go │ │ │ │ │ ├── option.go │ │ │ │ │ ├── options_test.go │ │ │ │ │ ├── optstyle_other.go │ │ │ │ │ ├── optstyle_windows.go │ │ │ │ │ ├── parser.go │ │ │ │ │ ├── parser_test.go │ │ │ │ │ ├── pointer_test.go │ │ │ │ │ ├── short_test.go │ │ │ │ │ ├── tag_test.go │ │ │ │ │ ├── termsize.go │ │ │ │ │ ├── termsize_linux.go │ │ │ │ │ ├── termsize_nosysioctl.go │ │ │ │ │ ├── termsize_other.go │ │ │ │ │ ├── termsize_unix.go │ │ │ │ │ └── unknown_test.go │ │ │ ├── nu7hatch │ │ │ │ └── gouuid │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── README.md │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── uuid.go │ │ │ │ │ └── uuid_test.go │ │ │ ├── onsi │ │ │ │ ├── ginkgo │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── config │ │ │ │ │ │ └── config.go │ │ │ │ │ ├── ginkgo │ │ │ │ │ │ ├── bootstrap_command.go │ │ │ │ │ │ ├── build_command.go │ │ │ │ │ │ ├── convert │ │ │ │ │ │ │ ├── ginkgo_ast_nodes.go │ │ │ │ │ │ │ ├── import.go │ │ │ │ │ │ │ ├── package_rewriter.go │ │ │ │ │ │ │ ├── test_finder.go │ │ │ │ │ │ │ ├── testfile_rewriter.go │ │ │ │ │ │ │ └── testing_t_rewriter.go │ │ │ │ │ │ ├── convert_command.go │ │ │ │ │ │ ├── generate_command.go │ │ │ │ │ │ ├── help_command.go │ │ │ │ │ │ ├── interrupthandler │ │ │ │ │ │ │ ├── interrupt_handler.go │ │ │ │ │ │ │ ├── sigquit_swallower_unix.go │ │ │ │ │ │ │ └── sigquit_swallower_windows.go │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ ├── nodot │ │ │ │ │ │ │ ├── nodot.go │ │ │ │ │ │ │ ├── nodot_suite_test.go │ │ │ │ │ │ │ └── nodot_test.go │ │ │ │ │ │ ├── nodot_command.go │ │ │ │ │ │ ├── notifications.go │ │ │ │ │ │ ├── run_command.go │ │ │ │ │ │ ├── run_watch_and_build_command_flags.go │ │ │ │ │ │ ├── suite_runner.go │ │ │ │ │ │ ├── testrunner │ │ │ │ │ │ │ ├── log_writer.go │ │ │ │ │ │ │ ├── run_result.go │ │ │ │ │ │ │ ├── test_runner.go │ │ │ │ │ │ │ └── test_runner_test.go │ │ │ │ │ │ ├── testsuite │ │ │ │ │ │ │ ├── test_suite.go │ │ │ │ │ │ │ ├── testsuite_suite_test.go │ │ │ │ │ │ │ ├── testsuite_test.go │ │ │ │ │ │ │ ├── vendor_check_go15.go │ │ │ │ │ │ │ ├── vendor_check_go15_test.go │ │ │ │ │ │ │ └── vendor_check_go16.go │ │ │ │ │ │ ├── unfocus_command.go │ │ │ │ │ │ ├── version_command.go │ │ │ │ │ │ ├── watch │ │ │ │ │ │ │ ├── delta.go │ │ │ │ │ │ │ ├── delta_tracker.go │ │ │ │ │ │ │ ├── dependencies.go │ │ │ │ │ │ │ ├── package_hash.go │ │ │ │ │ │ │ ├── package_hashes.go │ │ │ │ │ │ │ └── suite.go │ │ │ │ │ │ └── watch_command.go │ │ │ │ │ ├── ginkgo_dsl.go │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── codelocation │ │ │ │ │ │ │ ├── code_location.go │ │ │ │ │ │ │ ├── code_location_suite_test.go │ │ │ │ │ │ │ └── code_location_test.go │ │ │ │ │ │ ├── containernode │ │ │ │ │ │ │ ├── container_node.go │ │ │ │ │ │ │ ├── container_node_suite_test.go │ │ │ │ │ │ │ └── container_node_test.go │ │ │ │ │ │ ├── failer │ │ │ │ │ │ │ ├── failer.go │ │ │ │ │ │ │ ├── failer_suite_test.go │ │ │ │ │ │ │ └── failer_test.go │ │ │ │ │ │ ├── leafnodes │ │ │ │ │ │ │ ├── benchmarker.go │ │ │ │ │ │ │ ├── interfaces.go │ │ │ │ │ │ │ ├── it_node.go │ │ │ │ │ │ │ ├── it_node_test.go │ │ │ │ │ │ │ ├── leaf_node_suite_test.go │ │ │ │ │ │ │ ├── measure_node.go │ │ │ │ │ │ │ ├── measure_node_test.go │ │ │ │ │ │ │ ├── runner.go │ │ │ │ │ │ │ ├── setup_nodes.go │ │ │ │ │ │ │ ├── setup_nodes_test.go │ │ │ │ │ │ │ ├── shared_runner_test.go │ │ │ │ │ │ │ ├── suite_nodes.go │ │ │ │ │ │ │ ├── suite_nodes_test.go │ │ │ │ │ │ │ ├── synchronized_after_suite_node.go │ │ │ │ │ │ │ ├── synchronized_after_suite_node_test.go │ │ │ │ │ │ │ ├── synchronized_before_suite_node.go │ │ │ │ │ │ │ └── synchronized_before_suite_node_test.go │ │ │ │ │ │ ├── remote │ │ │ │ │ │ │ ├── aggregator.go │ │ │ │ │ │ │ ├── aggregator_test.go │ │ │ │ │ │ │ ├── fake_output_interceptor_test.go │ │ │ │ │ │ │ ├── fake_poster_test.go │ │ │ │ │ │ │ ├── forwarding_reporter.go │ │ │ │ │ │ │ ├── forwarding_reporter_test.go │ │ │ │ │ │ │ ├── output_interceptor.go │ │ │ │ │ │ │ ├── output_interceptor_unix.go │ │ │ │ │ │ │ ├── output_interceptor_win.go │ │ │ │ │ │ │ ├── remote_suite_test.go │ │ │ │ │ │ │ ├── server.go │ │ │ │ │ │ │ ├── server_test.go │ │ │ │ │ │ │ ├── syscall_dup_linux_arm64.go │ │ │ │ │ │ │ ├── syscall_dup_solaris.go │ │ │ │ │ │ │ └── syscall_dup_unix.go │ │ │ │ │ │ ├── spec │ │ │ │ │ │ │ ├── spec.go │ │ │ │ │ │ │ ├── spec_suite_test.go │ │ │ │ │ │ │ ├── spec_test.go │ │ │ │ │ │ │ ├── specs.go │ │ │ │ │ │ │ └── specs_test.go │ │ │ │ │ │ ├── spec_iterator │ │ │ │ │ │ │ ├── index_computer.go │ │ │ │ │ │ │ ├── index_computer_test.go │ │ │ │ │ │ │ ├── parallel_spec_iterator.go │ │ │ │ │ │ │ ├── parallel_spec_iterator_test.go │ │ │ │ │ │ │ ├── serial_spec_iterator.go │ │ │ │ │ │ │ ├── serial_spec_iterator_test.go │ │ │ │ │ │ │ ├── sharded_parallel_spec_iterator.go │ │ │ │ │ │ │ ├── sharded_parallel_spec_iterator_test.go │ │ │ │ │ │ │ ├── spec_iterator.go │ │ │ │ │ │ │ └── spec_iterator_suite_test.go │ │ │ │ │ │ ├── specrunner │ │ │ │ │ │ │ ├── random_id.go │ │ │ │ │ │ │ ├── spec_runner.go │ │ │ │ │ │ │ ├── spec_runner_suite_test.go │ │ │ │ │ │ │ └── spec_runner_test.go │ │ │ │ │ │ ├── suite │ │ │ │ │ │ │ ├── suite.go │ │ │ │ │ │ │ ├── suite_suite_test.go │ │ │ │ │ │ │ └── suite_test.go │ │ │ │ │ │ ├── testingtproxy │ │ │ │ │ │ │ └── testing_t_proxy.go │ │ │ │ │ │ └── writer │ │ │ │ │ │ │ ├── fake_writer.go │ │ │ │ │ │ │ ├── writer.go │ │ │ │ │ │ │ ├── writer_suite_test.go │ │ │ │ │ │ │ └── writer_test.go │ │ │ │ │ ├── reporters │ │ │ │ │ │ ├── default_reporter.go │ │ │ │ │ │ ├── default_reporter_test.go │ │ │ │ │ │ ├── fake_reporter.go │ │ │ │ │ │ ├── junit_reporter.go │ │ │ │ │ │ ├── junit_reporter_test.go │ │ │ │ │ │ ├── reporter.go │ │ │ │ │ │ ├── reporters_suite_test.go │ │ │ │ │ │ ├── stenographer │ │ │ │ │ │ │ ├── console_logging.go │ │ │ │ │ │ │ ├── fake_stenographer.go │ │ │ │ │ │ │ ├── stenographer.go │ │ │ │ │ │ │ └── support │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── go-colorable │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── colorable_others.go │ │ │ │ │ │ │ │ ├── colorable_windows.go │ │ │ │ │ │ │ │ └── noncolorable.go │ │ │ │ │ │ │ │ └── go-isatty │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── isatty_appengine.go │ │ │ │ │ │ │ │ ├── isatty_bsd.go │ │ │ │ │ │ │ │ ├── isatty_linux.go │ │ │ │ │ │ │ │ ├── isatty_solaris.go │ │ │ │ │ │ │ │ └── isatty_windows.go │ │ │ │ │ │ ├── teamcity_reporter.go │ │ │ │ │ │ └── teamcity_reporter_test.go │ │ │ │ │ └── types │ │ │ │ │ │ ├── code_location.go │ │ │ │ │ │ ├── synchronization.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── types_suite_test.go │ │ │ │ │ │ └── types_test.go │ │ │ │ └── gomega │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── format │ │ │ │ │ ├── format.go │ │ │ │ │ ├── format_suite_test.go │ │ │ │ │ └── format_test.go │ │ │ │ │ ├── gbytes │ │ │ │ │ ├── buffer.go │ │ │ │ │ ├── buffer_test.go │ │ │ │ │ ├── gbuffer_suite_test.go │ │ │ │ │ ├── io_wrappers.go │ │ │ │ │ ├── io_wrappers_test.go │ │ │ │ │ ├── say_matcher.go │ │ │ │ │ └── say_matcher_test.go │ │ │ │ │ ├── gexec │ │ │ │ │ ├── build.go │ │ │ │ │ ├── build_test.go │ │ │ │ │ ├── exit_matcher.go │ │ │ │ │ ├── exit_matcher_test.go │ │ │ │ │ ├── gexec_suite_test.go │ │ │ │ │ ├── prefixed_writer.go │ │ │ │ │ ├── prefixed_writer_test.go │ │ │ │ │ ├── session.go │ │ │ │ │ └── session_test.go │ │ │ │ │ ├── ghttp │ │ │ │ │ ├── handlers.go │ │ │ │ │ ├── test_server.go │ │ │ │ │ ├── test_server_suite_test.go │ │ │ │ │ └── test_server_test.go │ │ │ │ │ ├── gomega_dsl.go │ │ │ │ │ ├── internal │ │ │ │ │ ├── assertion │ │ │ │ │ │ ├── assertion.go │ │ │ │ │ │ ├── assertion_suite_test.go │ │ │ │ │ │ └── assertion_test.go │ │ │ │ │ ├── asyncassertion │ │ │ │ │ │ ├── async_assertion.go │ │ │ │ │ │ ├── async_assertion_suite_test.go │ │ │ │ │ │ └── async_assertion_test.go │ │ │ │ │ ├── oraclematcher │ │ │ │ │ │ └── oracle_matcher.go │ │ │ │ │ └── testingtsupport │ │ │ │ │ │ ├── testing_t_support.go │ │ │ │ │ │ └── testing_t_support_test.go │ │ │ │ │ ├── matchers.go │ │ │ │ │ ├── matchers │ │ │ │ │ ├── and.go │ │ │ │ │ ├── and_test.go │ │ │ │ │ ├── assignable_to_type_of_matcher.go │ │ │ │ │ ├── assignable_to_type_of_matcher_test.go │ │ │ │ │ ├── be_a_directory.go │ │ │ │ │ ├── be_a_directory_test.go │ │ │ │ │ ├── be_a_regular_file.go │ │ │ │ │ ├── be_a_regular_file_test.go │ │ │ │ │ ├── be_an_existing_file.go │ │ │ │ │ ├── be_an_existing_file_test.go │ │ │ │ │ ├── be_closed_matcher.go │ │ │ │ │ ├── be_closed_matcher_test.go │ │ │ │ │ ├── be_empty_matcher.go │ │ │ │ │ ├── be_empty_matcher_test.go │ │ │ │ │ ├── be_equivalent_to_matcher.go │ │ │ │ │ ├── be_equivalent_to_matcher_test.go │ │ │ │ │ ├── be_false_matcher.go │ │ │ │ │ ├── be_false_matcher_test.go │ │ │ │ │ ├── be_identical_to.go │ │ │ │ │ ├── be_identical_to_test.go │ │ │ │ │ ├── be_nil_matcher.go │ │ │ │ │ ├── be_nil_matcher_test.go │ │ │ │ │ ├── be_numerically_matcher.go │ │ │ │ │ ├── be_numerically_matcher_test.go │ │ │ │ │ ├── be_sent_matcher.go │ │ │ │ │ ├── be_sent_matcher_test.go │ │ │ │ │ ├── be_temporally_matcher.go │ │ │ │ │ ├── be_temporally_matcher_test.go │ │ │ │ │ ├── be_true_matcher.go │ │ │ │ │ ├── be_true_matcher_test.go │ │ │ │ │ ├── be_zero_matcher.go │ │ │ │ │ ├── be_zero_matcher_test.go │ │ │ │ │ ├── consist_of.go │ │ │ │ │ ├── consist_of_test.go │ │ │ │ │ ├── contain_element_matcher.go │ │ │ │ │ ├── contain_element_matcher_test.go │ │ │ │ │ ├── contain_substring_matcher.go │ │ │ │ │ ├── contain_substring_matcher_test.go │ │ │ │ │ ├── equal_matcher.go │ │ │ │ │ ├── equal_matcher_test.go │ │ │ │ │ ├── have_cap_matcher.go │ │ │ │ │ ├── have_cap_matcher_test.go │ │ │ │ │ ├── have_key_matcher.go │ │ │ │ │ ├── have_key_matcher_test.go │ │ │ │ │ ├── have_key_with_value_matcher.go │ │ │ │ │ ├── have_key_with_value_matcher_test.go │ │ │ │ │ ├── have_len_matcher.go │ │ │ │ │ ├── have_len_matcher_test.go │ │ │ │ │ ├── have_occurred_matcher.go │ │ │ │ │ ├── have_occurred_matcher_test.go │ │ │ │ │ ├── have_prefix_matcher.go │ │ │ │ │ ├── have_prefix_matcher_test.go │ │ │ │ │ ├── have_suffix_matcher.go │ │ │ │ │ ├── have_suffix_matcher_test.go │ │ │ │ │ ├── match_error_matcher.go │ │ │ │ │ ├── match_error_matcher_test.go │ │ │ │ │ ├── match_json_matcher.go │ │ │ │ │ ├── match_json_matcher_test.go │ │ │ │ │ ├── match_regexp_matcher.go │ │ │ │ │ ├── match_regexp_matcher_test.go │ │ │ │ │ ├── match_xml_matcher.go │ │ │ │ │ ├── match_xml_matcher_test.go │ │ │ │ │ ├── match_yaml_matcher.go │ │ │ │ │ ├── match_yaml_matcher_test.go │ │ │ │ │ ├── matcher_tests_suite_test.go │ │ │ │ │ ├── not.go │ │ │ │ │ ├── not_test.go │ │ │ │ │ ├── or.go │ │ │ │ │ ├── or_test.go │ │ │ │ │ ├── panic_matcher.go │ │ │ │ │ ├── panic_matcher_test.go │ │ │ │ │ ├── receive_matcher.go │ │ │ │ │ ├── receive_matcher_test.go │ │ │ │ │ ├── succeed_matcher.go │ │ │ │ │ ├── succeed_matcher_test.go │ │ │ │ │ ├── support │ │ │ │ │ │ └── goraph │ │ │ │ │ │ │ ├── MIT.LICENSE │ │ │ │ │ │ │ ├── bipartitegraph │ │ │ │ │ │ │ ├── bipartitegraph.go │ │ │ │ │ │ │ └── bipartitegraphmatching.go │ │ │ │ │ │ │ ├── edge │ │ │ │ │ │ │ └── edge.go │ │ │ │ │ │ │ ├── node │ │ │ │ │ │ │ └── node.go │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── util.go │ │ │ │ │ ├── type_support.go │ │ │ │ │ ├── with_transform.go │ │ │ │ │ └── with_transform_test.go │ │ │ │ │ └── types │ │ │ │ │ └── types.go │ │ │ ├── pivotal-cf │ │ │ │ └── paraphernalia │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── WORKSPACE │ │ │ │ │ └── secure │ │ │ │ │ └── tlsconfig │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── config.go │ │ │ │ │ ├── config_test.go │ │ │ │ │ └── tlsconfig_suite_test.go │ │ │ ├── pmezard │ │ │ │ └── go-difflib │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── difflib │ │ │ │ │ ├── difflib.go │ │ │ │ │ └── difflib_test.go │ │ │ └── stretchr │ │ │ │ └── testify │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENCE.txt │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── assert │ │ │ │ ├── assertion_forward.go │ │ │ │ ├── assertion_forward.go.tmpl │ │ │ │ ├── assertions.go │ │ │ │ ├── assertions_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── forward_assertions.go │ │ │ │ ├── forward_assertions_test.go │ │ │ │ ├── http_assertions.go │ │ │ │ └── http_assertions_test.go │ │ │ │ ├── doc.go │ │ │ │ └── package_test.go │ │ │ ├── golang.org │ │ │ └── x │ │ │ │ ├── crypto │ │ │ │ ├── .gitattributes │ │ │ │ ├── .gitignore │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── README.md │ │ │ │ ├── codereview.cfg │ │ │ │ ├── curve25519 │ │ │ │ │ ├── const_amd64.h │ │ │ │ │ ├── const_amd64.s │ │ │ │ │ ├── cswap_amd64.s │ │ │ │ │ ├── curve25519.go │ │ │ │ │ ├── curve25519_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── freeze_amd64.s │ │ │ │ │ ├── ladderstep_amd64.s │ │ │ │ │ ├── mont25519_amd64.go │ │ │ │ │ ├── mul_amd64.s │ │ │ │ │ └── square_amd64.s │ │ │ │ ├── ed25519 │ │ │ │ │ ├── ed25519.go │ │ │ │ │ ├── ed25519_test.go │ │ │ │ │ └── internal │ │ │ │ │ │ └── edwards25519 │ │ │ │ │ │ ├── const.go │ │ │ │ │ │ └── edwards25519.go │ │ │ │ └── ssh │ │ │ │ │ ├── benchmark_test.go │ │ │ │ │ ├── buffer.go │ │ │ │ │ ├── buffer_test.go │ │ │ │ │ ├── certs.go │ │ │ │ │ ├── certs_test.go │ │ │ │ │ ├── channel.go │ │ │ │ │ ├── cipher.go │ │ │ │ │ ├── cipher_test.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── client_auth.go │ │ │ │ │ ├── client_auth_test.go │ │ │ │ │ ├── client_test.go │ │ │ │ │ ├── common.go │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── handshake.go │ │ │ │ │ ├── handshake_test.go │ │ │ │ │ ├── kex.go │ │ │ │ │ ├── kex_test.go │ │ │ │ │ ├── keys.go │ │ │ │ │ ├── keys_test.go │ │ │ │ │ ├── mac.go │ │ │ │ │ ├── mempipe_test.go │ │ │ │ │ ├── messages.go │ │ │ │ │ ├── messages_test.go │ │ │ │ │ ├── mux.go │ │ │ │ │ ├── mux_test.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── session.go │ │ │ │ │ ├── session_test.go │ │ │ │ │ ├── streamlocal.go │ │ │ │ │ ├── tcpip.go │ │ │ │ │ ├── tcpip_test.go │ │ │ │ │ ├── testdata_test.go │ │ │ │ │ ├── transport.go │ │ │ │ │ └── transport_test.go │ │ │ │ ├── net │ │ │ │ ├── .gitattributes │ │ │ │ ├── .gitignore │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── README │ │ │ │ ├── codereview.cfg │ │ │ │ ├── context │ │ │ │ │ ├── context.go │ │ │ │ │ ├── context_test.go │ │ │ │ │ ├── go17.go │ │ │ │ │ ├── go19.go │ │ │ │ │ ├── pre_go17.go │ │ │ │ │ ├── pre_go19.go │ │ │ │ │ └── withtimeout_test.go │ │ │ │ ├── html │ │ │ │ │ ├── atom │ │ │ │ │ │ ├── atom.go │ │ │ │ │ │ ├── atom_test.go │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ ├── table.go │ │ │ │ │ │ └── table_test.go │ │ │ │ │ ├── charset │ │ │ │ │ │ ├── charset.go │ │ │ │ │ │ └── charset_test.go │ │ │ │ │ ├── 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 │ │ │ │ │ ├── token.go │ │ │ │ │ └── token_test.go │ │ │ │ └── proxy │ │ │ │ │ ├── direct.go │ │ │ │ │ ├── per_host.go │ │ │ │ │ ├── per_host_test.go │ │ │ │ │ ├── proxy.go │ │ │ │ │ ├── proxy_test.go │ │ │ │ │ └── socks5.go │ │ │ │ ├── sys │ │ │ │ ├── .gitattributes │ │ │ │ ├── .gitignore │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── README │ │ │ │ ├── codereview.cfg │ │ │ │ └── unix │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── asm_darwin_386.s │ │ │ │ │ ├── asm_darwin_amd64.s │ │ │ │ │ ├── asm_darwin_arm.s │ │ │ │ │ ├── asm_darwin_arm64.s │ │ │ │ │ ├── asm_dragonfly_amd64.s │ │ │ │ │ ├── asm_freebsd_386.s │ │ │ │ │ ├── asm_freebsd_amd64.s │ │ │ │ │ ├── asm_freebsd_arm.s │ │ │ │ │ ├── asm_linux_386.s │ │ │ │ │ ├── asm_linux_amd64.s │ │ │ │ │ ├── asm_linux_arm.s │ │ │ │ │ ├── asm_linux_arm64.s │ │ │ │ │ ├── asm_linux_mips64x.s │ │ │ │ │ ├── asm_linux_mipsx.s │ │ │ │ │ ├── asm_linux_ppc64x.s │ │ │ │ │ ├── asm_linux_s390x.s │ │ │ │ │ ├── asm_netbsd_386.s │ │ │ │ │ ├── asm_netbsd_amd64.s │ │ │ │ │ ├── asm_netbsd_arm.s │ │ │ │ │ ├── asm_openbsd_386.s │ │ │ │ │ ├── asm_openbsd_amd64.s │ │ │ │ │ ├── asm_openbsd_arm.s │ │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ │ ├── bluetooth_linux.go │ │ │ │ │ ├── cap_freebsd.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── creds_test.go │ │ │ │ │ ├── dev_darwin.go │ │ │ │ │ ├── dev_darwin_test.go │ │ │ │ │ ├── dev_dragonfly.go │ │ │ │ │ ├── dev_dragonfly_test.go │ │ │ │ │ ├── dev_freebsd.go │ │ │ │ │ ├── dev_linux.go │ │ │ │ │ ├── dev_linux_test.go │ │ │ │ │ ├── dev_netbsd.go │ │ │ │ │ ├── dev_netbsd_test.go │ │ │ │ │ ├── dirent.go │ │ │ │ │ ├── endian_big.go │ │ │ │ │ ├── endian_little.go │ │ │ │ │ ├── env_unix.go │ │ │ │ │ ├── env_unset.go │ │ │ │ │ ├── errors_freebsd_386.go │ │ │ │ │ ├── errors_freebsd_amd64.go │ │ │ │ │ ├── errors_freebsd_arm.go │ │ │ │ │ ├── export_test.go │ │ │ │ │ ├── file_unix.go │ │ │ │ │ ├── flock.go │ │ │ │ │ ├── flock_linux_32bit.go │ │ │ │ │ ├── gccgo.go │ │ │ │ │ ├── gccgo_c.c │ │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ │ ├── mkall.sh │ │ │ │ │ ├── mkerrors.sh │ │ │ │ │ ├── mkpost.go │ │ │ │ │ ├── mksyscall.pl │ │ │ │ │ ├── mksyscall_solaris.pl │ │ │ │ │ ├── mksysctl_openbsd.pl │ │ │ │ │ ├── mksysnum_darwin.pl │ │ │ │ │ ├── mksysnum_dragonfly.pl │ │ │ │ │ ├── mksysnum_freebsd.pl │ │ │ │ │ ├── mksysnum_netbsd.pl │ │ │ │ │ ├── mksysnum_openbsd.pl │ │ │ │ │ ├── mmap_unix_test.go │ │ │ │ │ ├── openbsd_pledge.go │ │ │ │ │ ├── openbsd_test.go │ │ │ │ │ ├── pagesize_unix.go │ │ │ │ │ ├── race.go │ │ │ │ │ ├── race0.go │ │ │ │ │ ├── sockcmsg_linux.go │ │ │ │ │ ├── sockcmsg_unix.go │ │ │ │ │ ├── str.go │ │ │ │ │ ├── syscall.go │ │ │ │ │ ├── syscall_bsd.go │ │ │ │ │ ├── syscall_bsd_test.go │ │ │ │ │ ├── syscall_darwin.go │ │ │ │ │ ├── syscall_darwin_386.go │ │ │ │ │ ├── syscall_darwin_amd64.go │ │ │ │ │ ├── syscall_darwin_arm.go │ │ │ │ │ ├── syscall_darwin_arm64.go │ │ │ │ │ ├── syscall_dragonfly.go │ │ │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ │ │ ├── syscall_freebsd.go │ │ │ │ │ ├── syscall_freebsd_386.go │ │ │ │ │ ├── syscall_freebsd_amd64.go │ │ │ │ │ ├── syscall_freebsd_arm.go │ │ │ │ │ ├── syscall_freebsd_test.go │ │ │ │ │ ├── syscall_linux.go │ │ │ │ │ ├── syscall_linux_386.go │ │ │ │ │ ├── syscall_linux_amd64.go │ │ │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ │ │ ├── syscall_linux_arm.go │ │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ │ ├── syscall_linux_mips64x.go │ │ │ │ │ ├── syscall_linux_mipsx.go │ │ │ │ │ ├── syscall_linux_ppc64x.go │ │ │ │ │ ├── syscall_linux_s390x.go │ │ │ │ │ ├── syscall_linux_sparc64.go │ │ │ │ │ ├── syscall_linux_test.go │ │ │ │ │ ├── syscall_netbsd.go │ │ │ │ │ ├── syscall_netbsd_386.go │ │ │ │ │ ├── syscall_netbsd_amd64.go │ │ │ │ │ ├── syscall_netbsd_arm.go │ │ │ │ │ ├── syscall_no_getwd.go │ │ │ │ │ ├── syscall_openbsd.go │ │ │ │ │ ├── syscall_openbsd_386.go │ │ │ │ │ ├── syscall_openbsd_amd64.go │ │ │ │ │ ├── syscall_openbsd_arm.go │ │ │ │ │ ├── syscall_solaris.go │ │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ │ ├── syscall_solaris_test.go │ │ │ │ │ ├── syscall_test.go │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ ├── syscall_unix_gc.go │ │ │ │ │ ├── syscall_unix_test.go │ │ │ │ │ ├── types_darwin.go │ │ │ │ │ ├── types_dragonfly.go │ │ │ │ │ ├── types_freebsd.go │ │ │ │ │ ├── types_netbsd.go │ │ │ │ │ ├── types_openbsd.go │ │ │ │ │ ├── types_solaris.go │ │ │ │ │ ├── zerrors_darwin_386.go │ │ │ │ │ ├── zerrors_darwin_amd64.go │ │ │ │ │ ├── zerrors_darwin_arm.go │ │ │ │ │ ├── zerrors_darwin_arm64.go │ │ │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ │ │ ├── zerrors_freebsd_386.go │ │ │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ │ │ ├── zerrors_freebsd_arm.go │ │ │ │ │ ├── zerrors_linux_386.go │ │ │ │ │ ├── zerrors_linux_amd64.go │ │ │ │ │ ├── zerrors_linux_arm.go │ │ │ │ │ ├── zerrors_linux_arm64.go │ │ │ │ │ ├── zerrors_linux_mips.go │ │ │ │ │ ├── zerrors_linux_mips64.go │ │ │ │ │ ├── zerrors_linux_mips64le.go │ │ │ │ │ ├── zerrors_linux_mipsle.go │ │ │ │ │ ├── zerrors_linux_ppc64.go │ │ │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ │ │ ├── zerrors_linux_s390x.go │ │ │ │ │ ├── zerrors_linux_sparc64.go │ │ │ │ │ ├── zerrors_netbsd_386.go │ │ │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ │ │ ├── zerrors_netbsd_arm.go │ │ │ │ │ ├── zerrors_openbsd_386.go │ │ │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ │ │ ├── zerrors_openbsd_arm.go │ │ │ │ │ ├── zerrors_solaris_amd64.go │ │ │ │ │ ├── zsyscall_darwin_386.go │ │ │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ │ │ ├── zsyscall_darwin_arm.go │ │ │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ │ │ ├── zsyscall_freebsd_386.go │ │ │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ │ │ ├── zsyscall_linux_386.go │ │ │ │ │ ├── zsyscall_linux_amd64.go │ │ │ │ │ ├── zsyscall_linux_arm.go │ │ │ │ │ ├── zsyscall_linux_arm64.go │ │ │ │ │ ├── zsyscall_linux_mips.go │ │ │ │ │ ├── zsyscall_linux_mips64.go │ │ │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ │ │ ├── zsyscall_linux_s390x.go │ │ │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ │ │ ├── zsyscall_netbsd_386.go │ │ │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ │ │ ├── zsyscall_openbsd_386.go │ │ │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ │ │ ├── zsysctl_openbsd.go │ │ │ │ │ ├── zsysnum_darwin_386.go │ │ │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ │ │ ├── zsysnum_darwin_arm.go │ │ │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ │ │ ├── zsysnum_freebsd_386.go │ │ │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ │ │ ├── zsysnum_linux_386.go │ │ │ │ │ ├── zsysnum_linux_amd64.go │ │ │ │ │ ├── zsysnum_linux_arm.go │ │ │ │ │ ├── zsysnum_linux_arm64.go │ │ │ │ │ ├── zsysnum_linux_mips.go │ │ │ │ │ ├── zsysnum_linux_mips64.go │ │ │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ │ │ ├── zsysnum_linux_s390x.go │ │ │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ │ │ ├── zsysnum_netbsd_386.go │ │ │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ │ │ ├── zsysnum_openbsd_386.go │ │ │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ │ │ ├── zsysnum_solaris_amd64.go │ │ │ │ │ ├── ztypes_darwin_386.go │ │ │ │ │ ├── ztypes_darwin_amd64.go │ │ │ │ │ ├── ztypes_darwin_arm.go │ │ │ │ │ ├── ztypes_darwin_arm64.go │ │ │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ │ │ ├── ztypes_freebsd_386.go │ │ │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ │ │ ├── ztypes_freebsd_arm.go │ │ │ │ │ ├── ztypes_linux_386.go │ │ │ │ │ ├── ztypes_linux_amd64.go │ │ │ │ │ ├── ztypes_linux_arm.go │ │ │ │ │ ├── ztypes_linux_arm64.go │ │ │ │ │ ├── ztypes_linux_mips.go │ │ │ │ │ ├── ztypes_linux_mips64.go │ │ │ │ │ ├── ztypes_linux_mips64le.go │ │ │ │ │ ├── ztypes_linux_mipsle.go │ │ │ │ │ ├── ztypes_linux_ppc64.go │ │ │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ │ │ ├── ztypes_linux_s390x.go │ │ │ │ │ ├── ztypes_linux_sparc64.go │ │ │ │ │ ├── ztypes_netbsd_386.go │ │ │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ │ │ ├── ztypes_netbsd_arm.go │ │ │ │ │ ├── ztypes_openbsd_386.go │ │ │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ │ │ ├── ztypes_openbsd_arm.go │ │ │ │ │ └── ztypes_solaris_amd64.go │ │ │ │ └── text │ │ │ │ ├── .gitattributes │ │ │ │ ├── .gitignore │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── README │ │ │ │ ├── codereview.cfg │ │ │ │ ├── doc.go │ │ │ │ ├── encoding │ │ │ │ ├── charmap │ │ │ │ │ ├── charmap.go │ │ │ │ │ ├── charmap_test.go │ │ │ │ │ ├── maketables.go │ │ │ │ │ └── tables.go │ │ │ │ ├── encoding.go │ │ │ │ ├── encoding_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── htmlindex │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── htmlindex.go │ │ │ │ │ ├── htmlindex_test.go │ │ │ │ │ ├── map.go │ │ │ │ │ └── tables.go │ │ │ │ ├── internal │ │ │ │ │ ├── identifier │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ ├── identifier.go │ │ │ │ │ │ └── mib.go │ │ │ │ │ └── internal.go │ │ │ │ ├── japanese │ │ │ │ │ ├── all.go │ │ │ │ │ ├── all_test.go │ │ │ │ │ ├── eucjp.go │ │ │ │ │ ├── iso2022jp.go │ │ │ │ │ ├── maketables.go │ │ │ │ │ ├── shiftjis.go │ │ │ │ │ └── tables.go │ │ │ │ ├── korean │ │ │ │ │ ├── all_test.go │ │ │ │ │ ├── euckr.go │ │ │ │ │ ├── maketables.go │ │ │ │ │ └── tables.go │ │ │ │ ├── simplifiedchinese │ │ │ │ │ ├── all.go │ │ │ │ │ ├── all_test.go │ │ │ │ │ ├── gbk.go │ │ │ │ │ ├── hzgb2312.go │ │ │ │ │ ├── maketables.go │ │ │ │ │ └── tables.go │ │ │ │ ├── traditionalchinese │ │ │ │ │ ├── all_test.go │ │ │ │ │ ├── big5.go │ │ │ │ │ ├── maketables.go │ │ │ │ │ └── tables.go │ │ │ │ └── unicode │ │ │ │ │ ├── override.go │ │ │ │ │ ├── unicode.go │ │ │ │ │ └── unicode_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── internal │ │ │ │ ├── gen.go │ │ │ │ ├── gen │ │ │ │ │ ├── code.go │ │ │ │ │ └── gen.go │ │ │ │ ├── gen_test.go │ │ │ │ ├── internal.go │ │ │ │ ├── internal_test.go │ │ │ │ ├── match.go │ │ │ │ ├── match_test.go │ │ │ │ ├── tables.go │ │ │ │ ├── tag │ │ │ │ │ ├── tag.go │ │ │ │ │ └── tag_test.go │ │ │ │ └── utf8internal │ │ │ │ │ └── utf8internal.go │ │ │ │ ├── language │ │ │ │ ├── Makefile │ │ │ │ ├── common.go │ │ │ │ ├── coverage.go │ │ │ │ ├── coverage_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── examples_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_common.go │ │ │ │ ├── gen_index.go │ │ │ │ ├── go1_1.go │ │ │ │ ├── go1_2.go │ │ │ │ ├── httpexample_test.go │ │ │ │ ├── index.go │ │ │ │ ├── language.go │ │ │ │ ├── language_test.go │ │ │ │ ├── lookup.go │ │ │ │ ├── lookup_test.go │ │ │ │ ├── match.go │ │ │ │ ├── match_test.go │ │ │ │ ├── parse.go │ │ │ │ ├── parse_test.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ │ ├── runes │ │ │ │ ├── cond.go │ │ │ │ ├── cond_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── runes.go │ │ │ │ └── runes_test.go │ │ │ │ ├── transform │ │ │ │ ├── examples_test.go │ │ │ │ ├── transform.go │ │ │ │ └── transform_test.go │ │ │ │ └── unicode │ │ │ │ ├── cldr │ │ │ │ ├── base.go │ │ │ │ ├── cldr.go │ │ │ │ ├── cldr_test.go │ │ │ │ ├── collate.go │ │ │ │ ├── collate_test.go │ │ │ │ ├── data_test.go │ │ │ │ ├── decode.go │ │ │ │ ├── examples_test.go │ │ │ │ ├── makexml.go │ │ │ │ ├── resolve.go │ │ │ │ ├── resolve_test.go │ │ │ │ ├── slice.go │ │ │ │ ├── slice_test.go │ │ │ │ └── xml.go │ │ │ │ └── doc.go │ │ │ └── gopkg.in │ │ │ └── yaml.v2 │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── LICENSE.libyaml │ │ │ ├── README.md │ │ │ ├── apic.go │ │ │ ├── decode.go │ │ │ ├── decode_test.go │ │ │ ├── emitterc.go │ │ │ ├── encode.go │ │ │ ├── encode_test.go │ │ │ ├── example_embedded_test.go │ │ │ ├── parserc.go │ │ │ ├── readerc.go │ │ │ ├── resolve.go │ │ │ ├── scannerc.go │ │ │ ├── sorter.go │ │ │ ├── suite_test.go │ │ │ ├── writerc.go │ │ │ ├── yaml.go │ │ │ ├── yamlh.go │ │ │ └── yamlprivateh.go │ ├── cppforlife │ │ ├── bosh-cpi-go │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── apiv1 │ │ │ │ ├── action_factory.go │ │ │ │ ├── agent_env.go │ │ │ │ ├── agent_env_factory.go │ │ │ │ ├── agent_env_factory_test.go │ │ │ │ ├── agent_env_test.go │ │ │ │ ├── agent_options.go │ │ │ │ ├── agent_options_test.go │ │ │ │ ├── apiv1fakes │ │ │ │ │ ├── fake_cpi.go │ │ │ │ │ └── fake_cpifactory.go │ │ │ │ ├── cloud_id.go │ │ │ │ ├── cloud_id_test.go │ │ │ │ ├── cloud_kvs.go │ │ │ │ ├── cloud_kvs_test.go │ │ │ │ ├── cloud_props.go │ │ │ │ ├── cloud_props_test.go │ │ │ │ ├── disks.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── networks.go │ │ │ │ ├── networks_test.go │ │ │ │ ├── snapshots.go │ │ │ │ ├── stemcells.go │ │ │ │ ├── suite_test.go │ │ │ │ ├── vm_cloud_props.go │ │ │ │ ├── vm_cloud_props_test.go │ │ │ │ └── vms.go │ │ │ ├── bin │ │ │ │ └── test │ │ │ ├── docs │ │ │ │ └── example.go │ │ │ └── rpc │ │ │ │ ├── cli.go │ │ │ │ ├── factory.go │ │ │ │ ├── factory_test.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── json_caller.go │ │ │ │ ├── json_caller_test.go │ │ │ │ ├── json_dispatcher.go │ │ │ │ ├── json_dispatcher_test.go │ │ │ │ ├── rpcfakes │ │ │ │ ├── fake_action_factory.go │ │ │ │ ├── fake_caller.go │ │ │ │ ├── fake_cloud_error.go │ │ │ │ └── fake_retryable_error.go │ │ │ │ └── suite_test.go │ │ └── bosh-kubernetes-cpi │ │ │ ├── bin │ │ │ ├── .gitignore │ │ │ ├── build │ │ │ ├── build-linux-amd64 │ │ │ └── test │ │ │ ├── cpi │ │ │ ├── disks.go │ │ │ ├── docker_client_factory.go │ │ │ ├── docker_client_opts.go │ │ │ ├── factory.go │ │ │ ├── factory_options.go │ │ │ ├── kube_client_factory.go │ │ │ ├── kube_client_opts.go │ │ │ ├── misc.go │ │ │ ├── registry_client_factory.go │ │ │ ├── registry_client_opts.go │ │ │ ├── stemcells.go │ │ │ └── vms.go │ │ │ ├── disk │ │ │ ├── disk.go │ │ │ ├── disk_ready.go │ │ │ ├── factory.go │ │ │ ├── interfaces.go │ │ │ └── props.go │ │ │ ├── integration │ │ │ ├── disks_test.go │ │ │ ├── lib_cpi_props_test.go │ │ │ ├── lib_cpi_test.go │ │ │ ├── lib_exec_test.go │ │ │ ├── lib_json_test.go │ │ │ ├── lib_kube_obj_test.go │ │ │ ├── misc_test.go │ │ │ ├── ns.yml │ │ │ ├── run.sh │ │ │ ├── stemcells_test.go │ │ │ ├── suite_test.go │ │ │ ├── testlib │ │ │ │ ├── cpi.go │ │ │ │ ├── marshal.go │ │ │ │ └── rpc.go │ │ │ ├── vm_disk_test.go │ │ │ ├── vm_networking_test.go │ │ │ ├── vm_node_ports_test.go │ │ │ └── vms_test.go │ │ │ ├── kube │ │ │ ├── client.go │ │ │ └── label.go │ │ │ ├── main │ │ │ ├── config.go │ │ │ └── main.go │ │ │ ├── pdbctrl │ │ │ ├── config.go │ │ │ ├── controller.go │ │ │ ├── director │ │ │ │ ├── config.go │ │ │ │ └── factory.go │ │ │ ├── instance_group.go │ │ │ ├── instance_group_factory.go │ │ │ └── main.go │ │ │ ├── stemcell │ │ │ ├── docker_image.go │ │ │ ├── docker_image_factory.go │ │ │ ├── err_image_factory.go │ │ │ ├── interfaces.go │ │ │ ├── mux_factory.go │ │ │ ├── props.go │ │ │ ├── ref_image.go │ │ │ ├── ref_image_factory.go │ │ │ ├── registry │ │ │ │ ├── README.md │ │ │ │ ├── fs_tgz_asset.go │ │ │ │ ├── named_asset.go │ │ │ │ ├── registry.go │ │ │ │ ├── single_image_store.go │ │ │ │ ├── single_layer_provider.go │ │ │ │ └── single_reference_store.go │ │ │ ├── registry_image.go │ │ │ ├── registry_image_factory.go │ │ │ └── registrymain │ │ │ │ └── main.go │ │ │ └── vm │ │ │ ├── affinity.go │ │ │ ├── factory.go │ │ │ ├── interfaces.go │ │ │ ├── network │ │ │ ├── cluster_ip.go │ │ │ ├── ingress.go │ │ │ ├── manual_network.go │ │ │ ├── networking.go │ │ │ ├── node_ports.go │ │ │ ├── props.go │ │ │ ├── service_kube_obj.go │ │ │ └── vip_network.go │ │ │ ├── props.go │ │ │ ├── vm.go │ │ │ ├── vm_agent.go │ │ │ ├── vm_disks.go │ │ │ ├── vm_ready.go │ │ │ └── vm_start.go │ ├── docker │ │ ├── distribution │ │ │ ├── .gitignore │ │ │ ├── .mailmap │ │ │ ├── AUTHORS │ │ │ ├── BUILDING.md │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── RELEASE-CHECKLIST.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 │ │ │ │ │ ├── plugins.bats │ │ │ │ │ ├── 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 │ │ │ ├── digestset │ │ │ │ ├── set.go │ │ │ │ └── set_test.go │ │ │ ├── doc.go │ │ │ ├── docs │ │ │ │ ├── README.md │ │ │ │ ├── architecture.md │ │ │ │ ├── configuration.md │ │ │ │ └── spec │ │ │ │ │ ├── api.md │ │ │ │ │ ├── api.md.tmpl │ │ │ │ │ ├── auth │ │ │ │ │ ├── index.md │ │ │ │ │ ├── jwt.md │ │ │ │ │ ├── oauth.md │ │ │ │ │ ├── scope.md │ │ │ │ │ └── token.md │ │ │ │ │ ├── images │ │ │ │ │ └── v2-registry-auth.png │ │ │ │ │ ├── implementations.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── json.md │ │ │ │ │ ├── manifest-v2-1.md │ │ │ │ │ ├── manifest-v2-2.md │ │ │ │ │ └── menu.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 │ │ │ │ ├── metrics_test.go │ │ │ │ ├── sinks.go │ │ │ │ └── sinks_test.go │ │ │ ├── project │ │ │ │ ├── dev-image │ │ │ │ │ └── Dockerfile │ │ │ │ └── hooks │ │ │ │ │ ├── README.md │ │ │ │ │ ├── configure-hooks.sh │ │ │ │ │ └── pre-commit │ │ │ ├── reference │ │ │ │ ├── helpers.go │ │ │ │ ├── normalize.go │ │ │ │ ├── normalize_test.go │ │ │ │ ├── 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 │ │ │ │ │ │ ├── headerparser.go │ │ │ │ │ │ ├── headerparser_test.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 │ │ │ │ │ │ ├── api_version.go │ │ │ │ │ │ ├── challenge │ │ │ │ │ │ │ ├── addr.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 │ │ │ │ │ ├── mail.go │ │ │ │ │ ├── manifests.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 │ │ │ │ │ ├── digester_resumable_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── driver │ │ │ │ │ ├── azure │ │ │ │ │ │ ├── azure.go │ │ │ │ │ │ └── azure_test.go │ │ │ │ │ ├── base │ │ │ │ │ │ ├── base.go │ │ │ │ │ │ ├── regulator.go │ │ │ │ │ │ └── regulator_test.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 │ │ │ │ │ ├── io.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 │ │ │ ├── vendor.conf │ │ │ └── version │ │ │ │ ├── print.go │ │ │ │ ├── version.go │ │ │ │ └── version.sh │ │ ├── docker │ │ │ ├── .DEREK.yml │ │ │ ├── .dockerignore │ │ │ ├── .github │ │ │ │ ├── CODEOWNERS │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── .mailmap │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.aarch64 │ │ │ ├── Dockerfile.armhf │ │ │ ├── Dockerfile.e2e │ │ │ ├── Dockerfile.ppc64le │ │ │ ├── Dockerfile.s390x │ │ │ ├── Dockerfile.simple │ │ │ ├── Dockerfile.windows │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── ROADMAP.md │ │ │ ├── TESTING.md │ │ │ ├── VENDORING.md │ │ │ ├── api │ │ │ │ ├── README.md │ │ │ │ ├── common.go │ │ │ │ ├── common_unix.go │ │ │ │ ├── common_windows.go │ │ │ │ ├── errdefs │ │ │ │ │ ├── defs.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── is.go │ │ │ │ ├── server │ │ │ │ │ ├── backend │ │ │ │ │ │ └── build │ │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ │ └── tag.go │ │ │ │ │ ├── httputils │ │ │ │ │ │ ├── decoder.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── form.go │ │ │ │ │ │ ├── form_test.go │ │ │ │ │ │ ├── httputils.go │ │ │ │ │ │ ├── httputils_test.go │ │ │ │ │ │ ├── httputils_write_json.go │ │ │ │ │ │ └── write_log_stream.go │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── middleware │ │ │ │ │ │ ├── cors.go │ │ │ │ │ │ ├── debug.go │ │ │ │ │ │ ├── debug_test.go │ │ │ │ │ │ ├── experimental.go │ │ │ │ │ │ ├── middleware.go │ │ │ │ │ │ ├── version.go │ │ │ │ │ │ └── version_test.go │ │ │ │ │ ├── router │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ │ └── build_routes.go │ │ │ │ │ │ ├── checkpoint │ │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ │ ├── checkpoint.go │ │ │ │ │ │ │ └── checkpoint_routes.go │ │ │ │ │ │ ├── container │ │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ │ ├── container.go │ │ │ │ │ │ │ ├── container_routes.go │ │ │ │ │ │ │ ├── copy.go │ │ │ │ │ │ │ ├── exec.go │ │ │ │ │ │ │ └── inspect.go │ │ │ │ │ │ ├── debug │ │ │ │ │ │ │ ├── debug.go │ │ │ │ │ │ │ └── debug_routes.go │ │ │ │ │ │ ├── distribution │ │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ │ ├── distribution.go │ │ │ │ │ │ │ └── distribution_routes.go │ │ │ │ │ │ ├── experimental.go │ │ │ │ │ │ ├── image │ │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ │ ├── image.go │ │ │ │ │ │ │ └── image_routes.go │ │ │ │ │ │ ├── local.go │ │ │ │ │ │ ├── network │ │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ │ ├── filter.go │ │ │ │ │ │ │ ├── filter_test.go │ │ │ │ │ │ │ ├── network.go │ │ │ │ │ │ │ └── network_routes.go │ │ │ │ │ │ ├── plugin │ │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ │ ├── plugin.go │ │ │ │ │ │ │ └── plugin_routes.go │ │ │ │ │ │ ├── router.go │ │ │ │ │ │ ├── session │ │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ │ ├── session.go │ │ │ │ │ │ │ └── session_routes.go │ │ │ │ │ │ ├── swarm │ │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ │ ├── cluster.go │ │ │ │ │ │ │ ├── cluster_routes.go │ │ │ │ │ │ │ └── helpers.go │ │ │ │ │ │ ├── system │ │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ │ ├── system.go │ │ │ │ │ │ │ └── system_routes.go │ │ │ │ │ │ └── volume │ │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ │ ├── volume.go │ │ │ │ │ │ │ └── volume_routes.go │ │ │ │ │ ├── router_swapper.go │ │ │ │ │ ├── server.go │ │ │ │ │ └── server_test.go │ │ │ │ ├── swagger-gen.yaml │ │ │ │ ├── swagger.yaml │ │ │ │ ├── templates │ │ │ │ │ └── server │ │ │ │ │ │ └── operation.gotmpl │ │ │ │ └── types │ │ │ │ │ ├── auth.go │ │ │ │ │ ├── backend │ │ │ │ │ ├── backend.go │ │ │ │ │ └── build.go │ │ │ │ │ ├── blkiodev │ │ │ │ │ └── blkio.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── configs.go │ │ │ │ │ ├── container │ │ │ │ │ ├── config.go │ │ │ │ │ ├── container_changes.go │ │ │ │ │ ├── container_create.go │ │ │ │ │ ├── container_top.go │ │ │ │ │ ├── container_update.go │ │ │ │ │ ├── container_wait.go │ │ │ │ │ ├── host_config.go │ │ │ │ │ ├── hostconfig_unix.go │ │ │ │ │ ├── hostconfig_windows.go │ │ │ │ │ └── waitcondition.go │ │ │ │ │ ├── error_response.go │ │ │ │ │ ├── events │ │ │ │ │ └── events.go │ │ │ │ │ ├── filters │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── parse.go │ │ │ │ │ └── parse_test.go │ │ │ │ │ ├── graph_driver_data.go │ │ │ │ │ ├── id_response.go │ │ │ │ │ ├── image │ │ │ │ │ └── image_history.go │ │ │ │ │ ├── image_delete_response_item.go │ │ │ │ │ ├── image_summary.go │ │ │ │ │ ├── mount │ │ │ │ │ └── mount.go │ │ │ │ │ ├── network │ │ │ │ │ └── network.go │ │ │ │ │ ├── plugin.go │ │ │ │ │ ├── plugin_device.go │ │ │ │ │ ├── plugin_env.go │ │ │ │ │ ├── plugin_interface_type.go │ │ │ │ │ ├── plugin_mount.go │ │ │ │ │ ├── plugin_responses.go │ │ │ │ │ ├── plugins │ │ │ │ │ └── logdriver │ │ │ │ │ │ ├── entry.pb.go │ │ │ │ │ │ ├── entry.proto │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ └── io.go │ │ │ │ │ ├── port.go │ │ │ │ │ ├── registry │ │ │ │ │ ├── authenticate.go │ │ │ │ │ └── registry.go │ │ │ │ │ ├── seccomp.go │ │ │ │ │ ├── service_update_response.go │ │ │ │ │ ├── stats.go │ │ │ │ │ ├── strslice │ │ │ │ │ ├── strslice.go │ │ │ │ │ └── strslice_test.go │ │ │ │ │ ├── swarm │ │ │ │ │ ├── common.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── container.go │ │ │ │ │ ├── network.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── runtime.go │ │ │ │ │ ├── runtime │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ ├── plugin.pb.go │ │ │ │ │ │ └── plugin.proto │ │ │ │ │ ├── secret.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── swarm.go │ │ │ │ │ └── task.go │ │ │ │ │ ├── time │ │ │ │ │ ├── duration_convert.go │ │ │ │ │ ├── duration_convert_test.go │ │ │ │ │ ├── timestamp.go │ │ │ │ │ └── timestamp_test.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── versions │ │ │ │ │ ├── README.md │ │ │ │ │ ├── compare.go │ │ │ │ │ ├── compare_test.go │ │ │ │ │ ├── v1p19 │ │ │ │ │ │ └── types.go │ │ │ │ │ └── v1p20 │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── volume.go │ │ │ │ │ └── volume │ │ │ │ │ ├── volumes_create.go │ │ │ │ │ └── volumes_list.go │ │ │ ├── builder │ │ │ │ ├── builder.go │ │ │ │ ├── dockerfile │ │ │ │ │ ├── buildargs.go │ │ │ │ │ ├── buildargs_test.go │ │ │ │ │ ├── builder.go │ │ │ │ │ ├── builder_test.go │ │ │ │ │ ├── builder_unix.go │ │ │ │ │ ├── builder_windows.go │ │ │ │ │ ├── clientsession.go │ │ │ │ │ ├── command │ │ │ │ │ │ └── command.go │ │ │ │ │ ├── containerbackend.go │ │ │ │ │ ├── copy.go │ │ │ │ │ ├── copy_test.go │ │ │ │ │ ├── copy_unix.go │ │ │ │ │ ├── copy_windows.go │ │ │ │ │ ├── dispatchers.go │ │ │ │ │ ├── dispatchers_test.go │ │ │ │ │ ├── dispatchers_unix.go │ │ │ │ │ ├── dispatchers_unix_test.go │ │ │ │ │ ├── dispatchers_windows.go │ │ │ │ │ ├── dispatchers_windows_test.go │ │ │ │ │ ├── envVarTest │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── evaluator.go │ │ │ │ │ ├── evaluator_test.go │ │ │ │ │ ├── imagecontext.go │ │ │ │ │ ├── imageprobe.go │ │ │ │ │ ├── instructions │ │ │ │ │ │ ├── bflag.go │ │ │ │ │ │ ├── bflag_test.go │ │ │ │ │ │ ├── commands.go │ │ │ │ │ │ ├── errors_unix.go │ │ │ │ │ │ ├── errors_windows.go │ │ │ │ │ │ ├── parse.go │ │ │ │ │ │ ├── parse_test.go │ │ │ │ │ │ ├── support.go │ │ │ │ │ │ └── support_test.go │ │ │ │ │ ├── internals.go │ │ │ │ │ ├── internals_test.go │ │ │ │ │ ├── internals_windows_test.go │ │ │ │ │ ├── metrics.go │ │ │ │ │ ├── mockbackend_test.go │ │ │ │ │ ├── parser │ │ │ │ │ │ ├── dumper │ │ │ │ │ │ │ └── main.go │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ ├── line_parsers.go │ │ │ │ │ │ ├── line_parsers_test.go │ │ │ │ │ │ ├── parser.go │ │ │ │ │ │ ├── parser_test.go │ │ │ │ │ │ ├── split_command.go │ │ │ │ │ │ ├── testfile-line │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── testfiles-negative │ │ │ │ │ │ │ ├── env_no_value │ │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ │ └── shykes-nested-json │ │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ └── testfiles │ │ │ │ │ │ │ ├── ADD-COPY-with-JSON │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── brimstone-consuldock │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── brimstone-docker-consul │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── continue-at-eof │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── continueIndent │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── cpuguy83-nagios │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── docker │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── env │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── escape-after-comment │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── escape-nonewline │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── escape │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── escapes │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── flags │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── health │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── influxdb │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── jeztah-invalid-json-json-inside-string-double │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── jeztah-invalid-json-json-inside-string │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── jeztah-invalid-json-single-quotes │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── jeztah-invalid-json-unterminated-bracket │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── jeztah-invalid-json-unterminated-string │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── json │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── kartar-entrypoint-oddities │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── lk4d4-the-edge-case-generator │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── mail │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── multiple-volumes │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── mumble │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── nginx │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── tf2 │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ ├── weechat │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ │ └── znc │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ ├── shell_parser.go │ │ │ │ │ ├── shell_parser_test.go │ │ │ │ │ ├── utils_test.go │ │ │ │ │ └── wordsTest │ │ │ │ ├── dockerignore │ │ │ │ │ ├── dockerignore.go │ │ │ │ │ └── dockerignore_test.go │ │ │ │ ├── fscache │ │ │ │ │ ├── fscache.go │ │ │ │ │ ├── fscache_test.go │ │ │ │ │ └── naivedriver.go │ │ │ │ └── remotecontext │ │ │ │ │ ├── archive.go │ │ │ │ │ ├── detect.go │ │ │ │ │ ├── detect_test.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── filehash.go │ │ │ │ │ ├── generate.go │ │ │ │ │ ├── git.go │ │ │ │ │ ├── git │ │ │ │ │ ├── gitutils.go │ │ │ │ │ └── gitutils_test.go │ │ │ │ │ ├── lazycontext.go │ │ │ │ │ ├── mimetype.go │ │ │ │ │ ├── mimetype_test.go │ │ │ │ │ ├── remote.go │ │ │ │ │ ├── remote_test.go │ │ │ │ │ ├── tarsum.go │ │ │ │ │ ├── tarsum.pb.go │ │ │ │ │ ├── tarsum.proto │ │ │ │ │ ├── tarsum_test.go │ │ │ │ │ └── utils_test.go │ │ │ ├── cli │ │ │ │ ├── cobra.go │ │ │ │ ├── config │ │ │ │ │ └── configdir.go │ │ │ │ ├── debug │ │ │ │ │ ├── debug.go │ │ │ │ │ └── debug_test.go │ │ │ │ ├── error.go │ │ │ │ └── required.go │ │ │ ├── client │ │ │ │ ├── README.md │ │ │ │ ├── build_prune.go │ │ │ │ ├── checkpoint_create.go │ │ │ │ ├── checkpoint_create_test.go │ │ │ │ ├── checkpoint_delete.go │ │ │ │ ├── checkpoint_delete_test.go │ │ │ │ ├── checkpoint_list.go │ │ │ │ ├── checkpoint_list_test.go │ │ │ │ ├── client.go │ │ │ │ ├── client_mock_test.go │ │ │ │ ├── client_test.go │ │ │ │ ├── client_unix.go │ │ │ │ ├── client_windows.go │ │ │ │ ├── config_create.go │ │ │ │ ├── config_create_test.go │ │ │ │ ├── config_inspect.go │ │ │ │ ├── config_inspect_test.go │ │ │ │ ├── config_list.go │ │ │ │ ├── config_list_test.go │ │ │ │ ├── config_remove.go │ │ │ │ ├── config_remove_test.go │ │ │ │ ├── config_update.go │ │ │ │ ├── config_update_test.go │ │ │ │ ├── container_attach.go │ │ │ │ ├── container_commit.go │ │ │ │ ├── container_commit_test.go │ │ │ │ ├── container_copy.go │ │ │ │ ├── container_copy_test.go │ │ │ │ ├── container_create.go │ │ │ │ ├── container_create_test.go │ │ │ │ ├── container_diff.go │ │ │ │ ├── container_diff_test.go │ │ │ │ ├── container_exec.go │ │ │ │ ├── container_exec_test.go │ │ │ │ ├── container_export.go │ │ │ │ ├── container_export_test.go │ │ │ │ ├── container_inspect.go │ │ │ │ ├── container_inspect_test.go │ │ │ │ ├── container_kill.go │ │ │ │ ├── container_kill_test.go │ │ │ │ ├── container_list.go │ │ │ │ ├── container_list_test.go │ │ │ │ ├── container_logs.go │ │ │ │ ├── container_logs_test.go │ │ │ │ ├── container_pause.go │ │ │ │ ├── container_pause_test.go │ │ │ │ ├── container_prune.go │ │ │ │ ├── container_prune_test.go │ │ │ │ ├── container_remove.go │ │ │ │ ├── container_remove_test.go │ │ │ │ ├── container_rename.go │ │ │ │ ├── container_rename_test.go │ │ │ │ ├── container_resize.go │ │ │ │ ├── container_resize_test.go │ │ │ │ ├── container_restart.go │ │ │ │ ├── container_restart_test.go │ │ │ │ ├── container_start.go │ │ │ │ ├── container_start_test.go │ │ │ │ ├── container_stats.go │ │ │ │ ├── container_stats_test.go │ │ │ │ ├── container_stop.go │ │ │ │ ├── container_stop_test.go │ │ │ │ ├── container_top.go │ │ │ │ ├── container_top_test.go │ │ │ │ ├── container_unpause.go │ │ │ │ ├── container_unpause_test.go │ │ │ │ ├── container_update.go │ │ │ │ ├── container_update_test.go │ │ │ │ ├── container_wait.go │ │ │ │ ├── container_wait_test.go │ │ │ │ ├── disk_usage.go │ │ │ │ ├── disk_usage_test.go │ │ │ │ ├── distribution_inspect.go │ │ │ │ ├── distribution_inspect_test.go │ │ │ │ ├── errors.go │ │ │ │ ├── events.go │ │ │ │ ├── events_test.go │ │ │ │ ├── hijack.go │ │ │ │ ├── image_build.go │ │ │ │ ├── image_build_test.go │ │ │ │ ├── image_create.go │ │ │ │ ├── image_create_test.go │ │ │ │ ├── image_history.go │ │ │ │ ├── image_history_test.go │ │ │ │ ├── image_import.go │ │ │ │ ├── image_import_test.go │ │ │ │ ├── image_inspect.go │ │ │ │ ├── image_inspect_test.go │ │ │ │ ├── image_list.go │ │ │ │ ├── image_list_test.go │ │ │ │ ├── image_load.go │ │ │ │ ├── image_load_test.go │ │ │ │ ├── image_prune.go │ │ │ │ ├── image_prune_test.go │ │ │ │ ├── image_pull.go │ │ │ │ ├── image_pull_test.go │ │ │ │ ├── image_push.go │ │ │ │ ├── image_push_test.go │ │ │ │ ├── image_remove.go │ │ │ │ ├── image_remove_test.go │ │ │ │ ├── image_save.go │ │ │ │ ├── image_save_test.go │ │ │ │ ├── image_search.go │ │ │ │ ├── image_search_test.go │ │ │ │ ├── image_tag.go │ │ │ │ ├── image_tag_test.go │ │ │ │ ├── info.go │ │ │ │ ├── info_test.go │ │ │ │ ├── interface.go │ │ │ │ ├── interface_experimental.go │ │ │ │ ├── interface_stable.go │ │ │ │ ├── login.go │ │ │ │ ├── network_connect.go │ │ │ │ ├── network_connect_test.go │ │ │ │ ├── network_create.go │ │ │ │ ├── network_create_test.go │ │ │ │ ├── network_disconnect.go │ │ │ │ ├── network_disconnect_test.go │ │ │ │ ├── network_inspect.go │ │ │ │ ├── network_inspect_test.go │ │ │ │ ├── network_list.go │ │ │ │ ├── network_list_test.go │ │ │ │ ├── network_prune.go │ │ │ │ ├── network_prune_test.go │ │ │ │ ├── network_remove.go │ │ │ │ ├── network_remove_test.go │ │ │ │ ├── node_inspect.go │ │ │ │ ├── node_inspect_test.go │ │ │ │ ├── node_list.go │ │ │ │ ├── node_list_test.go │ │ │ │ ├── node_remove.go │ │ │ │ ├── node_remove_test.go │ │ │ │ ├── node_update.go │ │ │ │ ├── node_update_test.go │ │ │ │ ├── ping.go │ │ │ │ ├── ping_test.go │ │ │ │ ├── plugin_create.go │ │ │ │ ├── plugin_disable.go │ │ │ │ ├── plugin_disable_test.go │ │ │ │ ├── plugin_enable.go │ │ │ │ ├── plugin_enable_test.go │ │ │ │ ├── plugin_inspect.go │ │ │ │ ├── plugin_inspect_test.go │ │ │ │ ├── plugin_install.go │ │ │ │ ├── plugin_list.go │ │ │ │ ├── plugin_list_test.go │ │ │ │ ├── plugin_push.go │ │ │ │ ├── plugin_push_test.go │ │ │ │ ├── plugin_remove.go │ │ │ │ ├── plugin_remove_test.go │ │ │ │ ├── plugin_set.go │ │ │ │ ├── plugin_set_test.go │ │ │ │ ├── plugin_upgrade.go │ │ │ │ ├── request.go │ │ │ │ ├── request_test.go │ │ │ │ ├── secret_create.go │ │ │ │ ├── secret_create_test.go │ │ │ │ ├── secret_inspect.go │ │ │ │ ├── secret_inspect_test.go │ │ │ │ ├── secret_list.go │ │ │ │ ├── secret_list_test.go │ │ │ │ ├── secret_remove.go │ │ │ │ ├── secret_remove_test.go │ │ │ │ ├── secret_update.go │ │ │ │ ├── secret_update_test.go │ │ │ │ ├── service_create.go │ │ │ │ ├── service_create_test.go │ │ │ │ ├── service_inspect.go │ │ │ │ ├── service_inspect_test.go │ │ │ │ ├── service_list.go │ │ │ │ ├── service_list_test.go │ │ │ │ ├── service_logs.go │ │ │ │ ├── service_logs_test.go │ │ │ │ ├── service_remove.go │ │ │ │ ├── service_remove_test.go │ │ │ │ ├── service_update.go │ │ │ │ ├── service_update_test.go │ │ │ │ ├── session.go │ │ │ │ ├── swarm_get_unlock_key.go │ │ │ │ ├── swarm_get_unlock_key_test.go │ │ │ │ ├── swarm_init.go │ │ │ │ ├── swarm_init_test.go │ │ │ │ ├── swarm_inspect.go │ │ │ │ ├── swarm_inspect_test.go │ │ │ │ ├── swarm_join.go │ │ │ │ ├── swarm_join_test.go │ │ │ │ ├── swarm_leave.go │ │ │ │ ├── swarm_leave_test.go │ │ │ │ ├── swarm_unlock.go │ │ │ │ ├── swarm_unlock_test.go │ │ │ │ ├── swarm_update.go │ │ │ │ ├── swarm_update_test.go │ │ │ │ ├── task_inspect.go │ │ │ │ ├── task_inspect_test.go │ │ │ │ ├── task_list.go │ │ │ │ ├── task_list_test.go │ │ │ │ ├── task_logs.go │ │ │ │ ├── testdata │ │ │ │ │ ├── ca.pem │ │ │ │ │ ├── cert.pem │ │ │ │ │ └── key.pem │ │ │ │ ├── tlsconfig_clone.go │ │ │ │ ├── tlsconfig_clone_go17.go │ │ │ │ ├── transport.go │ │ │ │ ├── utils.go │ │ │ │ ├── version.go │ │ │ │ ├── volume_create.go │ │ │ │ ├── volume_create_test.go │ │ │ │ ├── volume_inspect.go │ │ │ │ ├── volume_inspect_test.go │ │ │ │ ├── volume_list.go │ │ │ │ ├── volume_list_test.go │ │ │ │ ├── volume_prune.go │ │ │ │ ├── volume_remove.go │ │ │ │ └── volume_remove_test.go │ │ │ ├── cmd │ │ │ │ └── dockerd │ │ │ │ │ ├── README.md │ │ │ │ │ ├── config.go │ │ │ │ │ ├── config_common_unix.go │ │ │ │ │ ├── config_unix.go │ │ │ │ │ ├── config_unix_test.go │ │ │ │ │ ├── config_windows.go │ │ │ │ │ ├── daemon.go │ │ │ │ │ ├── daemon_freebsd.go │ │ │ │ │ ├── daemon_linux.go │ │ │ │ │ ├── daemon_test.go │ │ │ │ │ ├── daemon_unix.go │ │ │ │ │ ├── daemon_unix_test.go │ │ │ │ │ ├── daemon_windows.go │ │ │ │ │ ├── docker.go │ │ │ │ │ ├── docker_windows.go │ │ │ │ │ ├── hack │ │ │ │ │ ├── malformed_host_override.go │ │ │ │ │ └── malformed_host_override_test.go │ │ │ │ │ ├── metrics.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── options_test.go │ │ │ │ │ ├── service_unsupported.go │ │ │ │ │ └── service_windows.go │ │ │ ├── container │ │ │ │ ├── archive.go │ │ │ │ ├── container.go │ │ │ │ ├── container_linux.go │ │ │ │ ├── container_notlinux.go │ │ │ │ ├── container_unit_test.go │ │ │ │ ├── container_unix.go │ │ │ │ ├── container_windows.go │ │ │ │ ├── env.go │ │ │ │ ├── env_test.go │ │ │ │ ├── health.go │ │ │ │ ├── history.go │ │ │ │ ├── memory_store.go │ │ │ │ ├── memory_store_test.go │ │ │ │ ├── monitor.go │ │ │ │ ├── mounts_unix.go │ │ │ │ ├── mounts_windows.go │ │ │ │ ├── state.go │ │ │ │ ├── state_test.go │ │ │ │ ├── store.go │ │ │ │ ├── stream │ │ │ │ │ ├── attach.go │ │ │ │ │ └── streams.go │ │ │ │ ├── view.go │ │ │ │ └── view_test.go │ │ │ ├── contrib │ │ │ │ ├── README.md │ │ │ │ ├── REVIEWERS │ │ │ │ ├── apparmor │ │ │ │ │ ├── main.go │ │ │ │ │ └── template.go │ │ │ │ ├── builder │ │ │ │ │ ├── deb │ │ │ │ │ │ ├── aarch64 │ │ │ │ │ │ │ ├── build.sh │ │ │ │ │ │ │ ├── debian-jessie │ │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ │ ├── debian-stretch │ │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ │ ├── ubuntu-trusty │ │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ │ └── ubuntu-xenial │ │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── amd64 │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── build.sh │ │ │ │ │ │ │ ├── debian-jessie │ │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ │ ├── debian-stretch │ │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ │ ├── debian-wheezy │ │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ │ ├── ubuntu-trusty │ │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ │ ├── ubuntu-xenial │ │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ │ ├── ubuntu-yakkety │ │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ │ └── ubuntu-zesty │ │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── armhf │ │ │ │ │ │ │ ├── debian-jessie │ │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ │ ├── raspbian-jessie │ │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ │ ├── ubuntu-trusty │ │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ │ ├── ubuntu-xenial │ │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ │ └── ubuntu-yakkety │ │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── ppc64le │ │ │ │ │ │ │ ├── build.sh │ │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ │ ├── ubuntu-trusty │ │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ │ ├── ubuntu-xenial │ │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ │ └── ubuntu-yakkety │ │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ └── s390x │ │ │ │ │ │ │ ├── build.sh │ │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ │ ├── ubuntu-xenial │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ │ └── ubuntu-yakkety │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ └── rpm │ │ │ │ │ │ ├── amd64 │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── amazonlinux-latest │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── build.sh │ │ │ │ │ │ ├── centos-7 │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── fedora-24 │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── fedora-25 │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ ├── opensuse-13.2 │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── oraclelinux-6 │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── oraclelinux-7 │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ └── photon-1.0 │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── armhf │ │ │ │ │ │ ├── build.sh │ │ │ │ │ │ ├── centos-7 │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ └── generate.sh │ │ │ │ │ │ ├── ppc64le │ │ │ │ │ │ ├── build.sh │ │ │ │ │ │ ├── centos-7 │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── fedora-24 │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ └── opensuse-42.1 │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ └── s390x │ │ │ │ │ │ ├── build.sh │ │ │ │ │ │ ├── clefos-base-s390x-7 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ └── opensuse-tumbleweed-1 │ │ │ │ │ │ └── Dockerfile │ │ │ │ ├── check-config.sh │ │ │ │ ├── desktop-integration │ │ │ │ │ ├── README.md │ │ │ │ │ ├── chromium │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ └── gparted │ │ │ │ │ │ └── Dockerfile │ │ │ │ ├── docker-device-tool │ │ │ │ │ ├── README.md │ │ │ │ │ ├── device_tool.go │ │ │ │ │ └── device_tool_windows.go │ │ │ │ ├── docker-machine-install-bundle.sh │ │ │ │ ├── dockerize-disk.sh │ │ │ │ ├── download-frozen-image-v1.sh │ │ │ │ ├── download-frozen-image-v2.sh │ │ │ │ ├── editorconfig │ │ │ │ ├── gitdm │ │ │ │ │ ├── aliases │ │ │ │ │ ├── domain-map │ │ │ │ │ ├── generate_aliases.sh │ │ │ │ │ └── gitdm.config │ │ │ │ ├── httpserver │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── server.go │ │ │ │ ├── init │ │ │ │ │ ├── openrc │ │ │ │ │ │ ├── docker.confd │ │ │ │ │ │ └── docker.initd │ │ │ │ │ ├── systemd │ │ │ │ │ │ ├── REVIEWERS │ │ │ │ │ │ ├── docker.service │ │ │ │ │ │ ├── docker.service.rpm │ │ │ │ │ │ └── docker.socket │ │ │ │ │ ├── sysvinit-debian │ │ │ │ │ │ ├── docker │ │ │ │ │ │ └── docker.default │ │ │ │ │ ├── sysvinit-redhat │ │ │ │ │ │ ├── docker │ │ │ │ │ │ └── docker.sysconfig │ │ │ │ │ └── upstart │ │ │ │ │ │ ├── REVIEWERS │ │ │ │ │ │ └── docker.conf │ │ │ │ ├── mac-install-bundle.sh │ │ │ │ ├── mkimage-alpine.sh │ │ │ │ ├── mkimage-arch-pacman.conf │ │ │ │ ├── mkimage-arch.sh │ │ │ │ ├── mkimage-archarm-pacman.conf │ │ │ │ ├── mkimage-crux.sh │ │ │ │ ├── mkimage-pld.sh │ │ │ │ ├── mkimage-yum.sh │ │ │ │ ├── mkimage.sh │ │ │ │ ├── mkimage │ │ │ │ │ ├── .febootstrap-minimize │ │ │ │ │ ├── busybox-static │ │ │ │ │ ├── debootstrap │ │ │ │ │ ├── mageia-urpmi │ │ │ │ │ └── rinse │ │ │ │ ├── nnp-test │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── nnp-test.c │ │ │ │ ├── nuke-graph-directory.sh │ │ │ │ ├── project-stats.sh │ │ │ │ ├── report-issue.sh │ │ │ │ ├── reprepro │ │ │ │ │ └── suites.sh │ │ │ │ ├── selinux-fedora-24 │ │ │ │ │ └── docker-engine-selinux │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── docker.fc │ │ │ │ │ │ ├── docker.if │ │ │ │ │ │ └── docker.te │ │ │ │ ├── selinux-oraclelinux-7 │ │ │ │ │ └── docker-engine-selinux │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── docker.fc │ │ │ │ │ │ ├── docker.if │ │ │ │ │ │ ├── docker.te │ │ │ │ │ │ └── docker_selinux.8.gz │ │ │ │ ├── syntax │ │ │ │ │ ├── nano │ │ │ │ │ │ ├── Dockerfile.nanorc │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── textmate │ │ │ │ │ │ ├── Docker.tmbundle │ │ │ │ │ │ │ ├── Preferences │ │ │ │ │ │ │ │ └── Dockerfile.tmPreferences │ │ │ │ │ │ │ ├── Syntaxes │ │ │ │ │ │ │ │ └── Dockerfile.tmLanguage │ │ │ │ │ │ │ └── info.plist │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── REVIEWERS │ │ │ │ │ └── vim │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── doc │ │ │ │ │ │ └── dockerfile.txt │ │ │ │ │ │ ├── ftdetect │ │ │ │ │ │ └── dockerfile.vim │ │ │ │ │ │ └── syntax │ │ │ │ │ │ └── dockerfile.vim │ │ │ │ ├── syscall-test │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── acct.c │ │ │ │ │ ├── exit32.s │ │ │ │ │ ├── ns.c │ │ │ │ │ ├── raw.c │ │ │ │ │ ├── setgid.c │ │ │ │ │ ├── setuid.c │ │ │ │ │ ├── socket.c │ │ │ │ │ └── userns.c │ │ │ │ ├── udev │ │ │ │ │ └── 80-docker.rules │ │ │ │ └── vagrant-docker │ │ │ │ │ └── README.md │ │ │ ├── daemon │ │ │ │ ├── apparmor_default.go │ │ │ │ ├── apparmor_default_unsupported.go │ │ │ │ ├── archive.go │ │ │ │ ├── archive_tarcopyoptions.go │ │ │ │ ├── archive_tarcopyoptions_unix.go │ │ │ │ ├── archive_tarcopyoptions_windows.go │ │ │ │ ├── archive_unix.go │ │ │ │ ├── archive_windows.go │ │ │ │ ├── attach.go │ │ │ │ ├── auth.go │ │ │ │ ├── bindmount_unix.go │ │ │ │ ├── build.go │ │ │ │ ├── cache.go │ │ │ │ ├── caps │ │ │ │ │ └── utils_unix.go │ │ │ │ ├── changes.go │ │ │ │ ├── checkpoint.go │ │ │ │ ├── cluster.go │ │ │ │ ├── cluster │ │ │ │ │ ├── cluster.go │ │ │ │ │ ├── configs.go │ │ │ │ │ ├── controllers │ │ │ │ │ │ └── plugin │ │ │ │ │ │ │ ├── controller.go │ │ │ │ │ │ │ └── controller_test.go │ │ │ │ │ ├── convert │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ ├── container.go │ │ │ │ │ │ ├── network.go │ │ │ │ │ │ ├── node.go │ │ │ │ │ │ ├── secret.go │ │ │ │ │ │ ├── service.go │ │ │ │ │ │ ├── service_test.go │ │ │ │ │ │ ├── swarm.go │ │ │ │ │ │ └── task.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── executor │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ └── container │ │ │ │ │ │ │ ├── adapter.go │ │ │ │ │ │ │ ├── attachment.go │ │ │ │ │ │ │ ├── container.go │ │ │ │ │ │ │ ├── container_test.go │ │ │ │ │ │ │ ├── controller.go │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ ├── executor.go │ │ │ │ │ │ │ ├── health_test.go │ │ │ │ │ │ │ ├── validate.go │ │ │ │ │ │ │ ├── validate_test.go │ │ │ │ │ │ │ ├── validate_unix_test.go │ │ │ │ │ │ │ └── validate_windows_test.go │ │ │ │ │ ├── filters.go │ │ │ │ │ ├── filters_test.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── listen_addr.go │ │ │ │ │ ├── listen_addr_linux.go │ │ │ │ │ ├── listen_addr_others.go │ │ │ │ │ ├── networks.go │ │ │ │ │ ├── noderunner.go │ │ │ │ │ ├── nodes.go │ │ │ │ │ ├── provider │ │ │ │ │ │ └── network.go │ │ │ │ │ ├── secrets.go │ │ │ │ │ ├── services.go │ │ │ │ │ ├── swarm.go │ │ │ │ │ ├── tasks.go │ │ │ │ │ └── utils.go │ │ │ │ ├── commit.go │ │ │ │ ├── config │ │ │ │ │ ├── config.go │ │ │ │ │ ├── config_common_unix.go │ │ │ │ │ ├── config_common_unix_test.go │ │ │ │ │ ├── config_test.go │ │ │ │ │ ├── config_unix.go │ │ │ │ │ ├── config_unix_test.go │ │ │ │ │ ├── config_windows.go │ │ │ │ │ ├── config_windows_test.go │ │ │ │ │ └── opts.go │ │ │ │ ├── configs.go │ │ │ │ ├── configs_linux.go │ │ │ │ ├── configs_unsupported.go │ │ │ │ ├── configs_windows.go │ │ │ │ ├── container.go │ │ │ │ ├── container_linux.go │ │ │ │ ├── container_operations.go │ │ │ │ ├── container_operations_unix.go │ │ │ │ ├── container_operations_windows.go │ │ │ │ ├── container_windows.go │ │ │ │ ├── create.go │ │ │ │ ├── create_unix.go │ │ │ │ ├── create_windows.go │ │ │ │ ├── daemon.go │ │ │ │ ├── daemon_linux.go │ │ │ │ ├── daemon_linux_test.go │ │ │ │ ├── daemon_test.go │ │ │ │ ├── daemon_unix.go │ │ │ │ ├── daemon_unix_test.go │ │ │ │ ├── daemon_unsupported.go │ │ │ │ ├── daemon_windows.go │ │ │ │ ├── daemon_windows_test.go │ │ │ │ ├── debugtrap_unix.go │ │ │ │ ├── debugtrap_unsupported.go │ │ │ │ ├── debugtrap_windows.go │ │ │ │ ├── delete.go │ │ │ │ ├── delete_test.go │ │ │ │ ├── dependency.go │ │ │ │ ├── discovery │ │ │ │ │ ├── discovery.go │ │ │ │ │ └── discovery_test.go │ │ │ │ ├── disk_usage.go │ │ │ │ ├── errors.go │ │ │ │ ├── events.go │ │ │ │ ├── events │ │ │ │ │ ├── events.go │ │ │ │ │ ├── events_test.go │ │ │ │ │ ├── filter.go │ │ │ │ │ ├── metrics.go │ │ │ │ │ └── testutils │ │ │ │ │ │ └── testutils.go │ │ │ │ ├── events_test.go │ │ │ │ ├── exec.go │ │ │ │ ├── exec │ │ │ │ │ └── exec.go │ │ │ │ ├── exec_linux.go │ │ │ │ ├── exec_windows.go │ │ │ │ ├── export.go │ │ │ │ ├── getsize_unix.go │ │ │ │ ├── graphdriver │ │ │ │ │ ├── aufs │ │ │ │ │ │ ├── aufs.go │ │ │ │ │ │ ├── aufs_test.go │ │ │ │ │ │ ├── dirs.go │ │ │ │ │ │ ├── mount.go │ │ │ │ │ │ ├── mount_linux.go │ │ │ │ │ │ └── mount_unsupported.go │ │ │ │ │ ├── btrfs │ │ │ │ │ │ ├── btrfs.go │ │ │ │ │ │ ├── btrfs_test.go │ │ │ │ │ │ ├── dummy_unsupported.go │ │ │ │ │ │ ├── version.go │ │ │ │ │ │ ├── version_none.go │ │ │ │ │ │ └── version_test.go │ │ │ │ │ ├── copy │ │ │ │ │ │ ├── copy.go │ │ │ │ │ │ └── copy_test.go │ │ │ │ │ ├── counter.go │ │ │ │ │ ├── devmapper │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── device_setup.go │ │ │ │ │ │ ├── deviceset.go │ │ │ │ │ │ ├── devmapper_doc.go │ │ │ │ │ │ ├── devmapper_test.go │ │ │ │ │ │ ├── driver.go │ │ │ │ │ │ └── mount.go │ │ │ │ │ ├── driver.go │ │ │ │ │ ├── driver_freebsd.go │ │ │ │ │ ├── driver_linux.go │ │ │ │ │ ├── driver_test.go │ │ │ │ │ ├── driver_unsupported.go │ │ │ │ │ ├── driver_windows.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── fsdiff.go │ │ │ │ │ ├── graphtest │ │ │ │ │ │ ├── graphbench_unix.go │ │ │ │ │ │ ├── graphtest_unix.go │ │ │ │ │ │ ├── graphtest_windows.go │ │ │ │ │ │ ├── testutil.go │ │ │ │ │ │ └── testutil_unix.go │ │ │ │ │ ├── lcow │ │ │ │ │ │ ├── lcow.go │ │ │ │ │ │ ├── lcow_svm.go │ │ │ │ │ │ ├── remotefs.go │ │ │ │ │ │ ├── remotefs_file.go │ │ │ │ │ │ ├── remotefs_filedriver.go │ │ │ │ │ │ └── remotefs_pathdriver.go │ │ │ │ │ ├── overlay │ │ │ │ │ │ ├── overlay.go │ │ │ │ │ │ ├── overlay_test.go │ │ │ │ │ │ └── overlay_unsupported.go │ │ │ │ │ ├── overlay2 │ │ │ │ │ │ ├── check.go │ │ │ │ │ │ ├── mount.go │ │ │ │ │ │ ├── overlay.go │ │ │ │ │ │ ├── overlay_test.go │ │ │ │ │ │ ├── overlay_unsupported.go │ │ │ │ │ │ └── randomid.go │ │ │ │ │ ├── overlayutils │ │ │ │ │ │ └── overlayutils.go │ │ │ │ │ ├── plugin.go │ │ │ │ │ ├── proxy.go │ │ │ │ │ ├── quota │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── projectquota.go │ │ │ │ │ │ └── projectquota_test.go │ │ │ │ │ ├── register │ │ │ │ │ │ ├── register_aufs.go │ │ │ │ │ │ ├── register_btrfs.go │ │ │ │ │ │ ├── register_devicemapper.go │ │ │ │ │ │ ├── register_overlay.go │ │ │ │ │ │ ├── register_overlay2.go │ │ │ │ │ │ ├── register_vfs.go │ │ │ │ │ │ ├── register_windows.go │ │ │ │ │ │ └── register_zfs.go │ │ │ │ │ ├── vfs │ │ │ │ │ │ ├── copy_linux.go │ │ │ │ │ │ ├── copy_unsupported.go │ │ │ │ │ │ ├── driver.go │ │ │ │ │ │ ├── quota_linux.go │ │ │ │ │ │ ├── quota_unsupported.go │ │ │ │ │ │ └── vfs_test.go │ │ │ │ │ ├── windows │ │ │ │ │ │ └── windows.go │ │ │ │ │ └── zfs │ │ │ │ │ │ ├── MAINTAINERS │ │ │ │ │ │ ├── zfs.go │ │ │ │ │ │ ├── zfs_freebsd.go │ │ │ │ │ │ ├── zfs_linux.go │ │ │ │ │ │ ├── zfs_test.go │ │ │ │ │ │ └── zfs_unsupported.go │ │ │ │ ├── health.go │ │ │ │ ├── health_test.go │ │ │ │ ├── image.go │ │ │ │ ├── image_delete.go │ │ │ │ ├── image_exporter.go │ │ │ │ ├── image_history.go │ │ │ │ ├── image_inspect.go │ │ │ │ ├── image_pull.go │ │ │ │ ├── image_push.go │ │ │ │ ├── image_tag.go │ │ │ │ ├── images.go │ │ │ │ ├── import.go │ │ │ │ ├── info.go │ │ │ │ ├── info_unix.go │ │ │ │ ├── info_unix_test.go │ │ │ │ ├── info_windows.go │ │ │ │ ├── initlayer │ │ │ │ │ ├── setup_unix.go │ │ │ │ │ └── setup_windows.go │ │ │ │ ├── inspect.go │ │ │ │ ├── inspect_linux.go │ │ │ │ ├── inspect_windows.go │ │ │ │ ├── keys.go │ │ │ │ ├── keys_unsupported.go │ │ │ │ ├── kill.go │ │ │ │ ├── links.go │ │ │ │ ├── links │ │ │ │ │ ├── links.go │ │ │ │ │ └── links_test.go │ │ │ │ ├── list.go │ │ │ │ ├── list_unix.go │ │ │ │ ├── list_windows.go │ │ │ │ ├── listeners │ │ │ │ │ ├── group_unix.go │ │ │ │ │ ├── listeners_linux.go │ │ │ │ │ └── listeners_windows.go │ │ │ │ ├── logdrivers_linux.go │ │ │ │ ├── logdrivers_windows.go │ │ │ │ ├── logger │ │ │ │ │ ├── adapter.go │ │ │ │ │ ├── adapter_test.go │ │ │ │ │ ├── awslogs │ │ │ │ │ │ ├── cloudwatchlogs.go │ │ │ │ │ │ ├── cloudwatchlogs_test.go │ │ │ │ │ │ └── cwlogsiface_mock_test.go │ │ │ │ │ ├── copier.go │ │ │ │ │ ├── copier_test.go │ │ │ │ │ ├── etwlogs │ │ │ │ │ │ └── etwlogs_windows.go │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── fluentd │ │ │ │ │ │ └── fluentd.go │ │ │ │ │ ├── gcplogs │ │ │ │ │ │ ├── gcplogging.go │ │ │ │ │ │ ├── gcplogging_linux.go │ │ │ │ │ │ └── gcplogging_others.go │ │ │ │ │ ├── gelf │ │ │ │ │ │ ├── gelf.go │ │ │ │ │ │ └── gelf_test.go │ │ │ │ │ ├── journald │ │ │ │ │ │ ├── journald.go │ │ │ │ │ │ ├── journald_test.go │ │ │ │ │ │ ├── journald_unsupported.go │ │ │ │ │ │ ├── read.go │ │ │ │ │ │ ├── read_native.go │ │ │ │ │ │ ├── read_native_compat.go │ │ │ │ │ │ └── read_unsupported.go │ │ │ │ │ ├── jsonfilelog │ │ │ │ │ │ ├── jsonfilelog.go │ │ │ │ │ │ ├── jsonfilelog_test.go │ │ │ │ │ │ ├── jsonlog │ │ │ │ │ │ │ ├── jsonlog.go │ │ │ │ │ │ │ ├── jsonlogbytes.go │ │ │ │ │ │ │ ├── jsonlogbytes_test.go │ │ │ │ │ │ │ ├── time_marshalling.go │ │ │ │ │ │ │ └── time_marshalling_test.go │ │ │ │ │ │ ├── read.go │ │ │ │ │ │ └── read_test.go │ │ │ │ │ ├── logentries │ │ │ │ │ │ └── logentries.go │ │ │ │ │ ├── logger.go │ │ │ │ │ ├── logger_test.go │ │ │ │ │ ├── loggerutils │ │ │ │ │ │ ├── log_tag.go │ │ │ │ │ │ ├── log_tag_test.go │ │ │ │ │ │ ├── logfile.go │ │ │ │ │ │ └── multireader │ │ │ │ │ │ │ ├── multireader.go │ │ │ │ │ │ │ └── multireader_test.go │ │ │ │ │ ├── loginfo.go │ │ │ │ │ ├── plugin.go │ │ │ │ │ ├── plugin_unix.go │ │ │ │ │ ├── plugin_unsupported.go │ │ │ │ │ ├── proxy.go │ │ │ │ │ ├── ring.go │ │ │ │ │ ├── ring_test.go │ │ │ │ │ ├── splunk │ │ │ │ │ │ ├── splunk.go │ │ │ │ │ │ ├── splunk_test.go │ │ │ │ │ │ └── splunkhecmock_test.go │ │ │ │ │ ├── syslog │ │ │ │ │ │ ├── syslog.go │ │ │ │ │ │ └── syslog_test.go │ │ │ │ │ └── templates │ │ │ │ │ │ ├── templates.go │ │ │ │ │ │ └── templates_test.go │ │ │ │ ├── logs.go │ │ │ │ ├── logs_test.go │ │ │ │ ├── metrics.go │ │ │ │ ├── metrics_unix.go │ │ │ │ ├── metrics_unsupported.go │ │ │ │ ├── monitor.go │ │ │ │ ├── monitor_linux.go │ │ │ │ ├── monitor_windows.go │ │ │ │ ├── mounts.go │ │ │ │ ├── names.go │ │ │ │ ├── names │ │ │ │ │ └── names.go │ │ │ │ ├── network.go │ │ │ │ ├── network │ │ │ │ │ └── settings.go │ │ │ │ ├── oci_linux.go │ │ │ │ ├── oci_linux_test.go │ │ │ │ ├── oci_windows.go │ │ │ │ ├── pause.go │ │ │ │ ├── prune.go │ │ │ │ ├── reload.go │ │ │ │ ├── reload_test.go │ │ │ │ ├── rename.go │ │ │ │ ├── resize.go │ │ │ │ ├── restart.go │ │ │ │ ├── search.go │ │ │ │ ├── search_test.go │ │ │ │ ├── seccomp_disabled.go │ │ │ │ ├── seccomp_linux.go │ │ │ │ ├── seccomp_unsupported.go │ │ │ │ ├── secrets.go │ │ │ │ ├── secrets_linux.go │ │ │ │ ├── secrets_unsupported.go │ │ │ │ ├── secrets_windows.go │ │ │ │ ├── selinux_linux.go │ │ │ │ ├── selinux_unsupported.go │ │ │ │ ├── start.go │ │ │ │ ├── start_unix.go │ │ │ │ ├── start_windows.go │ │ │ │ ├── stats.go │ │ │ │ ├── stats │ │ │ │ │ ├── collector.go │ │ │ │ │ ├── collector_unix.go │ │ │ │ │ ├── collector_windows.go │ │ │ │ │ └── types.go │ │ │ │ ├── stats_collector.go │ │ │ │ ├── stats_unix.go │ │ │ │ ├── stats_windows.go │ │ │ │ ├── stop.go │ │ │ │ ├── testdata │ │ │ │ │ └── keyfile │ │ │ │ ├── top_unix.go │ │ │ │ ├── top_unix_test.go │ │ │ │ ├── top_windows.go │ │ │ │ ├── trustkey.go │ │ │ │ ├── trustkey_test.go │ │ │ │ ├── unpause.go │ │ │ │ ├── update.go │ │ │ │ ├── update_linux.go │ │ │ │ ├── update_windows.go │ │ │ │ ├── volumes.go │ │ │ │ ├── volumes_unit_test.go │ │ │ │ ├── volumes_unix.go │ │ │ │ ├── volumes_unix_test.go │ │ │ │ ├── volumes_windows.go │ │ │ │ ├── wait.go │ │ │ │ └── workdir.go │ │ │ ├── distribution │ │ │ │ ├── config.go │ │ │ │ ├── errors.go │ │ │ │ ├── errors_test.go │ │ │ │ ├── fixtures │ │ │ │ │ └── validate_manifest │ │ │ │ │ │ ├── bad_manifest │ │ │ │ │ │ ├── extra_data_manifest │ │ │ │ │ │ └── good_manifest │ │ │ │ ├── metadata │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── v1_id_service.go │ │ │ │ │ ├── v1_id_service_test.go │ │ │ │ │ ├── v2_metadata_service.go │ │ │ │ │ └── v2_metadata_service_test.go │ │ │ │ ├── pull.go │ │ │ │ ├── pull_v1.go │ │ │ │ ├── pull_v2.go │ │ │ │ ├── pull_v2_test.go │ │ │ │ ├── pull_v2_unix.go │ │ │ │ ├── pull_v2_windows.go │ │ │ │ ├── push.go │ │ │ │ ├── push_v1.go │ │ │ │ ├── push_v2.go │ │ │ │ ├── push_v2_test.go │ │ │ │ ├── registry.go │ │ │ │ ├── registry_unit_test.go │ │ │ │ ├── utils │ │ │ │ │ └── progress.go │ │ │ │ └── xfer │ │ │ │ │ ├── download.go │ │ │ │ │ ├── download_test.go │ │ │ │ │ ├── transfer.go │ │ │ │ │ ├── transfer_test.go │ │ │ │ │ ├── upload.go │ │ │ │ │ └── upload_test.go │ │ │ ├── dockerversion │ │ │ │ ├── useragent.go │ │ │ │ └── version_lib.go │ │ │ ├── docs │ │ │ │ ├── api │ │ │ │ │ ├── v1.18.md │ │ │ │ │ ├── v1.19.md │ │ │ │ │ ├── v1.20.md │ │ │ │ │ ├── v1.21.md │ │ │ │ │ ├── v1.22.md │ │ │ │ │ ├── v1.23.md │ │ │ │ │ ├── v1.24.md │ │ │ │ │ └── version-history.md │ │ │ │ ├── contributing │ │ │ │ │ ├── README.md │ │ │ │ │ ├── images │ │ │ │ │ │ ├── branch-sig.png │ │ │ │ │ │ ├── contributor-edit.png │ │ │ │ │ │ ├── copy_url.png │ │ │ │ │ │ ├── fork_docker.png │ │ │ │ │ │ ├── git_bash.png │ │ │ │ │ │ └── list_example.png │ │ │ │ │ ├── set-up-dev-env.md │ │ │ │ │ ├── set-up-git.md │ │ │ │ │ ├── software-req-win.md │ │ │ │ │ ├── software-required.md │ │ │ │ │ ├── test.md │ │ │ │ │ └── who-written-for.md │ │ │ │ └── static_files │ │ │ │ │ ├── contributors.png │ │ │ │ │ └── moby-project-logo.png │ │ │ ├── hack │ │ │ │ ├── README.md │ │ │ │ ├── ci │ │ │ │ │ ├── arm │ │ │ │ │ ├── experimental │ │ │ │ │ ├── janky │ │ │ │ │ ├── powerpc │ │ │ │ │ └── z │ │ │ │ ├── dind │ │ │ │ ├── dockerfile │ │ │ │ │ ├── binaries-commits │ │ │ │ │ └── install-binaries.sh │ │ │ │ ├── generate-authors.sh │ │ │ │ ├── generate-swagger-api.sh │ │ │ │ ├── integration-cli-on-swarm │ │ │ │ │ ├── README.md │ │ │ │ │ ├── agent │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ ├── master │ │ │ │ │ │ │ ├── call.go │ │ │ │ │ │ │ ├── master.go │ │ │ │ │ │ │ ├── set.go │ │ │ │ │ │ │ └── set_test.go │ │ │ │ │ │ ├── types │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── vendor.conf │ │ │ │ │ │ ├── vendor │ │ │ │ │ │ │ └── github.com │ │ │ │ │ │ │ │ └── bfirsh │ │ │ │ │ │ │ │ └── funker-go │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── call.go │ │ │ │ │ │ │ │ └── handle.go │ │ │ │ │ │ └── worker │ │ │ │ │ │ │ ├── executor.go │ │ │ │ │ │ │ └── worker.go │ │ │ │ │ └── host │ │ │ │ │ │ ├── compose.go │ │ │ │ │ │ ├── dockercmd.go │ │ │ │ │ │ ├── enumerate.go │ │ │ │ │ │ ├── enumerate_test.go │ │ │ │ │ │ ├── host.go │ │ │ │ │ │ └── volume.go │ │ │ │ ├── make.ps1 │ │ │ │ ├── make.sh │ │ │ │ ├── make │ │ │ │ │ ├── .binary │ │ │ │ │ ├── .binary-setup │ │ │ │ │ ├── .detect-daemon-osarch │ │ │ │ │ ├── .ensure-emptyfs │ │ │ │ │ ├── .go-autogen │ │ │ │ │ ├── .go-autogen.ps1 │ │ │ │ │ ├── .integration-daemon-setup │ │ │ │ │ ├── .integration-daemon-start │ │ │ │ │ ├── .integration-daemon-stop │ │ │ │ │ ├── .integration-test-helpers │ │ │ │ │ ├── .resources-windows │ │ │ │ │ │ ├── common.rc │ │ │ │ │ │ ├── docker.exe.manifest │ │ │ │ │ │ ├── docker.ico │ │ │ │ │ │ ├── docker.png │ │ │ │ │ │ ├── docker.rc │ │ │ │ │ │ ├── dockerd.rc │ │ │ │ │ │ ├── event_messages.mc │ │ │ │ │ │ └── resources.go │ │ │ │ │ ├── README.md │ │ │ │ │ ├── binary │ │ │ │ │ ├── binary-daemon │ │ │ │ │ ├── build-integration-test-binary │ │ │ │ │ ├── cross │ │ │ │ │ ├── dynbinary │ │ │ │ │ ├── dynbinary-daemon │ │ │ │ │ ├── install-binary │ │ │ │ │ ├── run │ │ │ │ │ ├── test-docker-py │ │ │ │ │ ├── test-integration │ │ │ │ │ ├── test-integration-cli │ │ │ │ │ └── test-integration-shell │ │ │ │ ├── test │ │ │ │ │ ├── e2e-run.sh │ │ │ │ │ └── unit │ │ │ │ ├── validate │ │ │ │ │ ├── .swagger-yamllint │ │ │ │ │ ├── .validate │ │ │ │ │ ├── all │ │ │ │ │ ├── changelog-date-descending │ │ │ │ │ ├── changelog-well-formed │ │ │ │ │ ├── dco │ │ │ │ │ ├── default │ │ │ │ │ ├── default-seccomp │ │ │ │ │ ├── deprecate-integration-cli │ │ │ │ │ ├── gometalinter │ │ │ │ │ ├── gometalinter.json │ │ │ │ │ ├── pkg-imports │ │ │ │ │ ├── swagger │ │ │ │ │ ├── swagger-gen │ │ │ │ │ ├── test-imports │ │ │ │ │ ├── toml │ │ │ │ │ └── vendor │ │ │ │ └── vendor.sh │ │ │ ├── image │ │ │ │ ├── cache │ │ │ │ │ ├── cache.go │ │ │ │ │ ├── compare.go │ │ │ │ │ └── compare_test.go │ │ │ │ ├── fs.go │ │ │ │ ├── fs_test.go │ │ │ │ ├── image.go │ │ │ │ ├── image_test.go │ │ │ │ ├── rootfs.go │ │ │ │ ├── spec │ │ │ │ │ ├── v1.1.md │ │ │ │ │ ├── v1.2.md │ │ │ │ │ └── v1.md │ │ │ │ ├── store.go │ │ │ │ ├── store_test.go │ │ │ │ ├── tarexport │ │ │ │ │ ├── load.go │ │ │ │ │ ├── save.go │ │ │ │ │ └── tarexport.go │ │ │ │ └── v1 │ │ │ │ │ ├── imagev1.go │ │ │ │ │ └── imagev1_test.go │ │ │ ├── integration-cli │ │ │ │ ├── benchmark_test.go │ │ │ │ ├── check_test.go │ │ │ │ ├── checker │ │ │ │ │ └── checker.go │ │ │ │ ├── cli │ │ │ │ │ ├── build │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ ├── fakecontext │ │ │ │ │ │ │ └── context.go │ │ │ │ │ │ ├── fakegit │ │ │ │ │ │ │ └── fakegit.go │ │ │ │ │ │ └── fakestorage │ │ │ │ │ │ │ ├── fixtures.go │ │ │ │ │ │ │ └── storage.go │ │ │ │ │ └── cli.go │ │ │ │ ├── daemon │ │ │ │ │ ├── daemon.go │ │ │ │ │ ├── daemon_swarm.go │ │ │ │ │ ├── daemon_unix.go │ │ │ │ │ └── daemon_windows.go │ │ │ │ ├── daemon_swarm_hack_test.go │ │ │ │ ├── docker_api_attach_test.go │ │ │ │ ├── docker_api_auth_test.go │ │ │ │ ├── docker_api_build_test.go │ │ │ │ ├── docker_api_containers_test.go │ │ │ │ ├── docker_api_containers_unix_test.go │ │ │ │ ├── docker_api_containers_windows_test.go │ │ │ │ ├── docker_api_create_test.go │ │ │ │ ├── docker_api_events_test.go │ │ │ │ ├── docker_api_exec_resize_test.go │ │ │ │ ├── docker_api_exec_test.go │ │ │ │ ├── docker_api_images_test.go │ │ │ │ ├── docker_api_info_test.go │ │ │ │ ├── docker_api_inspect_test.go │ │ │ │ ├── docker_api_inspect_unix_test.go │ │ │ │ ├── docker_api_ipcmode_test.go │ │ │ │ ├── docker_api_logs_test.go │ │ │ │ ├── docker_api_network_test.go │ │ │ │ ├── docker_api_resize_test.go │ │ │ │ ├── docker_api_session_test.go │ │ │ │ ├── docker_api_stats_test.go │ │ │ │ ├── docker_api_stats_unix_test.go │ │ │ │ ├── docker_api_swarm_config_test.go │ │ │ │ ├── docker_api_swarm_node_test.go │ │ │ │ ├── docker_api_swarm_secret_test.go │ │ │ │ ├── docker_api_swarm_service_test.go │ │ │ │ ├── docker_api_swarm_test.go │ │ │ │ ├── docker_api_test.go │ │ │ │ ├── docker_api_update_unix_test.go │ │ │ │ ├── docker_api_volumes_test.go │ │ │ │ ├── docker_cli_attach_test.go │ │ │ │ ├── docker_cli_attach_unix_test.go │ │ │ │ ├── docker_cli_build_test.go │ │ │ │ ├── docker_cli_build_unix_test.go │ │ │ │ ├── docker_cli_by_digest_test.go │ │ │ │ ├── docker_cli_commit_test.go │ │ │ │ ├── docker_cli_config_create_test.go │ │ │ │ ├── docker_cli_config_inspect_test.go │ │ │ │ ├── docker_cli_config_ls_test.go │ │ │ │ ├── docker_cli_cp_from_container_test.go │ │ │ │ ├── docker_cli_cp_test.go │ │ │ │ ├── docker_cli_cp_to_container_test.go │ │ │ │ ├── docker_cli_cp_to_container_unix_test.go │ │ │ │ ├── docker_cli_cp_utils_test.go │ │ │ │ ├── docker_cli_create_test.go │ │ │ │ ├── docker_cli_create_unix_test.go │ │ │ │ ├── docker_cli_daemon_plugins_test.go │ │ │ │ ├── docker_cli_daemon_test.go │ │ │ │ ├── docker_cli_diff_test.go │ │ │ │ ├── docker_cli_events_test.go │ │ │ │ ├── docker_cli_events_unix_test.go │ │ │ │ ├── docker_cli_exec_test.go │ │ │ │ ├── docker_cli_exec_unix_test.go │ │ │ │ ├── docker_cli_export_import_test.go │ │ │ │ ├── docker_cli_external_graphdriver_unix_test.go │ │ │ │ ├── docker_cli_external_volume_driver_unix_test.go │ │ │ │ ├── docker_cli_health_test.go │ │ │ │ ├── docker_cli_history_test.go │ │ │ │ ├── docker_cli_images_test.go │ │ │ │ ├── docker_cli_import_test.go │ │ │ │ ├── docker_cli_info_test.go │ │ │ │ ├── docker_cli_info_unix_test.go │ │ │ │ ├── docker_cli_inspect_test.go │ │ │ │ ├── docker_cli_kill_test.go │ │ │ │ ├── docker_cli_links_test.go │ │ │ │ ├── docker_cli_links_unix_test.go │ │ │ │ ├── docker_cli_login_test.go │ │ │ │ ├── docker_cli_logout_test.go │ │ │ │ ├── docker_cli_logs_bench_test.go │ │ │ │ ├── docker_cli_logs_test.go │ │ │ │ ├── docker_cli_nat_test.go │ │ │ │ ├── docker_cli_netmode_test.go │ │ │ │ ├── docker_cli_network_unix_test.go │ │ │ │ ├── docker_cli_oom_killed_test.go │ │ │ │ ├── docker_cli_pause_test.go │ │ │ │ ├── docker_cli_plugins_logdriver_test.go │ │ │ │ ├── docker_cli_plugins_test.go │ │ │ │ ├── docker_cli_port_test.go │ │ │ │ ├── docker_cli_proxy_test.go │ │ │ │ ├── docker_cli_prune_unix_test.go │ │ │ │ ├── docker_cli_ps_test.go │ │ │ │ ├── docker_cli_pull_local_test.go │ │ │ │ ├── docker_cli_pull_test.go │ │ │ │ ├── docker_cli_pull_trusted_test.go │ │ │ │ ├── docker_cli_push_test.go │ │ │ │ ├── docker_cli_registry_user_agent_test.go │ │ │ │ ├── docker_cli_rename_test.go │ │ │ │ ├── docker_cli_restart_test.go │ │ │ │ ├── docker_cli_rm_test.go │ │ │ │ ├── docker_cli_rmi_test.go │ │ │ │ ├── docker_cli_run_test.go │ │ │ │ ├── docker_cli_run_unix_test.go │ │ │ │ ├── docker_cli_save_load_test.go │ │ │ │ ├── docker_cli_save_load_unix_test.go │ │ │ │ ├── docker_cli_search_test.go │ │ │ │ ├── docker_cli_secret_create_test.go │ │ │ │ ├── docker_cli_secret_inspect_test.go │ │ │ │ ├── docker_cli_secret_ls_test.go │ │ │ │ ├── docker_cli_service_create_test.go │ │ │ │ ├── docker_cli_service_health_test.go │ │ │ │ ├── docker_cli_service_logs_test.go │ │ │ │ ├── docker_cli_service_scale_test.go │ │ │ │ ├── docker_cli_service_update_test.go │ │ │ │ ├── docker_cli_sni_test.go │ │ │ │ ├── docker_cli_start_test.go │ │ │ │ ├── docker_cli_stats_test.go │ │ │ │ ├── docker_cli_stop_test.go │ │ │ │ ├── docker_cli_swarm_test.go │ │ │ │ ├── docker_cli_swarm_unix_test.go │ │ │ │ ├── docker_cli_tag_test.go │ │ │ │ ├── docker_cli_top_test.go │ │ │ │ ├── docker_cli_update_test.go │ │ │ │ ├── docker_cli_update_unix_test.go │ │ │ │ ├── docker_cli_userns_test.go │ │ │ │ ├── docker_cli_v2_only_test.go │ │ │ │ ├── docker_cli_volume_test.go │ │ │ │ ├── docker_cli_wait_test.go │ │ │ │ ├── docker_deprecated_api_v124_test.go │ │ │ │ ├── docker_deprecated_api_v124_unix_test.go │ │ │ │ ├── docker_experimental_network_test.go │ │ │ │ ├── docker_hub_pull_suite_test.go │ │ │ │ ├── docker_utils_test.go │ │ │ │ ├── environment │ │ │ │ │ └── environment.go │ │ │ │ ├── events_utils_test.go │ │ │ │ ├── fixtures │ │ │ │ │ ├── auth │ │ │ │ │ │ └── docker-credential-shell-test │ │ │ │ │ ├── credentialspecs │ │ │ │ │ │ └── valid.json │ │ │ │ │ ├── deploy │ │ │ │ │ │ ├── default.yaml │ │ │ │ │ │ ├── remove.yaml │ │ │ │ │ │ └── secrets.yaml │ │ │ │ │ ├── https │ │ │ │ │ │ ├── ca.pem │ │ │ │ │ │ ├── client-cert.pem │ │ │ │ │ │ ├── client-key.pem │ │ │ │ │ │ ├── client-rogue-cert.pem │ │ │ │ │ │ ├── client-rogue-key.pem │ │ │ │ │ │ ├── server-cert.pem │ │ │ │ │ │ ├── server-key.pem │ │ │ │ │ │ ├── server-rogue-cert.pem │ │ │ │ │ │ └── server-rogue-key.pem │ │ │ │ │ ├── load │ │ │ │ │ │ ├── emptyLayer.tar │ │ │ │ │ │ └── frozen.go │ │ │ │ │ ├── notary │ │ │ │ │ │ ├── delgkey1.crt │ │ │ │ │ │ ├── delgkey1.key │ │ │ │ │ │ ├── delgkey2.crt │ │ │ │ │ │ ├── delgkey2.key │ │ │ │ │ │ ├── delgkey3.crt │ │ │ │ │ │ ├── delgkey3.key │ │ │ │ │ │ ├── delgkey4.crt │ │ │ │ │ │ ├── delgkey4.key │ │ │ │ │ │ ├── gen.sh │ │ │ │ │ │ ├── localhost.cert │ │ │ │ │ │ └── localhost.key │ │ │ │ │ ├── plugin │ │ │ │ │ │ ├── basic │ │ │ │ │ │ │ └── basic.go │ │ │ │ │ │ └── plugin.go │ │ │ │ │ ├── registry │ │ │ │ │ │ └── cert.pem │ │ │ │ │ └── secrets │ │ │ │ │ │ └── default │ │ │ │ ├── fixtures_linux_daemon_test.go │ │ │ │ ├── registry │ │ │ │ │ ├── registry.go │ │ │ │ │ ├── registry_mock.go │ │ │ │ │ └── requirement.go │ │ │ │ ├── request │ │ │ │ │ ├── npipe.go │ │ │ │ │ ├── npipe_windows.go │ │ │ │ │ └── request.go │ │ │ │ ├── requirement │ │ │ │ │ └── requirement.go │ │ │ │ ├── requirements_test.go │ │ │ │ ├── requirements_unix_test.go │ │ │ │ ├── test_vars_exec_test.go │ │ │ │ ├── test_vars_noexec_test.go │ │ │ │ ├── test_vars_noseccomp_test.go │ │ │ │ ├── test_vars_seccomp_test.go │ │ │ │ ├── test_vars_test.go │ │ │ │ ├── test_vars_unix_test.go │ │ │ │ ├── test_vars_windows_test.go │ │ │ │ ├── trust_server_test.go │ │ │ │ └── utils_test.go │ │ │ ├── integration │ │ │ │ ├── build │ │ │ │ │ ├── build_test.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── container │ │ │ │ │ ├── create_test.go │ │ │ │ │ ├── exec_test.go │ │ │ │ │ ├── health_test.go │ │ │ │ │ ├── main_test.go │ │ │ │ │ ├── rename_test.go │ │ │ │ │ └── restart_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── image │ │ │ │ │ ├── commit_test.go │ │ │ │ │ ├── import_test.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── network │ │ │ │ │ ├── delete_test.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── plugin │ │ │ │ │ ├── authz │ │ │ │ │ │ ├── authz_plugin_test.go │ │ │ │ │ │ ├── authz_plugin_v2_test.go │ │ │ │ │ │ └── main_test.go │ │ │ │ │ └── pkg_test.go │ │ │ │ ├── service │ │ │ │ │ ├── create_test.go │ │ │ │ │ ├── inspect_test.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── system │ │ │ │ │ ├── info_linux_test.go │ │ │ │ │ ├── main_test.go │ │ │ │ │ └── version_test.go │ │ │ │ ├── testdata │ │ │ │ │ └── https │ │ │ │ │ │ ├── ca.pem │ │ │ │ │ │ ├── client-cert.pem │ │ │ │ │ │ ├── client-key.pem │ │ │ │ │ │ ├── server-cert.pem │ │ │ │ │ │ └── server-key.pem │ │ │ │ └── util │ │ │ │ │ ├── request │ │ │ │ │ └── client.go │ │ │ │ │ └── requirement │ │ │ │ │ └── requirement.go │ │ │ ├── internal │ │ │ │ ├── test │ │ │ │ │ └── environment │ │ │ │ │ │ ├── clean.go │ │ │ │ │ │ ├── environment.go │ │ │ │ │ │ └── protect.go │ │ │ │ └── testutil │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── stringutils.go │ │ │ │ │ └── stringutils_test.go │ │ │ ├── layer │ │ │ │ ├── empty.go │ │ │ │ ├── empty_test.go │ │ │ │ ├── filestore.go │ │ │ │ ├── filestore_test.go │ │ │ │ ├── filestore_unix.go │ │ │ │ ├── filestore_windows.go │ │ │ │ ├── layer.go │ │ │ │ ├── layer_store.go │ │ │ │ ├── layer_store_windows.go │ │ │ │ ├── layer_test.go │ │ │ │ ├── layer_unix.go │ │ │ │ ├── layer_unix_test.go │ │ │ │ ├── layer_windows.go │ │ │ │ ├── migration.go │ │ │ │ ├── migration_test.go │ │ │ │ ├── mount_test.go │ │ │ │ ├── mounted_layer.go │ │ │ │ ├── ro_layer.go │ │ │ │ ├── ro_layer_unix.go │ │ │ │ └── ro_layer_windows.go │ │ │ ├── libcontainerd │ │ │ │ ├── client_daemon.go │ │ │ │ ├── client_daemon_linux.go │ │ │ │ ├── client_daemon_windows.go │ │ │ │ ├── client_local_windows.go │ │ │ │ ├── errors.go │ │ │ │ ├── io.go │ │ │ │ ├── io_unix.go │ │ │ │ ├── io_windows.go │ │ │ │ ├── process_windows.go │ │ │ │ ├── queue.go │ │ │ │ ├── queue_test.go │ │ │ │ ├── remote_daemon.go │ │ │ │ ├── remote_daemon_linux.go │ │ │ │ ├── remote_daemon_options.go │ │ │ │ ├── remote_daemon_options_linux.go │ │ │ │ ├── remote_daemon_process.go │ │ │ │ ├── remote_daemon_process_linux.go │ │ │ │ ├── remote_daemon_windows.go │ │ │ │ ├── remote_local.go │ │ │ │ ├── types.go │ │ │ │ ├── types_linux.go │ │ │ │ ├── types_windows.go │ │ │ │ ├── utils_linux.go │ │ │ │ ├── utils_windows.go │ │ │ │ └── utils_windows_test.go │ │ │ ├── migrate │ │ │ │ └── v1 │ │ │ │ │ ├── migratev1.go │ │ │ │ │ └── migratev1_test.go │ │ │ ├── oci │ │ │ │ ├── defaults.go │ │ │ │ ├── devices_linux.go │ │ │ │ ├── devices_unsupported.go │ │ │ │ └── namespaces.go │ │ │ ├── opts │ │ │ │ ├── env.go │ │ │ │ ├── env_test.go │ │ │ │ ├── hosts.go │ │ │ │ ├── hosts_test.go │ │ │ │ ├── hosts_unix.go │ │ │ │ ├── hosts_windows.go │ │ │ │ ├── ip.go │ │ │ │ ├── ip_test.go │ │ │ │ ├── opts.go │ │ │ │ ├── opts_test.go │ │ │ │ ├── opts_unix.go │ │ │ │ ├── opts_windows.go │ │ │ │ ├── quotedstring.go │ │ │ │ ├── quotedstring_test.go │ │ │ │ ├── runtime.go │ │ │ │ ├── ulimit.go │ │ │ │ └── ulimit_test.go │ │ │ ├── pkg │ │ │ │ ├── README.md │ │ │ │ ├── aaparser │ │ │ │ │ ├── aaparser.go │ │ │ │ │ └── aaparser_test.go │ │ │ │ ├── archive │ │ │ │ │ ├── README.md │ │ │ │ │ ├── archive.go │ │ │ │ │ ├── archive_linux.go │ │ │ │ │ ├── archive_linux_test.go │ │ │ │ │ ├── archive_other.go │ │ │ │ │ ├── archive_test.go │ │ │ │ │ ├── archive_unix.go │ │ │ │ │ ├── archive_unix_test.go │ │ │ │ │ ├── archive_windows.go │ │ │ │ │ ├── archive_windows_test.go │ │ │ │ │ ├── changes.go │ │ │ │ │ ├── changes_linux.go │ │ │ │ │ ├── changes_other.go │ │ │ │ │ ├── changes_posix_test.go │ │ │ │ │ ├── changes_test.go │ │ │ │ │ ├── changes_unix.go │ │ │ │ │ ├── changes_windows.go │ │ │ │ │ ├── copy.go │ │ │ │ │ ├── copy_unix.go │ │ │ │ │ ├── copy_unix_test.go │ │ │ │ │ ├── copy_windows.go │ │ │ │ │ ├── diff.go │ │ │ │ │ ├── diff_test.go │ │ │ │ │ ├── example_changes.go │ │ │ │ │ ├── testdata │ │ │ │ │ │ └── broken.tar │ │ │ │ │ ├── time_linux.go │ │ │ │ │ ├── time_unsupported.go │ │ │ │ │ ├── utils_test.go │ │ │ │ │ ├── whiteouts.go │ │ │ │ │ ├── wrap.go │ │ │ │ │ └── wrap_test.go │ │ │ │ ├── authorization │ │ │ │ │ ├── api.go │ │ │ │ │ ├── api_test.go │ │ │ │ │ ├── authz.go │ │ │ │ │ ├── authz_unix_test.go │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── middleware_test.go │ │ │ │ │ ├── middleware_unix_test.go │ │ │ │ │ ├── plugin.go │ │ │ │ │ └── response.go │ │ │ │ ├── broadcaster │ │ │ │ │ ├── unbuffered.go │ │ │ │ │ └── unbuffered_test.go │ │ │ │ ├── chrootarchive │ │ │ │ │ ├── archive.go │ │ │ │ │ ├── archive_test.go │ │ │ │ │ ├── archive_unix.go │ │ │ │ │ ├── archive_windows.go │ │ │ │ │ ├── chroot_linux.go │ │ │ │ │ ├── chroot_unix.go │ │ │ │ │ ├── diff.go │ │ │ │ │ ├── diff_unix.go │ │ │ │ │ ├── diff_windows.go │ │ │ │ │ ├── init_unix.go │ │ │ │ │ └── init_windows.go │ │ │ │ ├── containerfs │ │ │ │ │ ├── archiver.go │ │ │ │ │ ├── containerfs.go │ │ │ │ │ ├── containerfs_unix.go │ │ │ │ │ └── containerfs_windows.go │ │ │ │ ├── devicemapper │ │ │ │ │ ├── devmapper.go │ │ │ │ │ ├── devmapper_log.go │ │ │ │ │ ├── devmapper_wrapper.go │ │ │ │ │ ├── devmapper_wrapper_deferred_remove.go │ │ │ │ │ ├── devmapper_wrapper_dynamic.go │ │ │ │ │ ├── devmapper_wrapper_no_deferred_remove.go │ │ │ │ │ ├── ioctl.go │ │ │ │ │ └── log.go │ │ │ │ ├── directory │ │ │ │ │ ├── directory.go │ │ │ │ │ ├── directory_test.go │ │ │ │ │ ├── directory_unix.go │ │ │ │ │ └── directory_windows.go │ │ │ │ ├── discovery │ │ │ │ │ ├── README.md │ │ │ │ │ ├── backends.go │ │ │ │ │ ├── discovery.go │ │ │ │ │ ├── discovery_test.go │ │ │ │ │ ├── entry.go │ │ │ │ │ ├── file │ │ │ │ │ │ ├── file.go │ │ │ │ │ │ └── file_test.go │ │ │ │ │ ├── generator.go │ │ │ │ │ ├── generator_test.go │ │ │ │ │ ├── kv │ │ │ │ │ │ ├── kv.go │ │ │ │ │ │ └── kv_test.go │ │ │ │ │ ├── memory │ │ │ │ │ │ ├── memory.go │ │ │ │ │ │ └── memory_test.go │ │ │ │ │ └── nodes │ │ │ │ │ │ ├── nodes.go │ │ │ │ │ │ └── nodes_test.go │ │ │ │ ├── dmesg │ │ │ │ │ ├── dmesg_linux.go │ │ │ │ │ └── dmesg_linux_test.go │ │ │ │ ├── filenotify │ │ │ │ │ ├── filenotify.go │ │ │ │ │ ├── fsnotify.go │ │ │ │ │ ├── poller.go │ │ │ │ │ └── poller_test.go │ │ │ │ ├── fileutils │ │ │ │ │ ├── fileutils.go │ │ │ │ │ ├── fileutils_darwin.go │ │ │ │ │ ├── fileutils_test.go │ │ │ │ │ ├── fileutils_unix.go │ │ │ │ │ └── fileutils_windows.go │ │ │ │ ├── fsutils │ │ │ │ │ ├── fsutils_linux.go │ │ │ │ │ └── fsutils_linux_test.go │ │ │ │ ├── homedir │ │ │ │ │ ├── homedir_linux.go │ │ │ │ │ ├── homedir_others.go │ │ │ │ │ ├── homedir_test.go │ │ │ │ │ ├── homedir_unix.go │ │ │ │ │ └── homedir_windows.go │ │ │ │ ├── idtools │ │ │ │ │ ├── idtools.go │ │ │ │ │ ├── idtools_unix.go │ │ │ │ │ ├── idtools_unix_test.go │ │ │ │ │ ├── idtools_windows.go │ │ │ │ │ ├── usergroupadd_linux.go │ │ │ │ │ ├── usergroupadd_unsupported.go │ │ │ │ │ └── utils_unix.go │ │ │ │ ├── ioutils │ │ │ │ │ ├── buffer.go │ │ │ │ │ ├── buffer_test.go │ │ │ │ │ ├── bytespipe.go │ │ │ │ │ ├── bytespipe_test.go │ │ │ │ │ ├── fswriters.go │ │ │ │ │ ├── fswriters_test.go │ │ │ │ │ ├── readers.go │ │ │ │ │ ├── readers_test.go │ │ │ │ │ ├── temp_unix.go │ │ │ │ │ ├── temp_windows.go │ │ │ │ │ ├── writeflusher.go │ │ │ │ │ ├── writers.go │ │ │ │ │ └── writers_test.go │ │ │ │ ├── jsonmessage │ │ │ │ │ ├── jsonmessage.go │ │ │ │ │ └── jsonmessage_test.go │ │ │ │ ├── locker │ │ │ │ │ ├── README.md │ │ │ │ │ ├── locker.go │ │ │ │ │ └── locker_test.go │ │ │ │ ├── longpath │ │ │ │ │ ├── longpath.go │ │ │ │ │ └── longpath_test.go │ │ │ │ ├── loopback │ │ │ │ │ ├── attach_loopback.go │ │ │ │ │ ├── ioctl.go │ │ │ │ │ ├── loop_wrapper.go │ │ │ │ │ └── loopback.go │ │ │ │ ├── mount │ │ │ │ │ ├── flags.go │ │ │ │ │ ├── flags_freebsd.go │ │ │ │ │ ├── flags_linux.go │ │ │ │ │ ├── flags_unsupported.go │ │ │ │ │ ├── mount.go │ │ │ │ │ ├── mount_unix_test.go │ │ │ │ │ ├── mounter_freebsd.go │ │ │ │ │ ├── mounter_linux.go │ │ │ │ │ ├── mounter_linux_test.go │ │ │ │ │ ├── mounter_unsupported.go │ │ │ │ │ ├── mountinfo.go │ │ │ │ │ ├── mountinfo_freebsd.go │ │ │ │ │ ├── mountinfo_linux.go │ │ │ │ │ ├── mountinfo_linux_test.go │ │ │ │ │ ├── mountinfo_unsupported.go │ │ │ │ │ ├── mountinfo_windows.go │ │ │ │ │ ├── sharedsubtree_linux.go │ │ │ │ │ └── sharedsubtree_linux_test.go │ │ │ │ ├── namesgenerator │ │ │ │ │ ├── cmd │ │ │ │ │ │ └── names-generator │ │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── names-generator.go │ │ │ │ │ └── names-generator_test.go │ │ │ │ ├── parsers │ │ │ │ │ ├── kernel │ │ │ │ │ │ ├── kernel.go │ │ │ │ │ │ ├── kernel_darwin.go │ │ │ │ │ │ ├── kernel_unix.go │ │ │ │ │ │ ├── kernel_unix_test.go │ │ │ │ │ │ ├── kernel_windows.go │ │ │ │ │ │ ├── uname_linux.go │ │ │ │ │ │ ├── uname_solaris.go │ │ │ │ │ │ └── uname_unsupported.go │ │ │ │ │ ├── operatingsystem │ │ │ │ │ │ ├── operatingsystem_linux.go │ │ │ │ │ │ ├── operatingsystem_unix.go │ │ │ │ │ │ ├── operatingsystem_unix_test.go │ │ │ │ │ │ └── operatingsystem_windows.go │ │ │ │ │ ├── parsers.go │ │ │ │ │ └── parsers_test.go │ │ │ │ ├── pidfile │ │ │ │ │ ├── pidfile.go │ │ │ │ │ ├── pidfile_darwin.go │ │ │ │ │ ├── pidfile_test.go │ │ │ │ │ ├── pidfile_unix.go │ │ │ │ │ └── pidfile_windows.go │ │ │ │ ├── platform │ │ │ │ │ ├── architecture_linux.go │ │ │ │ │ ├── architecture_unix.go │ │ │ │ │ ├── architecture_windows.go │ │ │ │ │ └── platform.go │ │ │ │ ├── plugingetter │ │ │ │ │ └── getter.go │ │ │ │ ├── plugins │ │ │ │ │ ├── client.go │ │ │ │ │ ├── client_test.go │ │ │ │ │ ├── discovery.go │ │ │ │ │ ├── discovery_test.go │ │ │ │ │ ├── discovery_unix.go │ │ │ │ │ ├── discovery_unix_test.go │ │ │ │ │ ├── discovery_windows.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── plugin_test.go │ │ │ │ │ ├── pluginrpc-gen │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ │ ├── foo.go │ │ │ │ │ │ │ └── otherfixture │ │ │ │ │ │ │ │ └── spaceship.go │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ ├── parser.go │ │ │ │ │ │ ├── parser_test.go │ │ │ │ │ │ └── template.go │ │ │ │ │ ├── plugins.go │ │ │ │ │ ├── plugins_unix.go │ │ │ │ │ ├── plugins_windows.go │ │ │ │ │ └── transport │ │ │ │ │ │ ├── http.go │ │ │ │ │ │ ├── http_test.go │ │ │ │ │ │ └── transport.go │ │ │ │ ├── pools │ │ │ │ │ ├── pools.go │ │ │ │ │ └── pools_test.go │ │ │ │ ├── progress │ │ │ │ │ ├── progress.go │ │ │ │ │ ├── progressreader.go │ │ │ │ │ └── progressreader_test.go │ │ │ │ ├── pubsub │ │ │ │ │ ├── publisher.go │ │ │ │ │ └── publisher_test.go │ │ │ │ ├── reexec │ │ │ │ │ ├── README.md │ │ │ │ │ ├── command_linux.go │ │ │ │ │ ├── command_unix.go │ │ │ │ │ ├── command_unsupported.go │ │ │ │ │ ├── command_windows.go │ │ │ │ │ ├── reexec.go │ │ │ │ │ └── reexec_test.go │ │ │ │ ├── signal │ │ │ │ │ ├── README.md │ │ │ │ │ ├── signal.go │ │ │ │ │ ├── signal_darwin.go │ │ │ │ │ ├── signal_freebsd.go │ │ │ │ │ ├── signal_linux.go │ │ │ │ │ ├── signal_linux_test.go │ │ │ │ │ ├── signal_test.go │ │ │ │ │ ├── signal_unix.go │ │ │ │ │ ├── signal_unsupported.go │ │ │ │ │ ├── signal_windows.go │ │ │ │ │ ├── testfiles │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── trap.go │ │ │ │ │ └── trap_linux_test.go │ │ │ │ ├── stdcopy │ │ │ │ │ ├── stdcopy.go │ │ │ │ │ └── stdcopy_test.go │ │ │ │ ├── streamformatter │ │ │ │ │ ├── streamformatter.go │ │ │ │ │ ├── streamformatter_test.go │ │ │ │ │ ├── streamwriter.go │ │ │ │ │ └── streamwriter_test.go │ │ │ │ ├── stringid │ │ │ │ │ ├── README.md │ │ │ │ │ ├── stringid.go │ │ │ │ │ └── stringid_test.go │ │ │ │ ├── symlink │ │ │ │ │ ├── LICENSE.APACHE │ │ │ │ │ ├── LICENSE.BSD │ │ │ │ │ ├── README.md │ │ │ │ │ ├── fs.go │ │ │ │ │ ├── fs_unix.go │ │ │ │ │ ├── fs_unix_test.go │ │ │ │ │ └── fs_windows.go │ │ │ │ ├── sysinfo │ │ │ │ │ ├── README.md │ │ │ │ │ ├── numcpu.go │ │ │ │ │ ├── numcpu_linux.go │ │ │ │ │ ├── numcpu_windows.go │ │ │ │ │ ├── sysinfo.go │ │ │ │ │ ├── sysinfo_linux.go │ │ │ │ │ ├── sysinfo_linux_test.go │ │ │ │ │ ├── sysinfo_test.go │ │ │ │ │ ├── sysinfo_unix.go │ │ │ │ │ └── sysinfo_windows.go │ │ │ │ ├── system │ │ │ │ │ ├── chtimes.go │ │ │ │ │ ├── chtimes_test.go │ │ │ │ │ ├── chtimes_unix.go │ │ │ │ │ ├── chtimes_unix_test.go │ │ │ │ │ ├── chtimes_windows.go │ │ │ │ │ ├── chtimes_windows_test.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── exitcode.go │ │ │ │ │ ├── filesys.go │ │ │ │ │ ├── filesys_windows.go │ │ │ │ │ ├── init.go │ │ │ │ │ ├── init_unix.go │ │ │ │ │ ├── init_windows.go │ │ │ │ │ ├── lcow.go │ │ │ │ │ ├── lcow_unix.go │ │ │ │ │ ├── lcow_windows.go │ │ │ │ │ ├── lstat_unix.go │ │ │ │ │ ├── lstat_unix_test.go │ │ │ │ │ ├── lstat_windows.go │ │ │ │ │ ├── meminfo.go │ │ │ │ │ ├── meminfo_linux.go │ │ │ │ │ ├── meminfo_unix_test.go │ │ │ │ │ ├── meminfo_unsupported.go │ │ │ │ │ ├── meminfo_windows.go │ │ │ │ │ ├── mknod.go │ │ │ │ │ ├── mknod_windows.go │ │ │ │ │ ├── path.go │ │ │ │ │ ├── path_windows_test.go │ │ │ │ │ ├── process_unix.go │ │ │ │ │ ├── process_windows.go │ │ │ │ │ ├── rm.go │ │ │ │ │ ├── rm_test.go │ │ │ │ │ ├── stat_darwin.go │ │ │ │ │ ├── stat_freebsd.go │ │ │ │ │ ├── stat_linux.go │ │ │ │ │ ├── stat_openbsd.go │ │ │ │ │ ├── stat_solaris.go │ │ │ │ │ ├── stat_unix.go │ │ │ │ │ ├── stat_unix_test.go │ │ │ │ │ ├── stat_windows.go │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ ├── syscall_windows.go │ │ │ │ │ ├── syscall_windows_test.go │ │ │ │ │ ├── umask.go │ │ │ │ │ ├── umask_windows.go │ │ │ │ │ ├── utimes_freebsd.go │ │ │ │ │ ├── utimes_linux.go │ │ │ │ │ ├── utimes_unix_test.go │ │ │ │ │ ├── utimes_unsupported.go │ │ │ │ │ ├── xattrs_linux.go │ │ │ │ │ └── xattrs_unsupported.go │ │ │ │ ├── tailfile │ │ │ │ │ ├── tailfile.go │ │ │ │ │ └── tailfile_test.go │ │ │ │ ├── tarsum │ │ │ │ │ ├── builder_context.go │ │ │ │ │ ├── builder_context_test.go │ │ │ │ │ ├── fileinfosums.go │ │ │ │ │ ├── fileinfosums_test.go │ │ │ │ │ ├── tarsum.go │ │ │ │ │ ├── tarsum_spec.md │ │ │ │ │ ├── tarsum_test.go │ │ │ │ │ ├── testdata │ │ │ │ │ │ ├── 46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457 │ │ │ │ │ │ │ ├── json │ │ │ │ │ │ │ └── layer.tar │ │ │ │ │ │ ├── 511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158 │ │ │ │ │ │ │ ├── json │ │ │ │ │ │ │ └── layer.tar │ │ │ │ │ │ ├── collision │ │ │ │ │ │ │ ├── collision-0.tar │ │ │ │ │ │ │ ├── collision-1.tar │ │ │ │ │ │ │ ├── collision-2.tar │ │ │ │ │ │ │ └── collision-3.tar │ │ │ │ │ │ └── xattr │ │ │ │ │ │ │ ├── json │ │ │ │ │ │ │ └── layer.tar │ │ │ │ │ ├── versioning.go │ │ │ │ │ ├── versioning_test.go │ │ │ │ │ └── writercloser.go │ │ │ │ ├── term │ │ │ │ │ ├── ascii.go │ │ │ │ │ ├── ascii_test.go │ │ │ │ │ ├── proxy.go │ │ │ │ │ ├── proxy_test.go │ │ │ │ │ ├── tc.go │ │ │ │ │ ├── term.go │ │ │ │ │ ├── term_linux_test.go │ │ │ │ │ ├── term_windows.go │ │ │ │ │ ├── termios_bsd.go │ │ │ │ │ ├── termios_linux.go │ │ │ │ │ ├── windows │ │ │ │ │ │ ├── ansi_reader.go │ │ │ │ │ │ ├── ansi_writer.go │ │ │ │ │ │ ├── console.go │ │ │ │ │ │ ├── windows.go │ │ │ │ │ │ └── windows_test.go │ │ │ │ │ └── winsize.go │ │ │ │ ├── truncindex │ │ │ │ │ ├── truncindex.go │ │ │ │ │ └── truncindex_test.go │ │ │ │ ├── urlutil │ │ │ │ │ ├── urlutil.go │ │ │ │ │ └── urlutil_test.go │ │ │ │ └── useragent │ │ │ │ │ ├── README.md │ │ │ │ │ ├── useragent.go │ │ │ │ │ └── useragent_test.go │ │ │ ├── plugin │ │ │ │ ├── backend_linux.go │ │ │ │ ├── backend_unsupported.go │ │ │ │ ├── blobstore.go │ │ │ │ ├── defs.go │ │ │ │ ├── errors.go │ │ │ │ ├── events.go │ │ │ │ ├── executor │ │ │ │ │ └── containerd │ │ │ │ │ │ └── containerd.go │ │ │ │ ├── manager.go │ │ │ │ ├── manager_linux.go │ │ │ │ ├── manager_linux_test.go │ │ │ │ ├── manager_test.go │ │ │ │ ├── manager_windows.go │ │ │ │ ├── store.go │ │ │ │ ├── store_test.go │ │ │ │ └── v2 │ │ │ │ │ ├── plugin.go │ │ │ │ │ ├── plugin_linux.go │ │ │ │ │ ├── plugin_unsupported.go │ │ │ │ │ ├── settable.go │ │ │ │ │ └── settable_test.go │ │ │ ├── poule.yml │ │ │ ├── profiles │ │ │ │ ├── apparmor │ │ │ │ │ ├── apparmor.go │ │ │ │ │ └── template.go │ │ │ │ └── seccomp │ │ │ │ │ ├── default.json │ │ │ │ │ ├── fixtures │ │ │ │ │ └── example.json │ │ │ │ │ ├── generate.go │ │ │ │ │ ├── seccomp.go │ │ │ │ │ ├── seccomp_default.go │ │ │ │ │ ├── seccomp_test.go │ │ │ │ │ └── seccomp_unsupported.go │ │ │ ├── project │ │ │ │ ├── ARM.md │ │ │ │ ├── BRANCHES-AND-TAGS.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── GOVERNANCE.md │ │ │ │ ├── IRC-ADMINISTRATION.md │ │ │ │ ├── ISSUE-TRIAGE.md │ │ │ │ ├── PACKAGE-REPO-MAINTENANCE.md │ │ │ │ ├── PACKAGERS.md │ │ │ │ ├── PATCH-RELEASES.md │ │ │ │ ├── PRINCIPLES.md │ │ │ │ ├── README.md │ │ │ │ ├── RELEASE-CHECKLIST.md │ │ │ │ ├── RELEASE-PROCESS.md │ │ │ │ ├── REVIEWING.md │ │ │ │ └── TOOLS.md │ │ │ ├── reference │ │ │ │ ├── errors.go │ │ │ │ ├── store.go │ │ │ │ └── store_test.go │ │ │ ├── registry │ │ │ │ ├── auth.go │ │ │ │ ├── auth_test.go │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── config_unix.go │ │ │ │ ├── config_windows.go │ │ │ │ ├── endpoint_test.go │ │ │ │ ├── endpoint_v1.go │ │ │ │ ├── errors.go │ │ │ │ ├── registry.go │ │ │ │ ├── registry_mock_test.go │ │ │ │ ├── registry_test.go │ │ │ │ ├── resumable │ │ │ │ │ ├── resumablerequestreader.go │ │ │ │ │ └── resumablerequestreader_test.go │ │ │ │ ├── service.go │ │ │ │ ├── service_v1.go │ │ │ │ ├── service_v1_test.go │ │ │ │ ├── service_v2.go │ │ │ │ ├── session.go │ │ │ │ └── types.go │ │ │ ├── reports │ │ │ │ ├── 2017-05-01.md │ │ │ │ ├── 2017-05-08.md │ │ │ │ ├── 2017-05-15.md │ │ │ │ ├── 2017-06-05.md │ │ │ │ ├── 2017-06-12.md │ │ │ │ ├── 2017-06-26.md │ │ │ │ └── builder │ │ │ │ │ ├── 2017-05-01.md │ │ │ │ │ ├── 2017-05-08.md │ │ │ │ │ ├── 2017-05-15.md │ │ │ │ │ ├── 2017-05-22.md │ │ │ │ │ ├── 2017-05-29.md │ │ │ │ │ ├── 2017-06-05.md │ │ │ │ │ ├── 2017-06-12.md │ │ │ │ │ ├── 2017-06-26.md │ │ │ │ │ ├── 2017-07-10.md │ │ │ │ │ └── 2017-07-17.md │ │ │ ├── restartmanager │ │ │ │ ├── restartmanager.go │ │ │ │ └── restartmanager_test.go │ │ │ ├── runconfig │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── config_unix.go │ │ │ │ ├── config_windows.go │ │ │ │ ├── errors.go │ │ │ │ ├── fixtures │ │ │ │ │ ├── unix │ │ │ │ │ │ ├── container_config_1_14.json │ │ │ │ │ │ ├── container_config_1_17.json │ │ │ │ │ │ ├── container_config_1_19.json │ │ │ │ │ │ ├── container_hostconfig_1_14.json │ │ │ │ │ │ └── container_hostconfig_1_19.json │ │ │ │ │ └── windows │ │ │ │ │ │ └── container_config_1_19.json │ │ │ │ ├── hostconfig.go │ │ │ │ ├── hostconfig_test.go │ │ │ │ ├── hostconfig_unix.go │ │ │ │ ├── hostconfig_windows.go │ │ │ │ ├── hostconfig_windows_test.go │ │ │ │ └── opts │ │ │ │ │ └── parse.go │ │ │ ├── vendor.conf │ │ │ └── volume │ │ │ │ ├── drivers │ │ │ │ ├── adapter.go │ │ │ │ ├── extpoint.go │ │ │ │ ├── extpoint_test.go │ │ │ │ ├── proxy.go │ │ │ │ └── proxy_test.go │ │ │ │ ├── lcow_parser.go │ │ │ │ ├── linux_parser.go │ │ │ │ ├── local │ │ │ │ ├── local.go │ │ │ │ ├── local_test.go │ │ │ │ ├── local_unix.go │ │ │ │ └── local_windows.go │ │ │ │ ├── parser.go │ │ │ │ ├── store │ │ │ │ ├── db.go │ │ │ │ ├── errors.go │ │ │ │ ├── restore.go │ │ │ │ ├── store.go │ │ │ │ ├── store_test.go │ │ │ │ ├── store_unix.go │ │ │ │ └── store_windows.go │ │ │ │ ├── testutils │ │ │ │ └── testutils.go │ │ │ │ ├── validate.go │ │ │ │ ├── validate_test.go │ │ │ │ ├── validate_unix_test.go │ │ │ │ ├── validate_windows_test.go │ │ │ │ ├── volume.go │ │ │ │ ├── volume_copy.go │ │ │ │ ├── volume_test.go │ │ │ │ ├── volume_unix.go │ │ │ │ ├── volume_windows.go │ │ │ │ └── windows_parser.go │ │ ├── engine-api │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── client │ │ │ │ ├── checkpoint_create.go │ │ │ │ ├── checkpoint_create_test.go │ │ │ │ ├── checkpoint_delete.go │ │ │ │ ├── checkpoint_delete_test.go │ │ │ │ ├── checkpoint_list.go │ │ │ │ ├── checkpoint_list_test.go │ │ │ │ ├── client.go │ │ │ │ ├── client_mock_test.go │ │ │ │ ├── client_test.go │ │ │ │ ├── client_unix.go │ │ │ │ ├── client_windows.go │ │ │ │ ├── container_attach.go │ │ │ │ ├── container_commit.go │ │ │ │ ├── container_commit_test.go │ │ │ │ ├── container_copy.go │ │ │ │ ├── container_copy_test.go │ │ │ │ ├── container_create.go │ │ │ │ ├── container_create_test.go │ │ │ │ ├── container_diff.go │ │ │ │ ├── container_diff_test.go │ │ │ │ ├── container_exec.go │ │ │ │ ├── container_exec_test.go │ │ │ │ ├── container_export.go │ │ │ │ ├── container_export_test.go │ │ │ │ ├── container_inspect.go │ │ │ │ ├── container_inspect_test.go │ │ │ │ ├── container_kill.go │ │ │ │ ├── container_kill_test.go │ │ │ │ ├── container_list.go │ │ │ │ ├── container_list_test.go │ │ │ │ ├── container_logs.go │ │ │ │ ├── container_logs_test.go │ │ │ │ ├── container_pause.go │ │ │ │ ├── container_pause_test.go │ │ │ │ ├── container_remove.go │ │ │ │ ├── container_remove_test.go │ │ │ │ ├── container_rename.go │ │ │ │ ├── container_rename_test.go │ │ │ │ ├── container_resize.go │ │ │ │ ├── container_resize_test.go │ │ │ │ ├── container_restart.go │ │ │ │ ├── container_restart_test.go │ │ │ │ ├── container_start.go │ │ │ │ ├── container_start_test.go │ │ │ │ ├── container_stats.go │ │ │ │ ├── container_stats_test.go │ │ │ │ ├── container_stop.go │ │ │ │ ├── container_stop_test.go │ │ │ │ ├── container_top.go │ │ │ │ ├── container_top_test.go │ │ │ │ ├── container_unpause.go │ │ │ │ ├── container_unpause_test.go │ │ │ │ ├── container_update.go │ │ │ │ ├── container_update_test.go │ │ │ │ ├── container_wait.go │ │ │ │ ├── container_wait_test.go │ │ │ │ ├── errors.go │ │ │ │ ├── events.go │ │ │ │ ├── events_test.go │ │ │ │ ├── hijack.go │ │ │ │ ├── image_build.go │ │ │ │ ├── image_build_test.go │ │ │ │ ├── image_create.go │ │ │ │ ├── image_create_test.go │ │ │ │ ├── image_history.go │ │ │ │ ├── image_history_test.go │ │ │ │ ├── image_import.go │ │ │ │ ├── image_import_test.go │ │ │ │ ├── image_inspect.go │ │ │ │ ├── image_inspect_test.go │ │ │ │ ├── image_list.go │ │ │ │ ├── image_list_test.go │ │ │ │ ├── image_load.go │ │ │ │ ├── image_load_test.go │ │ │ │ ├── image_pull.go │ │ │ │ ├── image_pull_test.go │ │ │ │ ├── image_push.go │ │ │ │ ├── image_push_test.go │ │ │ │ ├── image_remove.go │ │ │ │ ├── image_remove_test.go │ │ │ │ ├── image_save.go │ │ │ │ ├── image_save_test.go │ │ │ │ ├── image_search.go │ │ │ │ ├── image_search_test.go │ │ │ │ ├── image_tag.go │ │ │ │ ├── image_tag_test.go │ │ │ │ ├── info.go │ │ │ │ ├── info_test.go │ │ │ │ ├── interface.go │ │ │ │ ├── interface_experimental.go │ │ │ │ ├── interface_stable.go │ │ │ │ ├── login.go │ │ │ │ ├── network_connect.go │ │ │ │ ├── network_connect_test.go │ │ │ │ ├── network_create.go │ │ │ │ ├── network_create_test.go │ │ │ │ ├── network_disconnect.go │ │ │ │ ├── network_disconnect_test.go │ │ │ │ ├── network_inspect.go │ │ │ │ ├── network_inspect_test.go │ │ │ │ ├── network_list.go │ │ │ │ ├── network_list_test.go │ │ │ │ ├── network_remove.go │ │ │ │ ├── network_remove_test.go │ │ │ │ ├── node_inspect.go │ │ │ │ ├── node_inspect_test.go │ │ │ │ ├── node_list.go │ │ │ │ ├── node_list_test.go │ │ │ │ ├── node_remove.go │ │ │ │ ├── node_remove_test.go │ │ │ │ ├── node_update.go │ │ │ │ ├── node_update_test.go │ │ │ │ ├── plugin_disable.go │ │ │ │ ├── plugin_disable_test.go │ │ │ │ ├── plugin_enable.go │ │ │ │ ├── plugin_enable_test.go │ │ │ │ ├── plugin_inspect.go │ │ │ │ ├── plugin_inspect_test.go │ │ │ │ ├── plugin_install.go │ │ │ │ ├── plugin_list.go │ │ │ │ ├── plugin_list_test.go │ │ │ │ ├── plugin_push.go │ │ │ │ ├── plugin_push_test.go │ │ │ │ ├── plugin_remove.go │ │ │ │ ├── plugin_remove_test.go │ │ │ │ ├── plugin_set.go │ │ │ │ ├── plugin_set_test.go │ │ │ │ ├── request.go │ │ │ │ ├── request_test.go │ │ │ │ ├── service_create.go │ │ │ │ ├── service_create_test.go │ │ │ │ ├── service_inspect.go │ │ │ │ ├── service_inspect_test.go │ │ │ │ ├── service_list.go │ │ │ │ ├── service_list_test.go │ │ │ │ ├── service_remove.go │ │ │ │ ├── service_remove_test.go │ │ │ │ ├── service_update.go │ │ │ │ ├── service_update_test.go │ │ │ │ ├── swarm_init.go │ │ │ │ ├── swarm_init_test.go │ │ │ │ ├── swarm_inspect.go │ │ │ │ ├── swarm_inspect_test.go │ │ │ │ ├── swarm_join.go │ │ │ │ ├── swarm_join_test.go │ │ │ │ ├── swarm_leave.go │ │ │ │ ├── swarm_leave_test.go │ │ │ │ ├── swarm_update.go │ │ │ │ ├── swarm_update_test.go │ │ │ │ ├── task_inspect.go │ │ │ │ ├── task_inspect_test.go │ │ │ │ ├── task_list.go │ │ │ │ ├── task_list_test.go │ │ │ │ ├── testdata │ │ │ │ │ ├── ca.pem │ │ │ │ │ ├── cert.pem │ │ │ │ │ └── key.pem │ │ │ │ ├── transport │ │ │ │ │ ├── cancellable │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── canceler.go │ │ │ │ │ │ ├── canceler_go14.go │ │ │ │ │ │ └── cancellable.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── tlsconfig_clone.go │ │ │ │ │ ├── tlsconfig_clone_go17.go │ │ │ │ │ └── transport.go │ │ │ │ ├── version.go │ │ │ │ ├── volume_create.go │ │ │ │ ├── volume_create_test.go │ │ │ │ ├── volume_inspect.go │ │ │ │ ├── volume_inspect_test.go │ │ │ │ ├── volume_list.go │ │ │ │ ├── volume_list_test.go │ │ │ │ ├── volume_remove.go │ │ │ │ └── volume_remove_test.go │ │ │ ├── doc.go │ │ │ └── types │ │ │ │ ├── auth.go │ │ │ │ ├── blkiodev │ │ │ │ └── blkio.go │ │ │ │ ├── client.go │ │ │ │ ├── configs.go │ │ │ │ ├── container │ │ │ │ ├── config.go │ │ │ │ ├── host_config.go │ │ │ │ ├── hostconfig_unix.go │ │ │ │ └── hostconfig_windows.go │ │ │ │ ├── errors.go │ │ │ │ ├── events │ │ │ │ └── events.go │ │ │ │ ├── filters │ │ │ │ ├── parse.go │ │ │ │ └── parse_test.go │ │ │ │ ├── mount │ │ │ │ └── mount.go │ │ │ │ ├── network │ │ │ │ └── network.go │ │ │ │ ├── plugin.go │ │ │ │ ├── reference │ │ │ │ ├── image_reference.go │ │ │ │ └── image_reference_test.go │ │ │ │ ├── registry │ │ │ │ └── registry.go │ │ │ │ ├── seccomp.go │ │ │ │ ├── stats.go │ │ │ │ ├── strslice │ │ │ │ ├── strslice.go │ │ │ │ └── strslice_test.go │ │ │ │ ├── swarm │ │ │ │ ├── common.go │ │ │ │ ├── container.go │ │ │ │ ├── network.go │ │ │ │ ├── node.go │ │ │ │ ├── service.go │ │ │ │ ├── swarm.go │ │ │ │ └── task.go │ │ │ │ ├── time │ │ │ │ ├── duration_convert.go │ │ │ │ ├── duration_convert_test.go │ │ │ │ ├── timestamp.go │ │ │ │ └── timestamp_test.go │ │ │ │ ├── types.go │ │ │ │ └── versions │ │ │ │ ├── README.md │ │ │ │ ├── compare.go │ │ │ │ ├── compare_test.go │ │ │ │ ├── v1p19 │ │ │ │ └── types.go │ │ │ │ └── v1p20 │ │ │ │ └── types.go │ │ ├── go-connections │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── circle.yml │ │ │ ├── doc.go │ │ │ ├── nat │ │ │ │ ├── nat.go │ │ │ │ ├── nat_test.go │ │ │ │ ├── parse.go │ │ │ │ ├── parse_test.go │ │ │ │ ├── sort.go │ │ │ │ └── sort_test.go │ │ │ ├── proxy │ │ │ │ ├── logger.go │ │ │ │ ├── network_proxy_test.go │ │ │ │ ├── proxy.go │ │ │ │ ├── stub_proxy.go │ │ │ │ ├── tcp_proxy.go │ │ │ │ └── udp_proxy.go │ │ │ ├── sockets │ │ │ │ ├── README.md │ │ │ │ ├── inmem_socket.go │ │ │ │ ├── inmem_socket_test.go │ │ │ │ ├── proxy.go │ │ │ │ ├── sockets.go │ │ │ │ ├── sockets_unix.go │ │ │ │ ├── sockets_windows.go │ │ │ │ ├── tcp_socket.go │ │ │ │ └── unix_socket.go │ │ │ └── tlsconfig │ │ │ │ ├── certpool_go17.go │ │ │ │ ├── certpool_other.go │ │ │ │ ├── config.go │ │ │ │ ├── config_client_ciphers.go │ │ │ │ ├── config_legacy_client_ciphers.go │ │ │ │ ├── config_test.go │ │ │ │ └── fixtures │ │ │ │ ├── cert.pem │ │ │ │ ├── cert_of_encrypted_key.pem │ │ │ │ ├── encrypted_key.pem │ │ │ │ ├── key.pem │ │ │ │ └── multi.pem │ │ └── go-units │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── circle.yml │ │ │ ├── duration.go │ │ │ ├── duration_test.go │ │ │ ├── size.go │ │ │ ├── size_test.go │ │ │ ├── ulimit.go │ │ │ └── ulimit_test.go │ ├── emicklei │ │ └── go-restful │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── 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 │ │ │ ├── filter.go │ │ │ ├── filter_test.go │ │ │ ├── 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 │ │ │ ├── tracer_test.go │ │ │ ├── web_service.go │ │ │ ├── web_service_container.go │ │ │ └── web_service_test.go │ ├── go-openapi │ │ ├── jsonpointer │ │ │ ├── .editorconfig │ │ │ ├── .github │ │ │ │ └── CONTRIBUTING.md │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── pointer.go │ │ │ └── pointer_test.go │ │ ├── jsonreference │ │ │ ├── .github │ │ │ │ └── CONTRIBUTING.md │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── reference.go │ │ │ └── reference_test.go │ │ ├── spec │ │ │ ├── .editorconfig │ │ │ ├── .github │ │ │ │ └── CONTRIBUTING.md │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── auth_test.go │ │ │ ├── bindata.go │ │ │ ├── contact_info.go │ │ │ ├── contact_info_test.go │ │ │ ├── expander.go │ │ │ ├── expander_test.go │ │ │ ├── external_docs.go │ │ │ ├── external_docs_test.go │ │ │ ├── fixtures │ │ │ │ ├── expansion │ │ │ │ │ ├── all-the-things.json │ │ │ │ │ ├── circularRefs.json │ │ │ │ │ ├── circularSpec.json │ │ │ │ │ ├── circularSpec.yaml │ │ │ │ │ ├── clickmeter.json │ │ │ │ │ ├── clickmeter.yaml │ │ │ │ │ ├── invalid-refs.json │ │ │ │ │ ├── missingItemRef.json │ │ │ │ │ ├── missingRef.json │ │ │ │ │ ├── overflow.json │ │ │ │ │ ├── params.json │ │ │ │ │ ├── schemas1.json │ │ │ │ │ └── schemas2.json │ │ │ │ ├── local_expansion │ │ │ │ │ ├── item.json │ │ │ │ │ └── spec.json │ │ │ │ └── specs │ │ │ │ │ ├── deeper │ │ │ │ │ ├── arrayProp.json │ │ │ │ │ └── stringProp.json │ │ │ │ │ ├── refed.json │ │ │ │ │ ├── resolution.json │ │ │ │ │ └── resolution2.json │ │ │ ├── header.go │ │ │ ├── header_test.go │ │ │ ├── info.go │ │ │ ├── info_test.go │ │ │ ├── items.go │ │ │ ├── items_test.go │ │ │ ├── license.go │ │ │ ├── license_test.go │ │ │ ├── operation.go │ │ │ ├── operation_test.go │ │ │ ├── parameter.go │ │ │ ├── parameters_test.go │ │ │ ├── path_item.go │ │ │ ├── path_item_test.go │ │ │ ├── paths.go │ │ │ ├── paths_test.go │ │ │ ├── properties_test.go │ │ │ ├── ref.go │ │ │ ├── response.go │ │ │ ├── response_test.go │ │ │ ├── responses.go │ │ │ ├── schema.go │ │ │ ├── schema_test.go │ │ │ ├── schemas │ │ │ │ ├── jsonschema-draft-04.json │ │ │ │ └── v2 │ │ │ │ │ ├── README.md │ │ │ │ │ └── schema.json │ │ │ ├── security_scheme.go │ │ │ ├── spec.go │ │ │ ├── structs_test.go │ │ │ ├── swagger.go │ │ │ ├── swagger_test.go │ │ │ ├── tag.go │ │ │ ├── xml_object.go │ │ │ └── xml_object_test.go │ │ └── swag │ │ │ ├── .editorconfig │ │ │ ├── .github │ │ │ └── CONTRIBUTING.md │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── convert.go │ │ │ ├── convert_test.go │ │ │ ├── convert_types.go │ │ │ ├── convert_types_test.go │ │ │ ├── json.go │ │ │ ├── json_test.go │ │ │ ├── loading.go │ │ │ ├── loading_test.go │ │ │ ├── net.go │ │ │ ├── net_test.go │ │ │ ├── path.go │ │ │ ├── path_test.go │ │ │ ├── util.go │ │ │ ├── util_test.go │ │ │ ├── yaml.go │ │ │ └── yaml_test.go │ ├── golang │ │ └── glog │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── glog.go │ │ │ ├── glog_file.go │ │ │ └── glog_test.go │ ├── google │ │ └── gofuzz │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── fuzz.go │ │ │ └── fuzz_test.go │ ├── googleapis │ │ └── gnostic │ │ │ ├── .gitignore │ │ │ ├── .travis-install.sh │ │ │ ├── .travis.yml │ │ │ ├── COMPILE-PROTOS.sh │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── OpenAPIv2 │ │ │ ├── OpenAPIv2.go │ │ │ ├── OpenAPIv2.pb.go │ │ │ ├── OpenAPIv2.proto │ │ │ ├── README.md │ │ │ └── openapi-2.0.json │ │ │ ├── OpenAPIv3 │ │ │ ├── OpenAPIv3.go │ │ │ ├── OpenAPIv3.pb.go │ │ │ ├── OpenAPIv3.proto │ │ │ ├── README.md │ │ │ ├── openapi-3.0.json │ │ │ └── schema-generator │ │ │ │ ├── 3.0.md │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ │ ├── README.md │ │ │ ├── apps │ │ │ ├── disco │ │ │ │ ├── README.md │ │ │ │ ├── list.go │ │ │ │ ├── main.go │ │ │ │ ├── openapiv2.go │ │ │ │ └── openapiv3.go │ │ │ ├── petstore-builder │ │ │ │ ├── README.md │ │ │ │ ├── main.go │ │ │ │ ├── petstore-v2.go │ │ │ │ └── petstore-v3.go │ │ │ └── report │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ │ ├── compiler │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ ├── error.go │ │ │ ├── extension-handler.go │ │ │ ├── helpers.go │ │ │ ├── main.go │ │ │ └── reader.go │ │ │ ├── discovery │ │ │ ├── README.md │ │ │ ├── discovery.go │ │ │ ├── discovery.json │ │ │ ├── discovery.pb.go │ │ │ ├── discovery.proto │ │ │ └── discovery.yaml │ │ │ ├── examples │ │ │ ├── README.md │ │ │ ├── errors │ │ │ │ ├── petstore-badproperties.yaml │ │ │ │ ├── petstore-missingversion.yaml │ │ │ │ └── petstore-unresolvedrefs.yaml │ │ │ ├── v2.0 │ │ │ │ ├── json │ │ │ │ │ ├── api-with-examples.json │ │ │ │ │ ├── petstore-expanded.json │ │ │ │ │ ├── petstore-minimal.json │ │ │ │ │ ├── petstore-separate │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ └── Error.json │ │ │ │ │ │ └── spec │ │ │ │ │ │ │ ├── NewPet.json │ │ │ │ │ │ │ ├── Pet.json │ │ │ │ │ │ │ ├── parameters.json │ │ │ │ │ │ │ └── swagger.json │ │ │ │ │ ├── petstore-simple.json │ │ │ │ │ ├── petstore-with-external-docs.json │ │ │ │ │ ├── petstore.json │ │ │ │ │ └── uber.json │ │ │ │ └── yaml │ │ │ │ │ ├── api-with-examples.yaml │ │ │ │ │ ├── petstore-expanded.yaml │ │ │ │ │ ├── petstore-minimal.yaml │ │ │ │ │ ├── petstore-separate │ │ │ │ │ ├── common │ │ │ │ │ │ └── Error.yaml │ │ │ │ │ └── spec │ │ │ │ │ │ ├── NewPet.yaml │ │ │ │ │ │ ├── Pet.yaml │ │ │ │ │ │ ├── parameters.yaml │ │ │ │ │ │ ├── swagger.text │ │ │ │ │ │ └── swagger.yaml │ │ │ │ │ ├── petstore-simple.yaml │ │ │ │ │ ├── petstore-with-external-docs.yaml │ │ │ │ │ ├── petstore.yaml │ │ │ │ │ └── uber.yaml │ │ │ └── v3.0 │ │ │ │ ├── json │ │ │ │ └── petstore.json │ │ │ │ └── yaml │ │ │ │ └── petstore.yaml │ │ │ ├── extensions │ │ │ ├── COMPILE-EXTENSION.sh │ │ │ ├── README.md │ │ │ ├── extension.pb.go │ │ │ ├── extension.proto │ │ │ ├── extensions.go │ │ │ └── sample │ │ │ │ ├── Makefile │ │ │ │ ├── x-sampleone.json │ │ │ │ └── x-sampletwo.json │ │ │ ├── generate-gnostic │ │ │ ├── README.md │ │ │ ├── domain.go │ │ │ ├── generate-compiler.go │ │ │ ├── generate-extension.go │ │ │ ├── generate-extension_test.go │ │ │ ├── generate-proto.go │ │ │ ├── helpers.go │ │ │ ├── main.go │ │ │ ├── test │ │ │ │ ├── errors │ │ │ │ │ ├── x-extension-name-collision.errors │ │ │ │ │ └── x-unsupportedprimitives.errors │ │ │ │ ├── x-extension-name-collision.json │ │ │ │ └── x-unsupportedprimitives.json │ │ │ └── types.go │ │ │ ├── gnostic.go │ │ │ ├── gnostic_test.go │ │ │ ├── jsonschema │ │ │ ├── README.md │ │ │ ├── display.go │ │ │ ├── models.go │ │ │ ├── operations.go │ │ │ ├── reader.go │ │ │ ├── schema.json │ │ │ └── writer.go │ │ │ ├── jsonwriter │ │ │ ├── README.md │ │ │ └── writer.go │ │ │ ├── plugins │ │ │ ├── README.md │ │ │ ├── environment.go │ │ │ ├── gnostic-analyze │ │ │ │ ├── README.md │ │ │ │ ├── main.go │ │ │ │ ├── statistics │ │ │ │ │ ├── statsv2.go │ │ │ │ │ └── statsv3.go │ │ │ │ └── summarize │ │ │ │ │ └── main.go │ │ │ ├── gnostic-go-generator │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── examples │ │ │ │ │ ├── googleauth │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── googleauth.go │ │ │ │ │ ├── v2.0 │ │ │ │ │ │ ├── apis_guru │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ │ └── swagger.yaml │ │ │ │ │ │ ├── bookstore │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── bookstore.json │ │ │ │ │ │ │ ├── bookstore_test.go │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ │ ├── app.yaml │ │ │ │ │ │ │ │ ├── init.go │ │ │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ │ │ └── service.go │ │ │ │ │ │ └── xkcd │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ │ └── swagger.json │ │ │ │ │ └── v3.0 │ │ │ │ │ │ ├── bookstore │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── bookstore.json │ │ │ │ │ │ ├── bookstore_test.go │ │ │ │ │ │ └── service │ │ │ │ │ │ │ ├── app.yaml │ │ │ │ │ │ │ ├── init.go │ │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ │ └── service.go │ │ │ │ │ │ └── urlshortener │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── main.go │ │ │ │ ├── goimports.go │ │ │ │ ├── language.go │ │ │ │ ├── linewriter.go │ │ │ │ ├── main.go │ │ │ │ ├── render_client.go │ │ │ │ ├── render_constants.go │ │ │ │ ├── render_provider.go │ │ │ │ ├── render_server.go │ │ │ │ ├── render_types.go │ │ │ │ └── renderer.go │ │ │ ├── gnostic-lint-node │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ └── gnostic-lint-node.js │ │ │ ├── gnostic-lint │ │ │ │ ├── README.md │ │ │ │ ├── linter_v2.go │ │ │ │ ├── linter_v3.go │ │ │ │ └── main.go │ │ │ ├── gnostic-summary │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ │ ├── gnostic-swift-generator │ │ │ │ ├── Makefile │ │ │ │ ├── Package.swift │ │ │ │ ├── README.md │ │ │ │ ├── Sources │ │ │ │ │ ├── Gnostic │ │ │ │ │ │ ├── OpenAPIv2.pb.swift │ │ │ │ │ │ ├── OpenAPIv3.pb.swift │ │ │ │ │ │ ├── discovery.pb.swift │ │ │ │ │ │ ├── plugin.pb.swift │ │ │ │ │ │ └── surface.pb.swift │ │ │ │ │ └── gnostic-swift-generator │ │ │ │ │ │ ├── RenderClient.swift │ │ │ │ │ │ ├── RenderFetch.swift │ │ │ │ │ │ ├── RenderServer.swift │ │ │ │ │ │ ├── RenderTypes.swift │ │ │ │ │ │ ├── Renderer.swift │ │ │ │ │ │ ├── helpers.swift │ │ │ │ │ │ ├── io.swift │ │ │ │ │ │ └── main.swift │ │ │ │ ├── compile-protos │ │ │ │ └── examples │ │ │ │ │ └── bookstore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Package.swift │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Sources │ │ │ │ │ └── Server │ │ │ │ │ │ └── main.swift │ │ │ │ │ ├── Tests │ │ │ │ │ ├── BookstoreTests │ │ │ │ │ │ └── BookstoreTests.swift │ │ │ │ │ └── LinuxMain.swift │ │ │ │ │ └── bookstore.json │ │ │ ├── gnostic-swift-sample │ │ │ │ ├── Makefile │ │ │ │ ├── Package.swift │ │ │ │ ├── Sources │ │ │ │ │ ├── Gnostic │ │ │ │ │ │ ├── OpenAPIv2.pb.swift │ │ │ │ │ │ ├── OpenAPIv3.pb.swift │ │ │ │ │ │ ├── discovery.pb.swift │ │ │ │ │ │ ├── plugin.pb.swift │ │ │ │ │ │ └── surface.pb.swift │ │ │ │ │ └── gnostic-swift-sample │ │ │ │ │ │ ├── io.swift │ │ │ │ │ │ └── main.swift │ │ │ │ └── compile-protos │ │ │ ├── plugin.pb.go │ │ │ └── plugin.proto │ │ │ ├── printer │ │ │ ├── README.md │ │ │ └── code.go │ │ │ ├── surface │ │ │ ├── README.md │ │ │ ├── field.go │ │ │ ├── model.go │ │ │ ├── model_openapiv2.go │ │ │ ├── model_openapiv3.go │ │ │ ├── surface.pb.go │ │ │ ├── surface.proto │ │ │ └── type.go │ │ │ ├── test │ │ │ ├── README.md │ │ │ ├── errors │ │ │ │ ├── invalid-plugin-invocation.errors │ │ │ │ ├── petstore-badproperties.errors │ │ │ │ ├── petstore-missingversion.errors │ │ │ │ └── petstore-unresolvedrefs.errors │ │ │ ├── library-example-with-ext.json │ │ │ ├── library-example-with-ext.text.out │ │ │ ├── v2.0 │ │ │ │ ├── petstore.text │ │ │ │ └── yaml │ │ │ │ │ ├── petstore-separate │ │ │ │ │ └── spec │ │ │ │ │ │ └── swagger.text │ │ │ │ │ └── sample-petstore.out │ │ │ └── v3.0 │ │ │ │ └── petstore.text │ │ │ └── tools │ │ │ ├── README.md │ │ │ ├── format-schema │ │ │ └── main.go │ │ │ └── j2y2j │ │ │ └── main.go │ ├── mailru │ │ └── easyjson │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── benchmark │ │ │ ├── codec_test.go │ │ │ ├── data.go │ │ │ ├── data_codec.go │ │ │ ├── data_ffjson.go │ │ │ ├── data_var.go │ │ │ ├── default_test.go │ │ │ ├── dummy_test.go │ │ │ ├── easyjson_test.go │ │ │ ├── example.json │ │ │ ├── ffjson_test.go │ │ │ ├── jsoniter_test.go │ │ │ └── ujson.sh │ │ │ ├── bootstrap │ │ │ └── bootstrap.go │ │ │ ├── buffer │ │ │ ├── pool.go │ │ │ └── pool_test.go │ │ │ ├── easyjson │ │ │ └── main.go │ │ │ ├── gen │ │ │ ├── decoder.go │ │ │ ├── encoder.go │ │ │ ├── generator.go │ │ │ └── generator_test.go │ │ │ ├── helpers.go │ │ │ ├── jlexer │ │ │ ├── bytestostr.go │ │ │ ├── bytestostr_nounsafe.go │ │ │ ├── error.go │ │ │ ├── lexer.go │ │ │ └── lexer_test.go │ │ │ ├── jwriter │ │ │ └── writer.go │ │ │ ├── opt │ │ │ ├── gotemplate_Bool.go │ │ │ ├── gotemplate_Float32.go │ │ │ ├── gotemplate_Float64.go │ │ │ ├── gotemplate_Int.go │ │ │ ├── gotemplate_Int16.go │ │ │ ├── gotemplate_Int32.go │ │ │ ├── gotemplate_Int64.go │ │ │ ├── gotemplate_Int8.go │ │ │ ├── gotemplate_String.go │ │ │ ├── gotemplate_Uint.go │ │ │ ├── gotemplate_Uint16.go │ │ │ ├── gotemplate_Uint32.go │ │ │ ├── gotemplate_Uint64.go │ │ │ ├── gotemplate_Uint8.go │ │ │ ├── optional │ │ │ │ └── opt.go │ │ │ └── opts.go │ │ │ ├── parser │ │ │ ├── parser.go │ │ │ ├── parser_unix.go │ │ │ └── parser_windows.go │ │ │ ├── raw.go │ │ │ └── tests │ │ │ ├── basic_test.go │ │ │ ├── data.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── named_type.go │ │ │ ├── nested_easy.go │ │ │ ├── nothing.go │ │ │ ├── omitempty.go │ │ │ ├── opt_test.go │ │ │ ├── required_test.go │ │ │ └── snake.go │ ├── opencontainers │ │ └── go-digest │ │ │ ├── .mailmap │ │ │ ├── .pullapprove.yml │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.code │ │ │ ├── LICENSE.docs │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── algorithm.go │ │ │ ├── algorithm_test.go │ │ │ ├── digest.go │ │ │ ├── digest_test.go │ │ │ ├── digester.go │ │ │ ├── doc.go │ │ │ ├── verifiers.go │ │ │ └── verifiers_test.go │ └── pkg │ │ └── errors │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── bench_test.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── example_test.go │ │ ├── format_test.go │ │ ├── stack.go │ │ └── stack_test.go ├── golang.org │ └── x │ │ ├── net │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── bpf │ │ │ ├── asm.go │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── instructions.go │ │ │ ├── instructions_test.go │ │ │ ├── setter.go │ │ │ ├── testdata │ │ │ │ ├── all_instructions.bpf │ │ │ │ └── all_instructions.txt │ │ │ ├── vm.go │ │ │ ├── vm_aluop_test.go │ │ │ ├── vm_bpf_test.go │ │ │ ├── vm_extension_test.go │ │ │ ├── vm_instructions.go │ │ │ ├── vm_jump_test.go │ │ │ ├── vm_load_test.go │ │ │ ├── vm_ret_test.go │ │ │ ├── vm_scratch_test.go │ │ │ └── vm_test.go │ │ ├── codereview.cfg │ │ ├── context │ │ │ ├── context.go │ │ │ ├── context_test.go │ │ │ ├── ctxhttp │ │ │ │ ├── ctxhttp.go │ │ │ │ ├── ctxhttp_17_test.go │ │ │ │ ├── ctxhttp_pre17.go │ │ │ │ ├── ctxhttp_pre17_test.go │ │ │ │ └── ctxhttp_test.go │ │ │ ├── go17.go │ │ │ ├── go19.go │ │ │ ├── pre_go17.go │ │ │ ├── pre_go19.go │ │ │ └── withtimeout_test.go │ │ ├── dict │ │ │ └── dict.go │ │ ├── dns │ │ │ └── dnsmessage │ │ │ │ ├── example_test.go │ │ │ │ ├── message.go │ │ │ │ └── message_test.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 │ │ ├── http │ │ │ └── httpproxy │ │ │ │ ├── export_test.go │ │ │ │ ├── go19_test.go │ │ │ │ ├── proxy.go │ │ │ │ └── proxy_test.go │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ciphers.go │ │ │ ├── ciphers_test.go │ │ │ ├── client_conn_pool.go │ │ │ ├── configure_transport.go │ │ │ ├── databuffer.go │ │ │ ├── databuffer_test.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── flow.go │ │ │ ├── flow_test.go │ │ │ ├── frame.go │ │ │ ├── frame_test.go │ │ │ ├── go16.go │ │ │ ├── go17.go │ │ │ ├── go17_not18.go │ │ │ ├── go18.go │ │ │ ├── go18_test.go │ │ │ ├── go19.go │ │ │ ├── go19_test.go │ │ │ ├── gotrack.go │ │ │ ├── gotrack_test.go │ │ │ ├── h2demo │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── h2demo.go │ │ │ │ ├── launch.go │ │ │ │ ├── rootCA.key │ │ │ │ ├── rootCA.pem │ │ │ │ ├── rootCA.srl │ │ │ │ ├── server.crt │ │ │ │ ├── server.key │ │ │ │ └── tmpl.go │ │ │ ├── h2i │ │ │ │ ├── README.md │ │ │ │ └── h2i.go │ │ │ ├── headermap.go │ │ │ ├── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── encode_test.go │ │ │ │ ├── hpack.go │ │ │ │ ├── hpack_test.go │ │ │ │ ├── huffman.go │ │ │ │ ├── tables.go │ │ │ │ └── tables_test.go │ │ │ ├── http2.go │ │ │ ├── http2_test.go │ │ │ ├── not_go16.go │ │ │ ├── not_go17.go │ │ │ ├── not_go18.go │ │ │ ├── not_go19.go │ │ │ ├── pipe.go │ │ │ ├── pipe_test.go │ │ │ ├── server.go │ │ │ ├── server_push_test.go │ │ │ ├── server_test.go │ │ │ ├── testdata │ │ │ │ └── draft-ietf-httpbis-http2.xml │ │ │ ├── transport.go │ │ │ ├── transport_test.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ ├── writesched_priority.go │ │ │ ├── writesched_priority_test.go │ │ │ ├── writesched_random.go │ │ │ ├── writesched_random_test.go │ │ │ ├── writesched_test.go │ │ │ └── z_spec_test.go │ │ ├── icmp │ │ │ ├── dstunreach.go │ │ │ ├── echo.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── extension.go │ │ │ ├── extension_test.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 │ │ │ ├── example_test.go │ │ │ ├── idna.go │ │ │ ├── idna_test.go │ │ │ ├── punycode.go │ │ │ ├── punycode_test.go │ │ │ ├── tables.go │ │ │ ├── trie.go │ │ │ └── trieval.go │ │ ├── internal │ │ │ ├── iana │ │ │ │ ├── const.go │ │ │ │ └── gen.go │ │ │ ├── nettest │ │ │ │ ├── helper_bsd.go │ │ │ │ ├── helper_nobsd.go │ │ │ │ ├── helper_posix.go │ │ │ │ ├── helper_stub.go │ │ │ │ ├── helper_unix.go │ │ │ │ ├── helper_windows.go │ │ │ │ ├── interface.go │ │ │ │ ├── rlimit.go │ │ │ │ └── stack.go │ │ │ ├── socket │ │ │ │ ├── cmsghdr.go │ │ │ │ ├── cmsghdr_bsd.go │ │ │ │ ├── cmsghdr_linux_32bit.go │ │ │ │ ├── cmsghdr_linux_64bit.go │ │ │ │ ├── cmsghdr_solaris_64bit.go │ │ │ │ ├── cmsghdr_stub.go │ │ │ │ ├── defs_darwin.go │ │ │ │ ├── defs_dragonfly.go │ │ │ │ ├── defs_freebsd.go │ │ │ │ ├── defs_linux.go │ │ │ │ ├── defs_netbsd.go │ │ │ │ ├── defs_openbsd.go │ │ │ │ ├── defs_solaris.go │ │ │ │ ├── error_unix.go │ │ │ │ ├── error_windows.go │ │ │ │ ├── iovec_32bit.go │ │ │ │ ├── iovec_64bit.go │ │ │ │ ├── iovec_solaris_64bit.go │ │ │ │ ├── iovec_stub.go │ │ │ │ ├── mmsghdr_stub.go │ │ │ │ ├── mmsghdr_unix.go │ │ │ │ ├── msghdr_bsd.go │ │ │ │ ├── msghdr_bsdvar.go │ │ │ │ ├── msghdr_linux.go │ │ │ │ ├── msghdr_linux_32bit.go │ │ │ │ ├── msghdr_linux_64bit.go │ │ │ │ ├── msghdr_openbsd.go │ │ │ │ ├── msghdr_solaris_64bit.go │ │ │ │ ├── msghdr_stub.go │ │ │ │ ├── rawconn.go │ │ │ │ ├── rawconn_mmsg.go │ │ │ │ ├── rawconn_msg.go │ │ │ │ ├── rawconn_nommsg.go │ │ │ │ ├── rawconn_nomsg.go │ │ │ │ ├── rawconn_stub.go │ │ │ │ ├── reflect.go │ │ │ │ ├── socket.go │ │ │ │ ├── socket_go1_9_test.go │ │ │ │ ├── socket_test.go │ │ │ │ ├── sys.go │ │ │ │ ├── sys_bsd.go │ │ │ │ ├── sys_bsdvar.go │ │ │ │ ├── sys_darwin.go │ │ │ │ ├── sys_dragonfly.go │ │ │ │ ├── sys_linux.go │ │ │ │ ├── sys_linux_386.go │ │ │ │ ├── sys_linux_386.s │ │ │ │ ├── sys_linux_amd64.go │ │ │ │ ├── sys_linux_arm.go │ │ │ │ ├── sys_linux_arm64.go │ │ │ │ ├── sys_linux_mips.go │ │ │ │ ├── sys_linux_mips64.go │ │ │ │ ├── sys_linux_mips64le.go │ │ │ │ ├── sys_linux_mipsle.go │ │ │ │ ├── sys_linux_ppc64.go │ │ │ │ ├── sys_linux_ppc64le.go │ │ │ │ ├── sys_linux_s390x.go │ │ │ │ ├── sys_linux_s390x.s │ │ │ │ ├── sys_netbsd.go │ │ │ │ ├── sys_posix.go │ │ │ │ ├── sys_solaris.go │ │ │ │ ├── sys_solaris_amd64.s │ │ │ │ ├── sys_stub.go │ │ │ │ ├── sys_unix.go │ │ │ │ ├── sys_windows.go │ │ │ │ ├── zsys_darwin_386.go │ │ │ │ ├── zsys_darwin_amd64.go │ │ │ │ ├── zsys_darwin_arm.go │ │ │ │ ├── zsys_darwin_arm64.go │ │ │ │ ├── zsys_dragonfly_amd64.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_mips.go │ │ │ │ ├── zsys_linux_mips64.go │ │ │ │ ├── zsys_linux_mips64le.go │ │ │ │ ├── zsys_linux_mipsle.go │ │ │ │ ├── zsys_linux_ppc64.go │ │ │ │ ├── zsys_linux_ppc64le.go │ │ │ │ ├── zsys_linux_s390x.go │ │ │ │ ├── zsys_netbsd_386.go │ │ │ │ ├── zsys_netbsd_amd64.go │ │ │ │ ├── zsys_netbsd_arm.go │ │ │ │ ├── zsys_openbsd_386.go │ │ │ │ ├── zsys_openbsd_amd64.go │ │ │ │ ├── zsys_openbsd_arm.go │ │ │ │ └── zsys_solaris_amd64.go │ │ │ └── timeseries │ │ │ │ ├── timeseries.go │ │ │ │ └── timeseries_test.go │ │ ├── ipv4 │ │ │ ├── batch.go │ │ │ ├── bpf_test.go │ │ │ ├── control.go │ │ │ ├── control_bsd.go │ │ │ ├── control_pktinfo.go │ │ │ ├── control_stub.go │ │ │ ├── control_test.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.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── header_test.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_test.go │ │ │ ├── multicast_test.go │ │ │ ├── multicastlistener_test.go │ │ │ ├── multicastsockopt_test.go │ │ │ ├── packet.go │ │ │ ├── packet_go1_8.go │ │ │ ├── packet_go1_9.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_cmsg_go1_8.go │ │ │ ├── payload_cmsg_go1_9.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── readwrite_go1_8_test.go │ │ │ ├── readwrite_go1_9_test.go │ │ │ ├── readwrite_test.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sys_asmreq.go │ │ │ ├── sys_asmreq_stub.go │ │ │ ├── sys_asmreqn.go │ │ │ ├── sys_asmreqn_stub.go │ │ │ ├── sys_bpf.go │ │ │ ├── sys_bpf_stub.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_ssmreq.go │ │ │ ├── sys_ssmreq_stub.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── 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_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ └── zsys_solaris.go │ │ ├── ipv6 │ │ │ ├── batch.go │ │ │ ├── bpf_test.go │ │ │ ├── control.go │ │ │ ├── control_rfc2292_unix.go │ │ │ ├── control_rfc3542_unix.go │ │ │ ├── control_stub.go │ │ │ ├── control_test.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.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── header_test.go │ │ │ ├── helper.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_cmsg_go1_8.go │ │ │ ├── payload_cmsg_go1_9.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── readwrite_go1_8_test.go │ │ │ ├── readwrite_go1_9_test.go │ │ │ ├── readwrite_test.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sockopt_test.go │ │ │ ├── sys_asmreq.go │ │ │ ├── sys_asmreq_stub.go │ │ │ ├── sys_bpf.go │ │ │ ├── sys_bpf_stub.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_ssmreq.go │ │ │ ├── sys_ssmreq_stub.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── 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_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ └── zsys_solaris.go │ │ ├── lex │ │ │ └── httplex │ │ │ │ ├── httplex.go │ │ │ │ └── httplex_test.go │ │ ├── lif │ │ │ ├── address.go │ │ │ ├── address_test.go │ │ │ ├── binary.go │ │ │ ├── defs_solaris.go │ │ │ ├── lif.go │ │ │ ├── link.go │ │ │ ├── link_test.go │ │ │ ├── sys.go │ │ │ ├── sys_solaris_amd64.s │ │ │ ├── syscall.go │ │ │ └── zsys_solaris_amd64.go │ │ ├── nettest │ │ │ ├── conntest.go │ │ │ ├── conntest_go16.go │ │ │ ├── conntest_go17.go │ │ │ └── conntest_test.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 │ │ ├── route │ │ │ ├── address.go │ │ │ ├── address_darwin_test.go │ │ │ ├── address_test.go │ │ │ ├── binary.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── interface.go │ │ │ ├── interface_announce.go │ │ │ ├── interface_classic.go │ │ │ ├── interface_freebsd.go │ │ │ ├── interface_multicast.go │ │ │ ├── interface_openbsd.go │ │ │ ├── message.go │ │ │ ├── message_darwin_test.go │ │ │ ├── message_freebsd_test.go │ │ │ ├── message_test.go │ │ │ ├── route.go │ │ │ ├── route_classic.go │ │ │ ├── route_openbsd.go │ │ │ ├── route_test.go │ │ │ ├── sys.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_netbsd.go │ │ │ ├── sys_openbsd.go │ │ │ ├── syscall.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_netbsd.go │ │ │ └── zsys_openbsd.go │ │ ├── trace │ │ │ ├── events.go │ │ │ ├── histogram.go │ │ │ ├── histogram_test.go │ │ │ ├── trace.go │ │ │ ├── trace_go16.go │ │ │ ├── trace_go17.go │ │ │ └── trace_test.go │ │ ├── webdav │ │ │ ├── file.go │ │ │ ├── file_go1.6.go │ │ │ ├── file_go1.7.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 │ │ │ ├── dial.go │ │ │ ├── dial_test.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 │ │ └── text │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── cases │ │ ├── cases.go │ │ ├── context.go │ │ ├── context_test.go │ │ ├── example_test.go │ │ ├── fold.go │ │ ├── fold_test.go │ │ ├── gen.go │ │ ├── gen_trieval.go │ │ ├── icu.go │ │ ├── icu_test.go │ │ ├── info.go │ │ ├── map.go │ │ ├── map_test.go │ │ ├── tables10.0.0.go │ │ ├── tables10.0.0_test.go │ │ ├── tables9.0.0.go │ │ ├── tables9.0.0_test.go │ │ └── trieval.go │ │ ├── cmd │ │ └── gotext │ │ │ ├── common.go │ │ │ ├── doc.go │ │ │ ├── examples │ │ │ ├── extract │ │ │ │ ├── catalog.go │ │ │ │ ├── locales │ │ │ │ │ ├── de │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ ├── en-US │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ └── zh │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ └── out.gotext.json │ │ │ │ └── main.go │ │ │ ├── extract_http │ │ │ │ ├── catalog_gen.go │ │ │ │ ├── locales │ │ │ │ │ ├── de │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ ├── en-US │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ ├── en │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ └── zh │ │ │ │ │ │ └── out.gotext.json │ │ │ │ ├── main.go │ │ │ │ └── pkg │ │ │ │ │ └── pkg.go │ │ │ └── rewrite │ │ │ │ ├── main.go │ │ │ │ └── printer.go │ │ │ ├── extract.go │ │ │ ├── generate.go │ │ │ ├── main.go │ │ │ ├── rewrite.go │ │ │ └── update.go │ │ ├── codereview.cfg │ │ ├── collate │ │ ├── build │ │ │ ├── builder.go │ │ │ ├── builder_test.go │ │ │ ├── colelem.go │ │ │ ├── colelem_test.go │ │ │ ├── contract.go │ │ │ ├── contract_test.go │ │ │ ├── order.go │ │ │ ├── order_test.go │ │ │ ├── table.go │ │ │ ├── trie.go │ │ │ └── trie_test.go │ │ ├── collate.go │ │ ├── collate_test.go │ │ ├── export_test.go │ │ ├── index.go │ │ ├── maketables.go │ │ ├── option.go │ │ ├── option_test.go │ │ ├── reg_test.go │ │ ├── sort.go │ │ ├── sort_test.go │ │ ├── table_test.go │ │ ├── tables.go │ │ └── tools │ │ │ └── colcmp │ │ │ ├── Makefile │ │ │ ├── chars.go │ │ │ ├── col.go │ │ │ ├── colcmp.go │ │ │ ├── darwin.go │ │ │ ├── gen.go │ │ │ └── icu.go │ │ ├── currency │ │ ├── common.go │ │ ├── currency.go │ │ ├── currency_test.go │ │ ├── example_test.go │ │ ├── format.go │ │ ├── format_test.go │ │ ├── gen.go │ │ ├── gen_common.go │ │ ├── query.go │ │ ├── query_test.go │ │ ├── tables.go │ │ └── tables_test.go │ │ ├── date │ │ ├── data_test.go │ │ ├── gen.go │ │ ├── gen_test.go │ │ └── tables.go │ │ ├── doc.go │ │ ├── encoding │ │ ├── charmap │ │ │ ├── charmap.go │ │ │ ├── charmap_test.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ ├── encoding.go │ │ ├── encoding_test.go │ │ ├── example_test.go │ │ ├── htmlindex │ │ │ ├── gen.go │ │ │ ├── htmlindex.go │ │ │ ├── htmlindex_test.go │ │ │ ├── map.go │ │ │ └── tables.go │ │ ├── ianaindex │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── ianaindex.go │ │ │ ├── ianaindex_test.go │ │ │ └── tables.go │ │ ├── internal │ │ │ ├── enctest │ │ │ │ └── enctest.go │ │ │ ├── identifier │ │ │ │ ├── gen.go │ │ │ │ ├── identifier.go │ │ │ │ └── mib.go │ │ │ └── internal.go │ │ ├── japanese │ │ │ ├── all.go │ │ │ ├── all_test.go │ │ │ ├── eucjp.go │ │ │ ├── iso2022jp.go │ │ │ ├── maketables.go │ │ │ ├── shiftjis.go │ │ │ └── tables.go │ │ ├── korean │ │ │ ├── all_test.go │ │ │ ├── euckr.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ ├── simplifiedchinese │ │ │ ├── all.go │ │ │ ├── all_test.go │ │ │ ├── gbk.go │ │ │ ├── hzgb2312.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ ├── testdata │ │ │ ├── candide-gb18030.txt │ │ │ ├── candide-utf-16le.txt │ │ │ ├── candide-utf-32be.txt │ │ │ ├── candide-utf-8.txt │ │ │ ├── candide-windows-1252.txt │ │ │ ├── rashomon-euc-jp.txt │ │ │ ├── rashomon-iso-2022-jp.txt │ │ │ ├── rashomon-shift-jis.txt │ │ │ ├── rashomon-utf-8.txt │ │ │ ├── sunzi-bingfa-gb-levels-1-and-2-hz-gb2312.txt │ │ │ ├── sunzi-bingfa-gb-levels-1-and-2-utf-8.txt │ │ │ ├── sunzi-bingfa-simplified-gbk.txt │ │ │ ├── sunzi-bingfa-simplified-utf-8.txt │ │ │ ├── sunzi-bingfa-traditional-big5.txt │ │ │ ├── sunzi-bingfa-traditional-utf-8.txt │ │ │ ├── unsu-joh-eun-nal-euc-kr.txt │ │ │ └── unsu-joh-eun-nal-utf-8.txt │ │ ├── traditionalchinese │ │ │ ├── all_test.go │ │ │ ├── big5.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ └── unicode │ │ │ ├── override.go │ │ │ ├── unicode.go │ │ │ ├── unicode_test.go │ │ │ └── utf32 │ │ │ ├── utf32.go │ │ │ └── utf32_test.go │ │ ├── feature │ │ └── plural │ │ │ ├── common.go │ │ │ ├── data_test.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── message.go │ │ │ ├── message_test.go │ │ │ ├── plural.go │ │ │ ├── plural_test.go │ │ │ └── tables.go │ │ ├── gen.go │ │ ├── internal │ │ ├── catmsg │ │ │ ├── catmsg.go │ │ │ ├── catmsg_test.go │ │ │ ├── codec.go │ │ │ ├── varint.go │ │ │ └── varint_test.go │ │ ├── cldrtree │ │ │ ├── cldrtree.go │ │ │ ├── cldrtree_test.go │ │ │ ├── generate.go │ │ │ ├── option.go │ │ │ ├── testdata │ │ │ │ ├── test1 │ │ │ │ │ ├── common │ │ │ │ │ │ └── main │ │ │ │ │ │ │ └── root.xml │ │ │ │ │ └── output.go │ │ │ │ └── test2 │ │ │ │ │ ├── common │ │ │ │ │ └── main │ │ │ │ │ │ ├── en.xml │ │ │ │ │ │ ├── en_001.xml │ │ │ │ │ │ ├── en_GB.xml │ │ │ │ │ │ └── root.xml │ │ │ │ │ └── output.go │ │ │ ├── tree.go │ │ │ └── type.go │ │ ├── colltab │ │ │ ├── collate_test.go │ │ │ ├── collelem.go │ │ │ ├── collelem_test.go │ │ │ ├── colltab.go │ │ │ ├── colltab_test.go │ │ │ ├── contract.go │ │ │ ├── contract_test.go │ │ │ ├── iter.go │ │ │ ├── iter_test.go │ │ │ ├── numeric.go │ │ │ ├── numeric_test.go │ │ │ ├── table.go │ │ │ ├── trie.go │ │ │ ├── trie_test.go │ │ │ ├── weighter.go │ │ │ └── weighter_test.go │ │ ├── export │ │ │ ├── README │ │ │ └── idna │ │ │ │ ├── common_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen10.0.0_test.go │ │ │ │ ├── gen9.0.0_test.go │ │ │ │ ├── gen_common.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── idna10.0.0.go │ │ │ │ ├── idna10.0.0_test.go │ │ │ │ ├── idna9.0.0.go │ │ │ │ ├── idna9.0.0_test.go │ │ │ │ ├── idna_test.go │ │ │ │ ├── punycode.go │ │ │ │ ├── punycode_test.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── trie.go │ │ │ │ └── trieval.go │ │ ├── format │ │ │ ├── format.go │ │ │ ├── parser.go │ │ │ └── parser_test.go │ │ ├── gen.go │ │ ├── gen │ │ │ ├── code.go │ │ │ └── gen.go │ │ ├── gen_test.go │ │ ├── internal.go │ │ ├── internal_test.go │ │ ├── match.go │ │ ├── match_test.go │ │ ├── number │ │ │ ├── common.go │ │ │ ├── decimal.go │ │ │ ├── decimal_test.go │ │ │ ├── format.go │ │ │ ├── format_test.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── number.go │ │ │ ├── number_test.go │ │ │ ├── pattern.go │ │ │ ├── pattern_test.go │ │ │ ├── roundingmode_string.go │ │ │ ├── tables.go │ │ │ └── tables_test.go │ │ ├── stringset │ │ │ ├── set.go │ │ │ └── set_test.go │ │ ├── tables.go │ │ ├── tag │ │ │ ├── tag.go │ │ │ └── tag_test.go │ │ ├── testtext │ │ │ ├── codesize.go │ │ │ ├── flag.go │ │ │ ├── gc.go │ │ │ ├── gccgo.go │ │ │ ├── go1_6.go │ │ │ ├── go1_7.go │ │ │ └── text.go │ │ ├── triegen │ │ │ ├── compact.go │ │ │ ├── data_test.go │ │ │ ├── example_compact_test.go │ │ │ ├── example_test.go │ │ │ ├── gen_test.go │ │ │ ├── print.go │ │ │ └── triegen.go │ │ ├── ucd │ │ │ ├── example_test.go │ │ │ ├── ucd.go │ │ │ └── ucd_test.go │ │ └── utf8internal │ │ │ └── utf8internal.go │ │ ├── language │ │ ├── Makefile │ │ ├── common.go │ │ ├── coverage.go │ │ ├── coverage_test.go │ │ ├── display │ │ │ ├── dict.go │ │ │ ├── dict_test.go │ │ │ ├── display.go │ │ │ ├── display_test.go │ │ │ ├── examples_test.go │ │ │ ├── lookup.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ ├── doc.go │ │ ├── examples_test.go │ │ ├── gen.go │ │ ├── gen_common.go │ │ ├── gen_index.go │ │ ├── go1_1.go │ │ ├── go1_2.go │ │ ├── httpexample_test.go │ │ ├── index.go │ │ ├── language.go │ │ ├── language_test.go │ │ ├── lookup.go │ │ ├── lookup_test.go │ │ ├── match.go │ │ ├── match_test.go │ │ ├── parse.go │ │ ├── parse_test.go │ │ ├── tables.go │ │ ├── tags.go │ │ └── testdata │ │ │ ├── CLDRLocaleMatcherTest.txt │ │ │ └── GoLocaleMatcherTest.txt │ │ ├── message │ │ ├── catalog.go │ │ ├── catalog │ │ │ ├── catalog.go │ │ │ ├── catalog_test.go │ │ │ ├── dict.go │ │ │ ├── go19.go │ │ │ └── gopre19.go │ │ ├── catalog_test.go │ │ ├── doc.go │ │ ├── examples_test.go │ │ ├── fmt_test.go │ │ ├── format.go │ │ ├── message.go │ │ ├── message_test.go │ │ ├── pipeline │ │ │ ├── extract.go │ │ │ ├── generate.go │ │ │ ├── go19_test.go │ │ │ ├── message.go │ │ │ ├── pipeline.go │ │ │ ├── pipeline_test.go │ │ │ ├── rewrite.go │ │ │ └── testdata │ │ │ │ └── test1 │ │ │ │ ├── catalog_gen.go │ │ │ │ ├── catalog_gen.go.want │ │ │ │ ├── catalog_test.go │ │ │ │ ├── extracted.gotext.json │ │ │ │ ├── extracted.gotext.json.want │ │ │ │ ├── locales │ │ │ │ ├── de │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ ├── out.gotext.json │ │ │ │ │ └── out.gotext.json.want │ │ │ │ ├── en-US │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ ├── out.gotext.json │ │ │ │ │ └── out.gotext.json.want │ │ │ │ └── zh │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ ├── out.gotext.json │ │ │ │ │ └── out.gotext.json.want │ │ │ │ └── test1.go │ │ └── print.go │ │ ├── number │ │ ├── doc.go │ │ ├── examples_test.go │ │ ├── format.go │ │ ├── format_test.go │ │ ├── number.go │ │ ├── number_test.go │ │ └── option.go │ │ ├── runes │ │ ├── cond.go │ │ ├── cond_test.go │ │ ├── example_test.go │ │ ├── runes.go │ │ └── runes_test.go │ │ ├── search │ │ ├── index.go │ │ ├── pattern.go │ │ ├── pattern_test.go │ │ ├── search.go │ │ └── tables.go │ │ ├── secure │ │ ├── bidirule │ │ │ ├── bench_test.go │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ ├── bidirule10.0.0_test.go │ │ │ ├── bidirule9.0.0.go │ │ │ ├── bidirule9.0.0_test.go │ │ │ └── bidirule_test.go │ │ ├── doc.go │ │ └── precis │ │ │ ├── benchmark_test.go │ │ │ ├── class.go │ │ │ ├── class_test.go │ │ │ ├── context.go │ │ │ ├── doc.go │ │ │ ├── enforce10.0.0_test.go │ │ │ ├── enforce9.0.0_test.go │ │ │ ├── enforce_test.go │ │ │ ├── gen.go │ │ │ ├── gen_trieval.go │ │ │ ├── nickname.go │ │ │ ├── options.go │ │ │ ├── profile.go │ │ │ ├── profile_test.go │ │ │ ├── profiles.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── tables_test.go │ │ │ ├── transformer.go │ │ │ └── trieval.go │ │ ├── transform │ │ ├── examples_test.go │ │ ├── transform.go │ │ └── transform_test.go │ │ ├── unicode │ │ ├── bidi │ │ │ ├── bidi.go │ │ │ ├── bracket.go │ │ │ ├── core.go │ │ │ ├── core_test.go │ │ │ ├── gen.go │ │ │ ├── gen_ranges.go │ │ │ ├── gen_trieval.go │ │ │ ├── prop.go │ │ │ ├── ranges_test.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── tables_test.go │ │ │ └── trieval.go │ │ ├── cldr │ │ │ ├── base.go │ │ │ ├── cldr.go │ │ │ ├── cldr_test.go │ │ │ ├── collate.go │ │ │ ├── collate_test.go │ │ │ ├── data_test.go │ │ │ ├── decode.go │ │ │ ├── examples_test.go │ │ │ ├── makexml.go │ │ │ ├── resolve.go │ │ │ ├── resolve_test.go │ │ │ ├── slice.go │ │ │ ├── slice_test.go │ │ │ └── xml.go │ │ ├── doc.go │ │ ├── norm │ │ │ ├── composition.go │ │ │ ├── composition_test.go │ │ │ ├── data10.0.0_test.go │ │ │ ├── data9.0.0_test.go │ │ │ ├── example_iter_test.go │ │ │ ├── example_test.go │ │ │ ├── forminfo.go │ │ │ ├── forminfo_test.go │ │ │ ├── input.go │ │ │ ├── iter.go │ │ │ ├── iter_test.go │ │ │ ├── maketables.go │ │ │ ├── normalize.go │ │ │ ├── normalize_test.go │ │ │ ├── readwriter.go │ │ │ ├── readwriter_test.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ ├── transform_test.go │ │ │ ├── trie.go │ │ │ ├── triegen.go │ │ │ └── ucd_test.go │ │ ├── rangetable │ │ │ ├── gen.go │ │ │ ├── merge.go │ │ │ ├── merge_test.go │ │ │ ├── rangetable.go │ │ │ ├── rangetable_test.go │ │ │ ├── tables10.0.0.go │ │ │ └── tables9.0.0.go │ │ └── runenames │ │ │ ├── bits.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── gen_bits.go │ │ │ ├── runenames.go │ │ │ ├── runenames_test.go │ │ │ └── tables.go │ │ └── width │ │ ├── common_test.go │ │ ├── example_test.go │ │ ├── gen.go │ │ ├── gen_common.go │ │ ├── gen_trieval.go │ │ ├── kind_string.go │ │ ├── runes_test.go │ │ ├── tables10.0.0.go │ │ ├── tables9.0.0.go │ │ ├── tables_test.go │ │ ├── transform.go │ │ ├── transform_test.go │ │ ├── trieval.go │ │ └── width.go ├── gopkg.in │ └── yaml.v2 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── decode_test.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── example_embedded_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 │ ├── api │ │ ├── Godeps │ │ │ ├── Godeps.json │ │ │ └── Readme │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── admission │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── admissionregistration │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── apps │ │ │ ├── OWNERS │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta2 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── authentication │ │ │ ├── OWNERS │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── authorization │ │ │ ├── OWNERS │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── autoscaling │ │ │ ├── OWNERS │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v2beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── batch │ │ │ ├── OWNERS │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v2alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── certificates │ │ │ ├── OWNERS │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── code-of-conduct.md │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── annotation_key_constants.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── meta.go │ │ │ │ ├── objectreference.go │ │ │ │ ├── register.go │ │ │ │ ├── resource.go │ │ │ │ ├── taint.go │ │ │ │ ├── taint_test.go │ │ │ │ ├── toleration.go │ │ │ │ ├── toleration_test.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── events │ │ │ ├── OWNERS │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── extensions │ │ │ ├── OWNERS │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── imagepolicy │ │ │ ├── OWNERS │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── networking │ │ │ ├── OWNERS │ │ │ └── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── policy │ │ │ ├── OWNERS │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── rbac │ │ │ ├── OWNERS │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── scheduling │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── settings │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── storage │ │ │ ├── OWNERS │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── vendor │ │ │ ├── github.com │ │ │ ├── PuerkitoBio │ │ │ │ ├── purell │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── purell.go │ │ │ │ └── urlesc │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── urlesc.go │ │ │ ├── emicklei │ │ │ │ └── go-restful │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CHANGES.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Srcfile │ │ │ │ │ ├── bench_test.sh │ │ │ │ │ ├── compress.go │ │ │ │ │ ├── compressor_cache.go │ │ │ │ │ ├── compressor_pools.go │ │ │ │ │ ├── compressors.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── container.go │ │ │ │ │ ├── cors_filter.go │ │ │ │ │ ├── coverage.sh │ │ │ │ │ ├── curly.go │ │ │ │ │ ├── curly_route.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── entity_accessors.go │ │ │ │ │ ├── filter.go │ │ │ │ │ ├── jsr311.go │ │ │ │ │ ├── log │ │ │ │ │ └── log.go │ │ │ │ │ ├── logger.go │ │ │ │ │ ├── mime.go │ │ │ │ │ ├── options_filter.go │ │ │ │ │ ├── parameter.go │ │ │ │ │ ├── path_expression.go │ │ │ │ │ ├── request.go │ │ │ │ │ ├── response.go │ │ │ │ │ ├── route.go │ │ │ │ │ ├── route_builder.go │ │ │ │ │ ├── router.go │ │ │ │ │ ├── service_error.go │ │ │ │ │ ├── web_service.go │ │ │ │ │ └── web_service_container.go │ │ │ ├── gogo │ │ │ │ └── protobuf │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── proto │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clone.go │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── decode_gogo.go │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── duration_gogo.go │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── encode_gogo.go │ │ │ │ │ ├── equal.go │ │ │ │ │ ├── extensions.go │ │ │ │ │ ├── extensions_gogo.go │ │ │ │ │ ├── lib.go │ │ │ │ │ ├── lib_gogo.go │ │ │ │ │ ├── message_set.go │ │ │ │ │ ├── pointer_reflect.go │ │ │ │ │ ├── pointer_reflect_gogo.go │ │ │ │ │ ├── pointer_unsafe.go │ │ │ │ │ ├── pointer_unsafe_gogo.go │ │ │ │ │ ├── properties.go │ │ │ │ │ ├── properties_gogo.go │ │ │ │ │ ├── skip_gogo.go │ │ │ │ │ ├── text.go │ │ │ │ │ ├── text_gogo.go │ │ │ │ │ ├── text_parser.go │ │ │ │ │ ├── timestamp.go │ │ │ │ │ └── timestamp_gogo.go │ │ │ │ │ └── sortkeys │ │ │ │ │ └── sortkeys.go │ │ │ ├── mailru │ │ │ │ └── easyjson │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── buffer │ │ │ │ │ └── pool.go │ │ │ │ │ ├── jlexer │ │ │ │ │ ├── bytestostr.go │ │ │ │ │ ├── bytestostr_nounsafe.go │ │ │ │ │ ├── error.go │ │ │ │ │ └── lexer.go │ │ │ │ │ └── jwriter │ │ │ │ │ └── writer.go │ │ │ └── spf13 │ │ │ │ └── pflag │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bool.go │ │ │ │ ├── bool_slice.go │ │ │ │ ├── count.go │ │ │ │ ├── duration.go │ │ │ │ ├── flag.go │ │ │ │ ├── float32.go │ │ │ │ ├── float64.go │ │ │ │ ├── golangflag.go │ │ │ │ ├── int.go │ │ │ │ ├── int32.go │ │ │ │ ├── int64.go │ │ │ │ ├── int8.go │ │ │ │ ├── int_slice.go │ │ │ │ ├── ip.go │ │ │ │ ├── ip_slice.go │ │ │ │ ├── ipmask.go │ │ │ │ ├── ipnet.go │ │ │ │ ├── string.go │ │ │ │ ├── string_array.go │ │ │ │ ├── string_slice.go │ │ │ │ ├── uint.go │ │ │ │ ├── uint16.go │ │ │ │ ├── uint32.go │ │ │ │ ├── uint64.go │ │ │ │ ├── uint8.go │ │ │ │ └── uint_slice.go │ │ │ ├── golang.org │ │ │ └── x │ │ │ │ ├── net │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── http2 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── ciphers.go │ │ │ │ │ ├── client_conn_pool.go │ │ │ │ │ ├── configure_transport.go │ │ │ │ │ ├── databuffer.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── flow.go │ │ │ │ │ ├── frame.go │ │ │ │ │ ├── go16.go │ │ │ │ │ ├── go17.go │ │ │ │ │ ├── go17_not18.go │ │ │ │ │ ├── go18.go │ │ │ │ │ ├── go19.go │ │ │ │ │ ├── gotrack.go │ │ │ │ │ ├── headermap.go │ │ │ │ │ ├── hpack │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ ├── hpack.go │ │ │ │ │ │ ├── huffman.go │ │ │ │ │ │ └── tables.go │ │ │ │ │ ├── http2.go │ │ │ │ │ ├── not_go16.go │ │ │ │ │ ├── not_go17.go │ │ │ │ │ ├── not_go18.go │ │ │ │ │ ├── not_go19.go │ │ │ │ │ ├── pipe.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── transport.go │ │ │ │ │ ├── write.go │ │ │ │ │ ├── writesched.go │ │ │ │ │ ├── writesched_priority.go │ │ │ │ │ └── writesched_random.go │ │ │ │ ├── idna │ │ │ │ │ ├── idna.go │ │ │ │ │ ├── punycode.go │ │ │ │ │ ├── tables.go │ │ │ │ │ ├── trie.go │ │ │ │ │ └── trieval.go │ │ │ │ └── lex │ │ │ │ │ └── httplex │ │ │ │ │ └── httplex.go │ │ │ │ └── text │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── cases │ │ │ │ ├── cases.go │ │ │ │ ├── context.go │ │ │ │ ├── fold.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── icu.go │ │ │ │ ├── info.go │ │ │ │ ├── map.go │ │ │ │ ├── tables.go │ │ │ │ └── trieval.go │ │ │ │ ├── internal │ │ │ │ ├── gen.go │ │ │ │ ├── internal.go │ │ │ │ ├── match.go │ │ │ │ ├── tables.go │ │ │ │ └── tag │ │ │ │ │ └── tag.go │ │ │ │ ├── language │ │ │ │ ├── Makefile │ │ │ │ ├── common.go │ │ │ │ ├── coverage.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_common.go │ │ │ │ ├── gen_index.go │ │ │ │ ├── go1_1.go │ │ │ │ ├── go1_2.go │ │ │ │ ├── index.go │ │ │ │ ├── language.go │ │ │ │ ├── lookup.go │ │ │ │ ├── match.go │ │ │ │ ├── parse.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ │ ├── runes │ │ │ │ ├── cond.go │ │ │ │ └── runes.go │ │ │ │ ├── secure │ │ │ │ ├── bidirule │ │ │ │ │ └── bidirule.go │ │ │ │ └── precis │ │ │ │ │ ├── class.go │ │ │ │ │ ├── context.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── gen_trieval.go │ │ │ │ │ ├── nickname.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── profile.go │ │ │ │ │ ├── profiles.go │ │ │ │ │ ├── tables.go │ │ │ │ │ ├── transformer.go │ │ │ │ │ └── trieval.go │ │ │ │ ├── transform │ │ │ │ └── transform.go │ │ │ │ ├── unicode │ │ │ │ ├── bidi │ │ │ │ │ ├── bidi.go │ │ │ │ │ ├── bracket.go │ │ │ │ │ ├── core.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── gen_ranges.go │ │ │ │ │ ├── gen_trieval.go │ │ │ │ │ ├── prop.go │ │ │ │ │ ├── tables.go │ │ │ │ │ └── trieval.go │ │ │ │ └── norm │ │ │ │ │ ├── composition.go │ │ │ │ │ ├── forminfo.go │ │ │ │ │ ├── input.go │ │ │ │ │ ├── iter.go │ │ │ │ │ ├── maketables.go │ │ │ │ │ ├── normalize.go │ │ │ │ │ ├── readwriter.go │ │ │ │ │ ├── tables.go │ │ │ │ │ ├── transform.go │ │ │ │ │ ├── trie.go │ │ │ │ │ └── triegen.go │ │ │ │ └── width │ │ │ │ ├── gen.go │ │ │ │ ├── gen_common.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── kind_string.go │ │ │ │ ├── tables.go │ │ │ │ ├── transform.go │ │ │ │ ├── trieval.go │ │ │ │ └── width.go │ │ │ └── gopkg.in │ │ │ ├── inf.v0 │ │ │ ├── LICENSE │ │ │ ├── dec.go │ │ │ └── rounder.go │ │ │ └── yaml.v2 │ │ │ ├── LICENSE │ │ │ ├── LICENSE.libyaml │ │ │ ├── README.md │ │ │ ├── apic.go │ │ │ ├── decode.go │ │ │ ├── emitterc.go │ │ │ ├── encode.go │ │ │ ├── parserc.go │ │ │ ├── readerc.go │ │ │ ├── resolve.go │ │ │ ├── scannerc.go │ │ │ ├── sorter.go │ │ │ ├── writerc.go │ │ │ ├── yaml.go │ │ │ ├── yamlh.go │ │ │ └── yamlprivateh.go │ ├── apimachinery │ │ ├── Godeps │ │ │ ├── Godeps.json │ │ │ └── Readme │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── code-of-conduct.md │ │ ├── pkg │ │ │ ├── OWNERS │ │ │ ├── api │ │ │ │ ├── equality │ │ │ │ │ ├── BUILD │ │ │ │ │ └── semantic.go │ │ │ │ ├── errors │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── errors_test.go │ │ │ │ ├── meta │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── firsthit_restmapper.go │ │ │ │ │ ├── help.go │ │ │ │ │ ├── interfaces.go │ │ │ │ │ ├── lazy.go │ │ │ │ │ ├── meta.go │ │ │ │ │ ├── meta_test.go │ │ │ │ │ ├── multirestmapper.go │ │ │ │ │ ├── multirestmapper_test.go │ │ │ │ │ ├── priority.go │ │ │ │ │ ├── priority_test.go │ │ │ │ │ ├── restmapper.go │ │ │ │ │ ├── restmapper_test.go │ │ │ │ │ └── unstructured.go │ │ │ │ ├── resource │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── amount.go │ │ │ │ │ ├── amount_test.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── math.go │ │ │ │ │ ├── math_test.go │ │ │ │ │ ├── quantity.go │ │ │ │ │ ├── quantity_example_test.go │ │ │ │ │ ├── quantity_proto.go │ │ │ │ │ ├── quantity_proto_test.go │ │ │ │ │ ├── quantity_test.go │ │ │ │ │ ├── scale_int.go │ │ │ │ │ ├── scale_int_test.go │ │ │ │ │ ├── suffix.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── testing │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── codec.go │ │ │ │ │ ├── fuzzer │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── fuzzer.go │ │ │ │ │ │ ├── valuefuzz.go │ │ │ │ │ │ └── valuefuzz_test.go │ │ │ │ │ └── roundtrip │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── roundtrip.go │ │ │ │ └── validation │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generic.go │ │ │ │ │ ├── objectmeta.go │ │ │ │ │ ├── objectmeta_test.go │ │ │ │ │ └── path │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── name.go │ │ │ │ │ └── name_test.go │ │ │ ├── apimachinery │ │ │ │ ├── BUILD │ │ │ │ ├── announced │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── announced.go │ │ │ │ │ ├── announced_test.go │ │ │ │ │ └── group_factory.go │ │ │ │ ├── doc.go │ │ │ │ ├── registered │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── registered.go │ │ │ │ │ └── registered_test.go │ │ │ │ ├── types.go │ │ │ │ └── types_test.go │ │ │ ├── apis │ │ │ │ ├── meta │ │ │ │ │ ├── fuzzer │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── fuzzer.go │ │ │ │ │ ├── internalversion │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── register_test.go │ │ │ │ │ │ ├── roundtrip_test.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── controller_ref.go │ │ │ │ │ │ ├── controller_ref_test.go │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ ├── conversion_test.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── duration.go │ │ │ │ │ │ ├── duration_test.go │ │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ │ ├── generated.proto │ │ │ │ │ │ ├── group_version.go │ │ │ │ │ │ ├── group_version_test.go │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ ├── helpers_test.go │ │ │ │ │ │ ├── labels.go │ │ │ │ │ │ ├── labels_test.go │ │ │ │ │ │ ├── meta.go │ │ │ │ │ │ ├── micro_time.go │ │ │ │ │ │ ├── micro_time_proto.go │ │ │ │ │ │ ├── micro_time_test.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── time.go │ │ │ │ │ │ ├── time_proto.go │ │ │ │ │ │ ├── time_test.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ │ ├── types_test.go │ │ │ │ │ │ ├── unstructured │ │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ │ ├── helpers_test.go │ │ │ │ │ │ │ ├── unstructured.go │ │ │ │ │ │ │ ├── unstructured_list.go │ │ │ │ │ │ │ ├── unstructured_list_test.go │ │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ │ ├── validation │ │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ │ ├── validation.go │ │ │ │ │ │ │ └── validation_test.go │ │ │ │ │ │ ├── watch.go │ │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ └── v1alpha1 │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ ├── deepcopy.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ │ ├── generated.proto │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── testapigroup │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fuzzer │ │ │ │ │ ├── BUILD │ │ │ │ │ └── fuzzer.go │ │ │ │ │ ├── install │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── install.go │ │ │ │ │ └── roundtrip_test.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── conversion │ │ │ │ ├── BUILD │ │ │ │ ├── converter.go │ │ │ │ ├── converter_test.go │ │ │ │ ├── deep_equal.go │ │ │ │ ├── doc.go │ │ │ │ ├── helper.go │ │ │ │ ├── helper_test.go │ │ │ │ └── queryparams │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── convert.go │ │ │ │ │ ├── convert_test.go │ │ │ │ │ └── doc.go │ │ │ ├── fields │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fields.go │ │ │ │ ├── fields_test.go │ │ │ │ ├── requirements.go │ │ │ │ ├── selector.go │ │ │ │ └── selector_test.go │ │ │ ├── labels │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── labels.go │ │ │ │ ├── labels_test.go │ │ │ │ ├── selector.go │ │ │ │ ├── selector_test.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── runtime │ │ │ │ ├── BUILD │ │ │ │ ├── codec.go │ │ │ │ ├── codec_check.go │ │ │ │ ├── conversion.go │ │ │ │ ├── conversion_test.go │ │ │ │ ├── converter.go │ │ │ │ ├── converter_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── embedded.go │ │ │ │ ├── embedded_test.go │ │ │ │ ├── error.go │ │ │ │ ├── extension.go │ │ │ │ ├── extension_test.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── helper.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── register.go │ │ │ │ ├── schema │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── group_version.go │ │ │ │ │ ├── group_version_test.go │ │ │ │ │ └── interfaces.go │ │ │ │ ├── scheme.go │ │ │ │ ├── scheme_builder.go │ │ │ │ ├── scheme_test.go │ │ │ │ ├── serializer │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── codec_factory.go │ │ │ │ │ ├── codec_test.go │ │ │ │ │ ├── json │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── json.go │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ ├── meta.go │ │ │ │ │ │ └── meta_test.go │ │ │ │ │ ├── negotiated_codec.go │ │ │ │ │ ├── protobuf │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── protobuf.go │ │ │ │ │ ├── protobuf_extension.go │ │ │ │ │ ├── recognizer │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── recognizer.go │ │ │ │ │ │ └── testing │ │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ │ └── recognizer_test.go │ │ │ │ │ ├── streaming │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── streaming.go │ │ │ │ │ │ └── streaming_test.go │ │ │ │ │ ├── testing │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ ├── versioning │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── versioning.go │ │ │ │ │ │ └── versioning_test.go │ │ │ │ │ └── yaml │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── yaml.go │ │ │ │ ├── swagger_doc_generator.go │ │ │ │ ├── swagger_doc_generator_test.go │ │ │ │ ├── testing │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── types.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── types.go │ │ │ │ ├── types_proto.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── selection │ │ │ │ ├── BUILD │ │ │ │ └── operator.go │ │ │ ├── test │ │ │ │ ├── BUILD │ │ │ │ ├── api_meta_help_test.go │ │ │ │ ├── api_meta_meta_test.go │ │ │ │ ├── apis_meta_v1_unstructed_unstructure_test.go │ │ │ │ ├── runtime_helper_test.go │ │ │ │ ├── runtime_serializer_protobuf_protobuf_test.go │ │ │ │ ├── runtime_unversioned_test.go │ │ │ │ ├── util.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── types │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── namespacedname.go │ │ │ │ ├── nodename.go │ │ │ │ ├── patch.go │ │ │ │ └── uid.go │ │ │ ├── util │ │ │ │ ├── cache │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── cache.go │ │ │ │ │ ├── cache_test.go │ │ │ │ │ ├── lruexpirecache.go │ │ │ │ │ └── lruexpirecache_test.go │ │ │ │ ├── clock │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── clock.go │ │ │ │ │ └── clock_test.go │ │ │ │ ├── diff │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── diff.go │ │ │ │ │ └── diff_test.go │ │ │ │ ├── errors │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── errors_test.go │ │ │ │ ├── framer │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── framer.go │ │ │ │ │ └── framer_test.go │ │ │ │ ├── httpstream │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── httpstream.go │ │ │ │ │ ├── httpstream_test.go │ │ │ │ │ └── spdy │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── connection.go │ │ │ │ │ │ ├── connection_test.go │ │ │ │ │ │ ├── roundtripper.go │ │ │ │ │ │ ├── roundtripper_test.go │ │ │ │ │ │ ├── upgrade.go │ │ │ │ │ │ └── upgrade_test.go │ │ │ │ ├── initialization │ │ │ │ │ ├── BUILD │ │ │ │ │ └── initialization.go │ │ │ │ ├── intstr │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── intstr.go │ │ │ │ │ └── intstr_test.go │ │ │ │ ├── json │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── json.go │ │ │ │ │ └── json_test.go │ │ │ │ ├── jsonmergepatch │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── patch.go │ │ │ │ │ └── patch_test.go │ │ │ │ ├── mergepatch │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── util.go │ │ │ │ │ └── util_test.go │ │ │ │ ├── net │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── http.go │ │ │ │ │ ├── http_test.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── interface_test.go │ │ │ │ │ ├── port_range.go │ │ │ │ │ ├── port_range_test.go │ │ │ │ │ ├── port_split.go │ │ │ │ │ ├── port_split_test.go │ │ │ │ │ ├── util.go │ │ │ │ │ └── util_test.go │ │ │ │ ├── proxy │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── dial.go │ │ │ │ │ ├── dial_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── transport.go │ │ │ │ │ ├── transport_test.go │ │ │ │ │ ├── upgradeaware.go │ │ │ │ │ └── upgradeaware_test.go │ │ │ │ ├── rand │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── rand.go │ │ │ │ │ └── rand_test.go │ │ │ │ ├── remotecommand │ │ │ │ │ ├── BUILD │ │ │ │ │ └── constants.go │ │ │ │ ├── runtime │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── runtime.go │ │ │ │ │ └── runtime_test.go │ │ │ │ ├── sets │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── byte.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── empty.go │ │ │ │ │ ├── int.go │ │ │ │ │ ├── int64.go │ │ │ │ │ ├── set_test.go │ │ │ │ │ ├── string.go │ │ │ │ │ └── types │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── types.go │ │ │ │ ├── strategicpatch │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── meta.go │ │ │ │ │ ├── patch.go │ │ │ │ │ ├── patch_test.go │ │ │ │ │ ├── testdata │ │ │ │ │ │ ├── swagger-merge-item.json │ │ │ │ │ │ └── swagger-precision-item.json │ │ │ │ │ ├── testing │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── openapi.go │ │ │ │ │ └── types.go │ │ │ │ ├── uuid │ │ │ │ │ ├── BUILD │ │ │ │ │ └── uuid.go │ │ │ │ ├── validation │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── field │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── errors_test.go │ │ │ │ │ │ ├── path.go │ │ │ │ │ │ └── path_test.go │ │ │ │ │ ├── validation.go │ │ │ │ │ └── validation_test.go │ │ │ │ ├── wait │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── wait.go │ │ │ │ │ └── wait_test.go │ │ │ │ ├── waitgroup │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── waitgroup.go │ │ │ │ │ └── waitgroup_test.go │ │ │ │ └── yaml │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── decoder.go │ │ │ │ │ └── decoder_test.go │ │ │ ├── version │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ └── types.go │ │ │ └── watch │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── filter.go │ │ │ │ ├── filter_test.go │ │ │ │ ├── mux.go │ │ │ │ ├── mux_test.go │ │ │ │ ├── streamwatcher.go │ │ │ │ ├── streamwatcher_test.go │ │ │ │ ├── until.go │ │ │ │ ├── until_test.go │ │ │ │ ├── watch.go │ │ │ │ ├── watch_test.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── third_party │ │ │ └── forked │ │ │ │ └── golang │ │ │ │ ├── json │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ ├── fields.go │ │ │ │ └── fields_test.go │ │ │ │ ├── netutil │ │ │ │ ├── BUILD │ │ │ │ └── addr.go │ │ │ │ └── reflect │ │ │ │ ├── BUILD │ │ │ │ ├── deep_equal.go │ │ │ │ └── deep_equal_test.go │ │ └── vendor │ │ │ ├── github.com │ │ │ ├── PuerkitoBio │ │ │ │ ├── purell │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── purell.go │ │ │ │ └── urlesc │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── urlesc.go │ │ │ ├── davecgh │ │ │ │ └── go-spew │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── spew │ │ │ │ │ ├── bypass.go │ │ │ │ │ ├── bypasssafe.go │ │ │ │ │ ├── common.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── dump.go │ │ │ │ │ ├── format.go │ │ │ │ │ └── spew.go │ │ │ ├── docker │ │ │ │ └── spdystream │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── LICENSE.docs │ │ │ │ │ ├── MAINTAINERS │ │ │ │ │ ├── README.md │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── handlers.go │ │ │ │ │ ├── priority.go │ │ │ │ │ ├── spdy │ │ │ │ │ ├── dictionary.go │ │ │ │ │ ├── read.go │ │ │ │ │ ├── types.go │ │ │ │ │ └── write.go │ │ │ │ │ ├── stream.go │ │ │ │ │ └── utils.go │ │ │ ├── elazarl │ │ │ │ └── goproxy │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── actions.go │ │ │ │ │ ├── all.bash │ │ │ │ │ ├── ca.pem │ │ │ │ │ ├── certs.go │ │ │ │ │ ├── chunked.go │ │ │ │ │ ├── counterecryptor.go │ │ │ │ │ ├── ctx.go │ │ │ │ │ ├── dispatcher.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── https.go │ │ │ │ │ ├── key.pem │ │ │ │ │ ├── proxy.go │ │ │ │ │ ├── responses.go │ │ │ │ │ └── signer.go │ │ │ ├── emicklei │ │ │ │ └── go-restful │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CHANGES.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Srcfile │ │ │ │ │ ├── bench_test.sh │ │ │ │ │ ├── compress.go │ │ │ │ │ ├── compressor_cache.go │ │ │ │ │ ├── compressor_pools.go │ │ │ │ │ ├── compressors.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── container.go │ │ │ │ │ ├── cors_filter.go │ │ │ │ │ ├── coverage.sh │ │ │ │ │ ├── curly.go │ │ │ │ │ ├── curly_route.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── entity_accessors.go │ │ │ │ │ ├── filter.go │ │ │ │ │ ├── jsr311.go │ │ │ │ │ ├── log │ │ │ │ │ └── log.go │ │ │ │ │ ├── logger.go │ │ │ │ │ ├── mime.go │ │ │ │ │ ├── options_filter.go │ │ │ │ │ ├── parameter.go │ │ │ │ │ ├── path_expression.go │ │ │ │ │ ├── request.go │ │ │ │ │ ├── response.go │ │ │ │ │ ├── route.go │ │ │ │ │ ├── route_builder.go │ │ │ │ │ ├── router.go │ │ │ │ │ ├── service_error.go │ │ │ │ │ ├── web_service.go │ │ │ │ │ └── web_service_container.go │ │ │ ├── evanphx │ │ │ │ └── json-patch │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── merge.go │ │ │ │ │ └── patch.go │ │ │ ├── ghodss │ │ │ │ └── yaml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── fields.go │ │ │ │ │ └── yaml.go │ │ │ ├── gogo │ │ │ │ └── protobuf │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── proto │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clone.go │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── decode_gogo.go │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── duration_gogo.go │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── encode_gogo.go │ │ │ │ │ ├── equal.go │ │ │ │ │ ├── extensions.go │ │ │ │ │ ├── extensions_gogo.go │ │ │ │ │ ├── lib.go │ │ │ │ │ ├── lib_gogo.go │ │ │ │ │ ├── message_set.go │ │ │ │ │ ├── pointer_reflect.go │ │ │ │ │ ├── pointer_reflect_gogo.go │ │ │ │ │ ├── pointer_unsafe.go │ │ │ │ │ ├── pointer_unsafe_gogo.go │ │ │ │ │ ├── properties.go │ │ │ │ │ ├── properties_gogo.go │ │ │ │ │ ├── skip_gogo.go │ │ │ │ │ ├── text.go │ │ │ │ │ ├── text_gogo.go │ │ │ │ │ ├── text_parser.go │ │ │ │ │ ├── timestamp.go │ │ │ │ │ └── timestamp_gogo.go │ │ │ │ │ └── sortkeys │ │ │ │ │ └── sortkeys.go │ │ │ ├── golang │ │ │ │ ├── groupcache │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── lru │ │ │ │ │ │ └── lru.go │ │ │ │ └── protobuf │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── proto │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clone.go │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── equal.go │ │ │ │ │ ├── extensions.go │ │ │ │ │ ├── lib.go │ │ │ │ │ ├── message_set.go │ │ │ │ │ ├── pointer_reflect.go │ │ │ │ │ ├── pointer_unsafe.go │ │ │ │ │ ├── properties.go │ │ │ │ │ ├── text.go │ │ │ │ │ └── text_parser.go │ │ │ │ │ └── ptypes │ │ │ │ │ ├── any.go │ │ │ │ │ ├── any │ │ │ │ │ ├── any.pb.go │ │ │ │ │ └── any.proto │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── duration │ │ │ │ │ ├── duration.pb.go │ │ │ │ │ └── duration.proto │ │ │ │ │ ├── regen.sh │ │ │ │ │ ├── timestamp.go │ │ │ │ │ └── timestamp │ │ │ │ │ ├── timestamp.pb.go │ │ │ │ │ └── timestamp.proto │ │ │ ├── googleapis │ │ │ │ └── gnostic │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── OpenAPIv2 │ │ │ │ │ ├── OpenAPIv2.go │ │ │ │ │ ├── OpenAPIv2.pb.go │ │ │ │ │ ├── OpenAPIv2.proto │ │ │ │ │ ├── README.md │ │ │ │ │ └── openapi-2.0.json │ │ │ │ │ ├── compiler │ │ │ │ │ ├── README.md │ │ │ │ │ ├── context.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── extension-handler.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── main.go │ │ │ │ │ └── reader.go │ │ │ │ │ └── extensions │ │ │ │ │ ├── COMPILE-EXTENSION.sh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── extension.pb.go │ │ │ │ │ ├── extension.proto │ │ │ │ │ └── extensions.go │ │ │ ├── hashicorp │ │ │ │ └── golang-lru │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── 2q.go │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── arc.go │ │ │ │ │ ├── lru.go │ │ │ │ │ └── simplelru │ │ │ │ │ └── lru.go │ │ │ ├── json-iterator │ │ │ │ └── go │ │ │ │ │ ├── .codecov.yml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── Gopkg.lock │ │ │ │ │ ├── Gopkg.toml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── feature_adapter.go │ │ │ │ │ ├── feature_any.go │ │ │ │ │ ├── feature_any_array.go │ │ │ │ │ ├── feature_any_bool.go │ │ │ │ │ ├── feature_any_float.go │ │ │ │ │ ├── feature_any_int32.go │ │ │ │ │ ├── feature_any_int64.go │ │ │ │ │ ├── feature_any_invalid.go │ │ │ │ │ ├── feature_any_nil.go │ │ │ │ │ ├── feature_any_number.go │ │ │ │ │ ├── feature_any_object.go │ │ │ │ │ ├── feature_any_string.go │ │ │ │ │ ├── feature_any_uint32.go │ │ │ │ │ ├── feature_any_uint64.go │ │ │ │ │ ├── feature_config.go │ │ │ │ │ ├── feature_iter.go │ │ │ │ │ ├── feature_iter_array.go │ │ │ │ │ ├── feature_iter_float.go │ │ │ │ │ ├── feature_iter_int.go │ │ │ │ │ ├── feature_iter_object.go │ │ │ │ │ ├── feature_iter_skip.go │ │ │ │ │ ├── feature_iter_skip_sloppy.go │ │ │ │ │ ├── feature_iter_skip_strict.go │ │ │ │ │ ├── feature_iter_string.go │ │ │ │ │ ├── feature_json_number.go │ │ │ │ │ ├── feature_pool.go │ │ │ │ │ ├── feature_reflect.go │ │ │ │ │ ├── feature_reflect_array.go │ │ │ │ │ ├── feature_reflect_extension.go │ │ │ │ │ ├── feature_reflect_map.go │ │ │ │ │ ├── feature_reflect_native.go │ │ │ │ │ ├── feature_reflect_object.go │ │ │ │ │ ├── feature_reflect_slice.go │ │ │ │ │ ├── feature_reflect_struct_decoder.go │ │ │ │ │ ├── feature_stream.go │ │ │ │ │ ├── feature_stream_float.go │ │ │ │ │ ├── feature_stream_int.go │ │ │ │ │ ├── feature_stream_string.go │ │ │ │ │ ├── fuzzy_mode_convert_table.md │ │ │ │ │ ├── jsoniter.go │ │ │ │ │ └── test.sh │ │ │ ├── mailru │ │ │ │ └── easyjson │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── buffer │ │ │ │ │ └── pool.go │ │ │ │ │ ├── jlexer │ │ │ │ │ ├── bytestostr.go │ │ │ │ │ ├── bytestostr_nounsafe.go │ │ │ │ │ ├── error.go │ │ │ │ │ └── lexer.go │ │ │ │ │ └── jwriter │ │ │ │ │ └── writer.go │ │ │ ├── mxk │ │ │ │ └── go-flowrate │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── flowrate │ │ │ │ │ ├── flowrate.go │ │ │ │ │ ├── io.go │ │ │ │ │ └── util.go │ │ │ ├── pborman │ │ │ │ └── uuid │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── dce.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── hash.go │ │ │ │ │ ├── json.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── time.go │ │ │ │ │ ├── util.go │ │ │ │ │ ├── uuid.go │ │ │ │ │ ├── version1.go │ │ │ │ │ └── version4.go │ │ │ ├── pmezard │ │ │ │ └── go-difflib │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── difflib │ │ │ │ │ └── difflib.go │ │ │ ├── spf13 │ │ │ │ └── pflag │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bool.go │ │ │ │ │ ├── bool_slice.go │ │ │ │ │ ├── count.go │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── flag.go │ │ │ │ │ ├── float32.go │ │ │ │ │ ├── float64.go │ │ │ │ │ ├── golangflag.go │ │ │ │ │ ├── int.go │ │ │ │ │ ├── int32.go │ │ │ │ │ ├── int64.go │ │ │ │ │ ├── int8.go │ │ │ │ │ ├── int_slice.go │ │ │ │ │ ├── ip.go │ │ │ │ │ ├── ip_slice.go │ │ │ │ │ ├── ipmask.go │ │ │ │ │ ├── ipnet.go │ │ │ │ │ ├── string.go │ │ │ │ │ ├── string_array.go │ │ │ │ │ ├── string_slice.go │ │ │ │ │ ├── uint.go │ │ │ │ │ ├── uint16.go │ │ │ │ │ ├── uint32.go │ │ │ │ │ ├── uint64.go │ │ │ │ │ ├── uint8.go │ │ │ │ │ └── uint_slice.go │ │ │ └── stretchr │ │ │ │ └── testify │ │ │ │ ├── LICENCE.txt │ │ │ │ ├── LICENSE │ │ │ │ ├── assert │ │ │ │ ├── assertion_format.go │ │ │ │ ├── assertion_format.go.tmpl │ │ │ │ ├── assertion_forward.go │ │ │ │ ├── assertion_forward.go.tmpl │ │ │ │ ├── assertions.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── forward_assertions.go │ │ │ │ └── http_assertions.go │ │ │ │ └── require │ │ │ │ ├── doc.go │ │ │ │ ├── forward_requirements.go │ │ │ │ ├── require.go │ │ │ │ ├── require.go.tmpl │ │ │ │ ├── require_forward.go │ │ │ │ ├── require_forward.go.tmpl │ │ │ │ └── requirements.go │ │ │ ├── golang.org │ │ │ └── x │ │ │ │ ├── net │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── html │ │ │ │ │ ├── atom │ │ │ │ │ │ ├── atom.go │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ └── table.go │ │ │ │ │ ├── const.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── doctype.go │ │ │ │ │ ├── entity.go │ │ │ │ │ ├── escape.go │ │ │ │ │ ├── foreign.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── parse.go │ │ │ │ │ ├── render.go │ │ │ │ │ └── token.go │ │ │ │ ├── http2 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── ciphers.go │ │ │ │ │ ├── client_conn_pool.go │ │ │ │ │ ├── configure_transport.go │ │ │ │ │ ├── databuffer.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── flow.go │ │ │ │ │ ├── frame.go │ │ │ │ │ ├── go16.go │ │ │ │ │ ├── go17.go │ │ │ │ │ ├── go17_not18.go │ │ │ │ │ ├── go18.go │ │ │ │ │ ├── go19.go │ │ │ │ │ ├── gotrack.go │ │ │ │ │ ├── headermap.go │ │ │ │ │ ├── hpack │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ ├── hpack.go │ │ │ │ │ │ ├── huffman.go │ │ │ │ │ │ └── tables.go │ │ │ │ │ ├── http2.go │ │ │ │ │ ├── not_go16.go │ │ │ │ │ ├── not_go17.go │ │ │ │ │ ├── not_go18.go │ │ │ │ │ ├── not_go19.go │ │ │ │ │ ├── pipe.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── transport.go │ │ │ │ │ ├── write.go │ │ │ │ │ ├── writesched.go │ │ │ │ │ ├── writesched_priority.go │ │ │ │ │ └── writesched_random.go │ │ │ │ ├── idna │ │ │ │ │ ├── idna.go │ │ │ │ │ ├── punycode.go │ │ │ │ │ ├── tables.go │ │ │ │ │ ├── trie.go │ │ │ │ │ └── trieval.go │ │ │ │ ├── lex │ │ │ │ │ └── httplex │ │ │ │ │ │ └── httplex.go │ │ │ │ └── websocket │ │ │ │ │ ├── client.go │ │ │ │ │ ├── dial.go │ │ │ │ │ ├── hybi.go │ │ │ │ │ ├── server.go │ │ │ │ │ └── websocket.go │ │ │ │ └── text │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── cases │ │ │ │ ├── cases.go │ │ │ │ ├── context.go │ │ │ │ ├── fold.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── icu.go │ │ │ │ ├── info.go │ │ │ │ ├── map.go │ │ │ │ ├── tables.go │ │ │ │ └── trieval.go │ │ │ │ ├── internal │ │ │ │ ├── gen.go │ │ │ │ ├── internal.go │ │ │ │ ├── match.go │ │ │ │ ├── tables.go │ │ │ │ └── tag │ │ │ │ │ └── tag.go │ │ │ │ ├── language │ │ │ │ ├── Makefile │ │ │ │ ├── common.go │ │ │ │ ├── coverage.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_common.go │ │ │ │ ├── gen_index.go │ │ │ │ ├── go1_1.go │ │ │ │ ├── go1_2.go │ │ │ │ ├── index.go │ │ │ │ ├── language.go │ │ │ │ ├── lookup.go │ │ │ │ ├── match.go │ │ │ │ ├── parse.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ │ ├── runes │ │ │ │ ├── cond.go │ │ │ │ └── runes.go │ │ │ │ ├── secure │ │ │ │ ├── bidirule │ │ │ │ │ └── bidirule.go │ │ │ │ └── precis │ │ │ │ │ ├── class.go │ │ │ │ │ ├── context.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── gen_trieval.go │ │ │ │ │ ├── nickname.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── profile.go │ │ │ │ │ ├── profiles.go │ │ │ │ │ ├── tables.go │ │ │ │ │ ├── transformer.go │ │ │ │ │ └── trieval.go │ │ │ │ ├── transform │ │ │ │ └── transform.go │ │ │ │ ├── unicode │ │ │ │ ├── bidi │ │ │ │ │ ├── bidi.go │ │ │ │ │ ├── bracket.go │ │ │ │ │ ├── core.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── gen_ranges.go │ │ │ │ │ ├── gen_trieval.go │ │ │ │ │ ├── prop.go │ │ │ │ │ ├── tables.go │ │ │ │ │ └── trieval.go │ │ │ │ └── norm │ │ │ │ │ ├── composition.go │ │ │ │ │ ├── forminfo.go │ │ │ │ │ ├── input.go │ │ │ │ │ ├── iter.go │ │ │ │ │ ├── maketables.go │ │ │ │ │ ├── normalize.go │ │ │ │ │ ├── readwriter.go │ │ │ │ │ ├── tables.go │ │ │ │ │ ├── transform.go │ │ │ │ │ ├── trie.go │ │ │ │ │ └── triegen.go │ │ │ │ └── width │ │ │ │ ├── gen.go │ │ │ │ ├── gen_common.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── kind_string.go │ │ │ │ ├── tables.go │ │ │ │ ├── transform.go │ │ │ │ ├── trieval.go │ │ │ │ └── width.go │ │ │ └── gopkg.in │ │ │ ├── inf.v0 │ │ │ ├── LICENSE │ │ │ ├── dec.go │ │ │ └── rounder.go │ │ │ └── yaml.v2 │ │ │ ├── LICENSE │ │ │ ├── LICENSE.libyaml │ │ │ ├── README.md │ │ │ ├── apic.go │ │ │ ├── decode.go │ │ │ ├── emitterc.go │ │ │ ├── encode.go │ │ │ ├── parserc.go │ │ │ ├── readerc.go │ │ │ ├── resolve.go │ │ │ ├── scannerc.go │ │ │ ├── sorter.go │ │ │ ├── writerc.go │ │ │ ├── yaml.go │ │ │ ├── yamlh.go │ │ │ └── yamlprivateh.go │ ├── client-go │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── Godeps │ │ │ ├── Godeps.json │ │ │ └── Readme │ │ ├── INSTALL.md │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── code-of-conduct.md │ │ ├── discovery │ │ │ ├── BUILD │ │ │ ├── cached │ │ │ │ ├── BUILD │ │ │ │ ├── memcache.go │ │ │ │ └── memcache_test.go │ │ │ ├── discovery_client.go │ │ │ ├── discovery_client_test.go │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── discovery.go │ │ │ │ └── discovery_test.go │ │ │ ├── helper.go │ │ │ ├── helper_blackbox_test.go │ │ │ ├── restmapper.go │ │ │ ├── restmapper_test.go │ │ │ └── unstructured.go │ │ ├── dynamic │ │ │ ├── BUILD │ │ │ ├── client.go │ │ │ ├── client_pool.go │ │ │ ├── client_test.go │ │ │ ├── dynamic_util.go │ │ │ ├── dynamic_util_test.go │ │ │ └── fake │ │ │ │ ├── BUILD │ │ │ │ ├── client.go │ │ │ │ └── client_pool.go │ │ ├── examples │ │ │ ├── README.md │ │ │ ├── create-update-delete-deployment │ │ │ │ ├── BUILD │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ │ ├── in-cluster-client-configuration │ │ │ │ ├── BUILD │ │ │ │ ├── Dockerfile │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ │ ├── out-of-cluster-client-configuration │ │ │ │ ├── BUILD │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ │ └── workqueue │ │ │ │ ├── BUILD │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ ├── informers │ │ │ ├── BUILD │ │ │ ├── admissionregistration │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── initializerconfiguration.go │ │ │ │ │ └── interface.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── apps │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ └── statefulset.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── interface.go │ │ │ │ │ └── statefulset.go │ │ │ │ └── v1beta2 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ └── statefulset.go │ │ │ ├── autoscaling │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ │ └── interface.go │ │ │ │ └── v2beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ │ └── interface.go │ │ │ ├── batch │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── interface.go │ │ │ │ │ └── job.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── cronjob.go │ │ │ │ │ └── interface.go │ │ │ │ └── v2alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── cronjob.go │ │ │ │ │ └── interface.go │ │ │ ├── certificates │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ └── interface.go │ │ │ ├── core │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── componentstatus.go │ │ │ │ │ ├── configmap.go │ │ │ │ │ ├── endpoints.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── limitrange.go │ │ │ │ │ ├── namespace.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── persistentvolume.go │ │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ │ ├── pod.go │ │ │ │ │ ├── podtemplate.go │ │ │ │ │ ├── replicationcontroller.go │ │ │ │ │ ├── resourcequota.go │ │ │ │ │ ├── secret.go │ │ │ │ │ ├── service.go │ │ │ │ │ └── serviceaccount.go │ │ │ ├── events │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── event.go │ │ │ │ │ └── interface.go │ │ │ ├── extensions │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ └── replicaset.go │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ ├── internalinterfaces │ │ │ │ ├── BUILD │ │ │ │ └── factory_interfaces.go │ │ │ ├── networking │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── interface.go │ │ │ │ │ └── networkpolicy.go │ │ │ ├── policy │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── interface.go │ │ │ │ │ └── poddisruptionbudget.go │ │ │ ├── rbac │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ ├── scheduling │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── interface.go │ │ │ │ │ └── priorityclass.go │ │ │ ├── settings │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── interface.go │ │ │ │ │ └── podpreset.go │ │ │ └── storage │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── storageclass.go │ │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── volumeattachment.go │ │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── storageclass.go │ │ ├── kubernetes │ │ │ ├── BUILD │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── clientset_generated.go │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ ├── import.go │ │ │ ├── scheme │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ └── typed │ │ │ │ ├── admissionregistration │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── admissionregistration_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ │ │ └── fake_initializerconfiguration.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── initializerconfiguration.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── admissionregistration_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ │ ├── fake_mutatingwebhookconfiguration.go │ │ │ │ │ └── fake_validatingwebhookconfiguration.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ │ ├── apps │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── apps_client.go │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ │ ├── fake_daemonset.go │ │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ │ ├── fake_replicaset.go │ │ │ │ │ │ └── fake_statefulset.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ └── statefulset.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── apps_client.go │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ │ ├── fake_scale.go │ │ │ │ │ │ └── fake_statefulset.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── scale.go │ │ │ │ │ └── statefulset.go │ │ │ │ └── v1beta2 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── apps_client.go │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ ├── fake_daemonset.go │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ ├── fake_replicaset.go │ │ │ │ │ ├── fake_scale.go │ │ │ │ │ └── fake_statefulset.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ ├── scale.go │ │ │ │ │ └── statefulset.go │ │ │ │ ├── authentication │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── authentication_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_authentication_client.go │ │ │ │ │ │ ├── fake_tokenreview.go │ │ │ │ │ │ └── fake_tokenreview_expansion.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── tokenreview.go │ │ │ │ │ └── tokenreview_expansion.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── authentication_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authentication_client.go │ │ │ │ │ ├── fake_tokenreview.go │ │ │ │ │ └── fake_tokenreview_expansion.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── tokenreview.go │ │ │ │ │ └── tokenreview_expansion.go │ │ │ │ ├── authorization │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── authorization_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_authorization_client.go │ │ │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ │ │ ├── fake_localsubjectaccessreview_expansion.go │ │ │ │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ │ │ │ ├── fake_selfsubjectaccessreview_expansion.go │ │ │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ │ │ ├── fake_selfsubjectrulesreview_expansion.go │ │ │ │ │ │ ├── fake_subjectaccessreview.go │ │ │ │ │ │ └── fake_subjectaccessreview_expansion.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ │ ├── localsubjectaccessreview_expansion.go │ │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectaccessreview_expansion.go │ │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ │ ├── selfsubjectrulesreview_expansion.go │ │ │ │ │ ├── subjectaccessreview.go │ │ │ │ │ └── subjectaccessreview_expansion.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── authorization_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authorization_client.go │ │ │ │ │ ├── fake_generated_expansion.go │ │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ │ ├── fake_localsubjectaccessreview_expansion.go │ │ │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ │ │ ├── fake_selfsubjectaccessreview_expansion.go │ │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ │ ├── fake_selfsubjectrulesreview_expansion.go │ │ │ │ │ ├── fake_subjectaccessreview.go │ │ │ │ │ └── fake_subjectaccessreview_expansion.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ │ ├── localsubjectaccessreview_expansion.go │ │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectaccessreview_expansion.go │ │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ │ ├── selfsubjectrulesreview_expansion.go │ │ │ │ │ ├── subjectaccessreview.go │ │ │ │ │ └── subjectaccessreview_expansion.go │ │ │ │ ├── autoscaling │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ └── v2beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ ├── batch │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── batch_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_batch_client.go │ │ │ │ │ │ └── fake_job.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── job.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── batch_client.go │ │ │ │ │ ├── cronjob.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_batch_client.go │ │ │ │ │ │ └── fake_cronjob.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ └── v2alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── batch_client.go │ │ │ │ │ ├── cronjob.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_batch_client.go │ │ │ │ │ └── fake_cronjob.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── certificates │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── certificates_client.go │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_certificates_client.go │ │ │ │ │ ├── fake_certificatesigningrequest.go │ │ │ │ │ └── fake_certificatesigningrequest_expansion.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── core │ │ │ │ └── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── componentstatus.go │ │ │ │ │ ├── configmap.go │ │ │ │ │ ├── core_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpoints.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── event_expansion.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── 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_node_expansion.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 │ │ │ │ │ ├── node_expansion.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 │ │ │ │ ├── events │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── events_client.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_event.go │ │ │ │ │ └── fake_events_client.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── extensions │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deployment_expansion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── extensions_client.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_daemonset.go │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ ├── fake_deployment_expansion.go │ │ │ │ │ ├── fake_extensions_client.go │ │ │ │ │ ├── fake_ingress.go │ │ │ │ │ ├── fake_podsecuritypolicy.go │ │ │ │ │ ├── fake_replicaset.go │ │ │ │ │ ├── fake_scale.go │ │ │ │ │ └── fake_scale_expansion.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ ├── scale.go │ │ │ │ │ └── scale_expansion.go │ │ │ │ ├── networking │ │ │ │ └── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_networking_client.go │ │ │ │ │ └── fake_networkpolicy.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── networking_client.go │ │ │ │ │ └── networkpolicy.go │ │ │ │ ├── policy │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── eviction.go │ │ │ │ │ ├── eviction_expansion.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_eviction.go │ │ │ │ │ ├── fake_eviction_expansion.go │ │ │ │ │ ├── fake_poddisruptionbudget.go │ │ │ │ │ └── fake_policy_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ └── policy_client.go │ │ │ │ ├── rbac │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ │ ├── fake_role.go │ │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ │ ├── fake_role.go │ │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ ├── fake_role.go │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ ├── scheduling │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_priorityclass.go │ │ │ │ │ └── fake_scheduling_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── priorityclass.go │ │ │ │ │ └── scheduling_client.go │ │ │ │ ├── settings │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_podpreset.go │ │ │ │ │ └── fake_settings_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── podpreset.go │ │ │ │ │ └── settings_client.go │ │ │ │ └── storage │ │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_storage_client.go │ │ │ │ │ └── fake_storageclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ └── storageclass.go │ │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_storage_client.go │ │ │ │ │ └── fake_volumeattachment.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ └── volumeattachment.go │ │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_storage_client.go │ │ │ │ └── fake_storageclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ └── storageclass.go │ │ ├── listers │ │ │ ├── admissionregistration │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── initializerconfiguration.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── apps │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── daemonset_expansion.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deployment_expansion.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ ├── replicaset_expansion.go │ │ │ │ │ ├── statefulset.go │ │ │ │ │ └── statefulset_expansion.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── scale.go │ │ │ │ │ ├── statefulset.go │ │ │ │ │ └── statefulset_expansion.go │ │ │ │ └── v1beta2 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── daemonset_expansion.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deployment_expansion.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ ├── replicaset_expansion.go │ │ │ │ │ ├── scale.go │ │ │ │ │ ├── statefulset.go │ │ │ │ │ └── statefulset_expansion.go │ │ │ ├── authentication │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── tokenreview.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── tokenreview.go │ │ │ ├── authorization │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ │ └── subjectaccessreview.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ │ └── subjectaccessreview.go │ │ │ ├── autoscaling │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ └── v2beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── batch │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── job.go │ │ │ │ │ └── job_expansion.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── cronjob.go │ │ │ │ │ └── expansion_generated.go │ │ │ │ └── v2alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── cronjob.go │ │ │ │ │ └── expansion_generated.go │ │ │ ├── certificates │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ └── expansion_generated.go │ │ │ ├── core │ │ │ │ └── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── componentstatus.go │ │ │ │ │ ├── configmap.go │ │ │ │ │ ├── endpoints.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── limitrange.go │ │ │ │ │ ├── namespace.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── node_expansion.go │ │ │ │ │ ├── persistentvolume.go │ │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ │ ├── pod.go │ │ │ │ │ ├── podtemplate.go │ │ │ │ │ ├── replicationcontroller.go │ │ │ │ │ ├── replicationcontroller_expansion.go │ │ │ │ │ ├── resourcequota.go │ │ │ │ │ ├── secret.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── service_expansion.go │ │ │ │ │ └── serviceaccount.go │ │ │ ├── events │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── event.go │ │ │ │ │ └── expansion_generated.go │ │ │ ├── extensions │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── daemonset_expansion.go │ │ │ │ │ ├── daemonset_expansion_test.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deployment_expansion.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ ├── replicaset_expansion.go │ │ │ │ │ └── scale.go │ │ │ ├── imagepolicy │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── imagereview.go │ │ │ ├── networking │ │ │ │ └── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── networkpolicy.go │ │ │ ├── policy │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── eviction.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ └── poddisruptionbudget_expansion.go │ │ │ ├── rbac │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ ├── scheduling │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── priorityclass.go │ │ │ ├── settings │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── podpreset.go │ │ │ └── storage │ │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ └── storageclass.go │ │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ └── volumeattachment.go │ │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ └── storageclass.go │ │ ├── pkg │ │ │ └── version │ │ │ │ ├── .gitattributes │ │ │ │ ├── BUILD │ │ │ │ ├── base.go │ │ │ │ ├── def.bzl │ │ │ │ ├── doc.go │ │ │ │ └── version.go │ │ ├── plugin │ │ │ └── pkg │ │ │ │ ├── auth │ │ │ │ └── authenticator │ │ │ │ │ └── token │ │ │ │ │ └── oidc │ │ │ │ │ └── testing │ │ │ │ │ ├── BUILD │ │ │ │ │ └── provider.go │ │ │ │ └── client │ │ │ │ └── auth │ │ │ │ ├── BUILD │ │ │ │ ├── azure │ │ │ │ ├── BUILD │ │ │ │ ├── README.md │ │ │ │ ├── azure.go │ │ │ │ └── azure_test.go │ │ │ │ ├── gcp │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ ├── gcp.go │ │ │ │ └── gcp_test.go │ │ │ │ ├── oidc │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ ├── oidc.go │ │ │ │ └── oidc_test.go │ │ │ │ ├── openstack │ │ │ │ ├── BUILD │ │ │ │ ├── openstack.go │ │ │ │ └── openstack_test.go │ │ │ │ └── plugins.go │ │ ├── rest │ │ │ ├── BUILD │ │ │ ├── OWNERS │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ └── fake.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 │ │ │ ├── watch │ │ │ │ ├── BUILD │ │ │ │ ├── decoder.go │ │ │ │ ├── decoder_test.go │ │ │ │ ├── encoder.go │ │ │ │ └── encoder_test.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── scale │ │ │ ├── BUILD │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ └── client.go │ │ │ ├── interfaces.go │ │ │ ├── roundtrip_test.go │ │ │ ├── scheme │ │ │ │ ├── BUILD │ │ │ │ ├── appsint │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ ├── appsv1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ └── zz_generated.conversion.go │ │ │ │ ├── appsv1beta2 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ └── zz_generated.conversion.go │ │ │ │ ├── autoscalingv1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ └── zz_generated.conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── extensionsint │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ ├── extensionsv1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ └── zz_generated.conversion.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── util.go │ │ ├── testing │ │ │ ├── BUILD │ │ │ ├── actions.go │ │ │ ├── fake.go │ │ │ └── fixture.go │ │ ├── third_party │ │ │ └── forked │ │ │ │ └── golang │ │ │ │ └── template │ │ │ │ ├── BUILD │ │ │ │ ├── exec.go │ │ │ │ └── funcs.go │ │ ├── tools │ │ │ ├── auth │ │ │ │ ├── BUILD │ │ │ │ ├── clientauth.go │ │ │ │ └── clientauth_test.go │ │ │ ├── cache │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ ├── controller.go │ │ │ │ ├── controller_test.go │ │ │ │ ├── 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 │ │ │ │ ├── heap.go │ │ │ │ ├── heap_test.go │ │ │ │ ├── index.go │ │ │ │ ├── index_test.go │ │ │ │ ├── listers.go │ │ │ │ ├── listwatch.go │ │ │ │ ├── mutation_cache.go │ │ │ │ ├── mutation_detector.go │ │ │ │ ├── mutation_detector_test.go │ │ │ │ ├── processor_listener_test.go │ │ │ │ ├── reflector.go │ │ │ │ ├── reflector_metrics.go │ │ │ │ ├── reflector_test.go │ │ │ │ ├── shared_informer.go │ │ │ │ ├── shared_informer_test.go │ │ │ │ ├── store.go │ │ │ │ ├── store_test.go │ │ │ │ ├── testing │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── fake_controller_source.go │ │ │ │ │ └── fake_controller_source_test.go │ │ │ │ ├── thread_safe_store.go │ │ │ │ ├── undelta_store.go │ │ │ │ └── undelta_store_test.go │ │ │ ├── clientcmd │ │ │ │ ├── BUILD │ │ │ │ ├── api │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── helpers_test.go │ │ │ │ │ ├── latest │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── latest.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_test.go │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── auth_loaders.go │ │ │ │ ├── client_config.go │ │ │ │ ├── client_config_test.go │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── flag.go │ │ │ │ ├── helpers.go │ │ │ │ ├── loader.go │ │ │ │ ├── loader_test.go │ │ │ │ ├── merged_client_builder.go │ │ │ │ ├── merged_client_builder_test.go │ │ │ │ ├── overrides.go │ │ │ │ ├── overrides_test.go │ │ │ │ ├── validation.go │ │ │ │ └── validation_test.go │ │ │ ├── leaderelection │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ ├── leaderelection.go │ │ │ │ ├── leaderelection_test.go │ │ │ │ └── resourcelock │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── configmaplock.go │ │ │ │ │ ├── endpointslock.go │ │ │ │ │ └── interface.go │ │ │ ├── metrics │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ └── metrics.go │ │ │ ├── pager │ │ │ │ ├── BUILD │ │ │ │ ├── pager.go │ │ │ │ └── pager_test.go │ │ │ ├── portforward │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── portforward.go │ │ │ │ └── portforward_test.go │ │ │ ├── record │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── event_test.go │ │ │ │ ├── events_cache.go │ │ │ │ ├── events_cache_test.go │ │ │ │ └── fake.go │ │ │ ├── reference │ │ │ │ ├── BUILD │ │ │ │ └── ref.go │ │ │ └── remotecommand │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── errorstream.go │ │ │ │ ├── remotecommand.go │ │ │ │ ├── resize.go │ │ │ │ ├── v1.go │ │ │ │ ├── v2.go │ │ │ │ ├── v2_test.go │ │ │ │ ├── v3.go │ │ │ │ ├── v4.go │ │ │ │ └── v4_test.go │ │ ├── transport │ │ │ ├── BUILD │ │ │ ├── OWNERS │ │ │ ├── cache.go │ │ │ ├── cache_test.go │ │ │ ├── config.go │ │ │ ├── round_trippers.go │ │ │ ├── round_trippers_test.go │ │ │ ├── spdy │ │ │ │ ├── BUILD │ │ │ │ └── spdy.go │ │ │ ├── transport.go │ │ │ └── transport_test.go │ │ ├── util │ │ │ ├── buffer │ │ │ │ ├── BUILD │ │ │ │ ├── ring_growing.go │ │ │ │ └── ring_growing_test.go │ │ │ ├── cert │ │ │ │ ├── BUILD │ │ │ │ ├── cert.go │ │ │ │ ├── csr.go │ │ │ │ ├── csr_test.go │ │ │ │ ├── io.go │ │ │ │ ├── pem.go │ │ │ │ ├── pem_test.go │ │ │ │ ├── testdata │ │ │ │ │ └── dontUseThisKey.pem │ │ │ │ └── triple │ │ │ │ │ ├── BUILD │ │ │ │ │ └── triple.go │ │ │ ├── certificate │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ ├── certificate_manager.go │ │ │ │ ├── certificate_manager_test.go │ │ │ │ ├── certificate_store.go │ │ │ │ ├── certificate_store_test.go │ │ │ │ └── csr │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── csr.go │ │ │ │ │ └── csr_test.go │ │ │ ├── exec │ │ │ │ ├── BUILD │ │ │ │ └── exec.go │ │ │ ├── flowcontrol │ │ │ │ ├── BUILD │ │ │ │ ├── backoff.go │ │ │ │ ├── backoff_test.go │ │ │ │ ├── throttle.go │ │ │ │ └── throttle_test.go │ │ │ ├── homedir │ │ │ │ ├── BUILD │ │ │ │ └── homedir.go │ │ │ ├── integer │ │ │ │ ├── BUILD │ │ │ │ ├── integer.go │ │ │ │ └── integer_test.go │ │ │ ├── jsonpath │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── jsonpath.go │ │ │ │ ├── jsonpath_test.go │ │ │ │ ├── node.go │ │ │ │ ├── parser.go │ │ │ │ └── parser_test.go │ │ │ ├── retry │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ ├── util.go │ │ │ │ └── util_test.go │ │ │ ├── testing │ │ │ │ ├── BUILD │ │ │ │ ├── fake_handler.go │ │ │ │ ├── fake_handler_test.go │ │ │ │ └── tmpdir.go │ │ │ └── workqueue │ │ │ │ ├── BUILD │ │ │ │ ├── default_rate_limiters.go │ │ │ │ ├── default_rate_limiters_test.go │ │ │ │ ├── delaying_queue.go │ │ │ │ ├── delaying_queue_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── metrics.go │ │ │ │ ├── parallelizer.go │ │ │ │ ├── queue.go │ │ │ │ ├── queue_test.go │ │ │ │ ├── rate_limitting_queue.go │ │ │ │ └── rate_limitting_queue_test.go │ │ └── vendor │ │ │ ├── cloud.google.com │ │ │ └── go │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── compute │ │ │ │ └── metadata │ │ │ │ │ └── metadata.go │ │ │ │ └── internal │ │ │ │ └── cloud.go │ │ │ ├── github.com │ │ │ ├── Azure │ │ │ │ └── go-autorest │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── autorest │ │ │ │ │ ├── adal │ │ │ │ │ ├── README.md │ │ │ │ │ ├── config.go │ │ │ │ │ ├── devicetoken.go │ │ │ │ │ ├── msi.go │ │ │ │ │ ├── msi_windows.go │ │ │ │ │ ├── persist.go │ │ │ │ │ ├── sender.go │ │ │ │ │ └── token.go │ │ │ │ │ ├── authorization.go │ │ │ │ │ ├── autorest.go │ │ │ │ │ ├── azure │ │ │ │ │ ├── async.go │ │ │ │ │ ├── azure.go │ │ │ │ │ ├── environments.go │ │ │ │ │ └── rp.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── date │ │ │ │ │ ├── date.go │ │ │ │ │ ├── time.go │ │ │ │ │ ├── timerfc1123.go │ │ │ │ │ ├── unixtime.go │ │ │ │ │ └── utility.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── preparer.go │ │ │ │ │ ├── responder.go │ │ │ │ │ ├── retriablerequest.go │ │ │ │ │ ├── retriablerequest_1.7.go │ │ │ │ │ ├── retriablerequest_1.8.go │ │ │ │ │ ├── sender.go │ │ │ │ │ ├── utility.go │ │ │ │ │ └── version.go │ │ │ ├── PuerkitoBio │ │ │ │ ├── purell │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── purell.go │ │ │ │ └── urlesc │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── urlesc.go │ │ │ ├── coreos │ │ │ │ ├── go-oidc │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── NOTICE │ │ │ │ │ ├── http │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── http.go │ │ │ │ │ │ └── url.go │ │ │ │ │ ├── jose │ │ │ │ │ │ ├── claims.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── jose.go │ │ │ │ │ │ ├── jwk.go │ │ │ │ │ │ ├── jws.go │ │ │ │ │ │ ├── jwt.go │ │ │ │ │ │ ├── sig.go │ │ │ │ │ │ └── sig_rsa.go │ │ │ │ │ ├── key │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── key.go │ │ │ │ │ │ ├── manager.go │ │ │ │ │ │ ├── repo.go │ │ │ │ │ │ ├── rotate.go │ │ │ │ │ │ └── sync.go │ │ │ │ │ ├── oauth2 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ └── oauth2.go │ │ │ │ │ └── oidc │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── identity.go │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── key.go │ │ │ │ │ │ ├── provider.go │ │ │ │ │ │ ├── transport.go │ │ │ │ │ │ ├── util.go │ │ │ │ │ │ └── verification.go │ │ │ │ └── pkg │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── NOTICE │ │ │ │ │ ├── health │ │ │ │ │ ├── README.md │ │ │ │ │ └── health.go │ │ │ │ │ ├── httputil │ │ │ │ │ ├── README.md │ │ │ │ │ ├── cookie.go │ │ │ │ │ └── json.go │ │ │ │ │ └── timeutil │ │ │ │ │ └── backoff.go │ │ │ ├── davecgh │ │ │ │ └── go-spew │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── spew │ │ │ │ │ ├── bypass.go │ │ │ │ │ ├── bypasssafe.go │ │ │ │ │ ├── common.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── dump.go │ │ │ │ │ ├── format.go │ │ │ │ │ └── spew.go │ │ │ ├── dgrijalva │ │ │ │ └── jwt-go │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── MIGRATION_GUIDE.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── VERSION_HISTORY.md │ │ │ │ │ ├── claims.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── ecdsa.go │ │ │ │ │ ├── ecdsa_utils.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── hmac.go │ │ │ │ │ ├── map_claims.go │ │ │ │ │ ├── none.go │ │ │ │ │ ├── parser.go │ │ │ │ │ ├── rsa.go │ │ │ │ │ ├── rsa_pss.go │ │ │ │ │ ├── rsa_utils.go │ │ │ │ │ ├── signing_method.go │ │ │ │ │ └── token.go │ │ │ ├── docker │ │ │ │ └── spdystream │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── LICENSE.docs │ │ │ │ │ ├── MAINTAINERS │ │ │ │ │ ├── README.md │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── handlers.go │ │ │ │ │ ├── priority.go │ │ │ │ │ ├── spdy │ │ │ │ │ ├── dictionary.go │ │ │ │ │ ├── read.go │ │ │ │ │ ├── types.go │ │ │ │ │ └── write.go │ │ │ │ │ ├── stream.go │ │ │ │ │ └── utils.go │ │ │ ├── emicklei │ │ │ │ └── go-restful │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CHANGES.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Srcfile │ │ │ │ │ ├── bench_test.sh │ │ │ │ │ ├── compress.go │ │ │ │ │ ├── compressor_cache.go │ │ │ │ │ ├── compressor_pools.go │ │ │ │ │ ├── compressors.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── container.go │ │ │ │ │ ├── cors_filter.go │ │ │ │ │ ├── coverage.sh │ │ │ │ │ ├── curly.go │ │ │ │ │ ├── curly_route.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── entity_accessors.go │ │ │ │ │ ├── filter.go │ │ │ │ │ ├── jsr311.go │ │ │ │ │ ├── log │ │ │ │ │ └── log.go │ │ │ │ │ ├── logger.go │ │ │ │ │ ├── mime.go │ │ │ │ │ ├── options_filter.go │ │ │ │ │ ├── parameter.go │ │ │ │ │ ├── path_expression.go │ │ │ │ │ ├── request.go │ │ │ │ │ ├── response.go │ │ │ │ │ ├── route.go │ │ │ │ │ ├── route_builder.go │ │ │ │ │ ├── router.go │ │ │ │ │ ├── service_error.go │ │ │ │ │ ├── web_service.go │ │ │ │ │ └── web_service_container.go │ │ │ ├── ghodss │ │ │ │ └── yaml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── fields.go │ │ │ │ │ └── yaml.go │ │ │ ├── gogo │ │ │ │ └── protobuf │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── proto │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clone.go │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── decode_gogo.go │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── duration_gogo.go │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── encode_gogo.go │ │ │ │ │ ├── equal.go │ │ │ │ │ ├── extensions.go │ │ │ │ │ ├── extensions_gogo.go │ │ │ │ │ ├── lib.go │ │ │ │ │ ├── lib_gogo.go │ │ │ │ │ ├── message_set.go │ │ │ │ │ ├── pointer_reflect.go │ │ │ │ │ ├── pointer_reflect_gogo.go │ │ │ │ │ ├── pointer_unsafe.go │ │ │ │ │ ├── pointer_unsafe_gogo.go │ │ │ │ │ ├── properties.go │ │ │ │ │ ├── properties_gogo.go │ │ │ │ │ ├── skip_gogo.go │ │ │ │ │ ├── text.go │ │ │ │ │ ├── text_gogo.go │ │ │ │ │ ├── text_parser.go │ │ │ │ │ ├── timestamp.go │ │ │ │ │ └── timestamp_gogo.go │ │ │ │ │ └── sortkeys │ │ │ │ │ └── sortkeys.go │ │ │ ├── golang │ │ │ │ ├── groupcache │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── lru │ │ │ │ │ │ └── lru.go │ │ │ │ └── protobuf │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── proto │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clone.go │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── equal.go │ │ │ │ │ ├── extensions.go │ │ │ │ │ ├── lib.go │ │ │ │ │ ├── message_set.go │ │ │ │ │ ├── pointer_reflect.go │ │ │ │ │ ├── pointer_unsafe.go │ │ │ │ │ ├── properties.go │ │ │ │ │ ├── text.go │ │ │ │ │ └── text_parser.go │ │ │ │ │ └── ptypes │ │ │ │ │ ├── any.go │ │ │ │ │ ├── any │ │ │ │ │ ├── any.pb.go │ │ │ │ │ └── any.proto │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── duration │ │ │ │ │ ├── duration.pb.go │ │ │ │ │ └── duration.proto │ │ │ │ │ ├── regen.sh │ │ │ │ │ ├── timestamp.go │ │ │ │ │ └── timestamp │ │ │ │ │ ├── timestamp.pb.go │ │ │ │ │ └── timestamp.proto │ │ │ ├── google │ │ │ │ └── btree │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── btree.go │ │ │ │ │ └── btree_mem.go │ │ │ ├── googleapis │ │ │ │ └── gnostic │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── OpenAPIv2 │ │ │ │ │ ├── OpenAPIv2.go │ │ │ │ │ ├── OpenAPIv2.pb.go │ │ │ │ │ ├── OpenAPIv2.proto │ │ │ │ │ ├── README.md │ │ │ │ │ └── openapi-2.0.json │ │ │ │ │ ├── compiler │ │ │ │ │ ├── README.md │ │ │ │ │ ├── context.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── extension-handler.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── main.go │ │ │ │ │ └── reader.go │ │ │ │ │ └── extensions │ │ │ │ │ ├── COMPILE-EXTENSION.sh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── extension.pb.go │ │ │ │ │ ├── extension.proto │ │ │ │ │ └── extensions.go │ │ │ ├── gophercloud │ │ │ │ └── gophercloud │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── .zuul.yaml │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── FAQ.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── MIGRATING.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── STYLEGUIDE.md │ │ │ │ │ ├── auth_options.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpoint_search.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── openstack │ │ │ │ │ ├── auth_env.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpoint_location.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── identity │ │ │ │ │ │ ├── v2 │ │ │ │ │ │ │ ├── tenants │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ │ │ └── urls.go │ │ │ │ │ │ │ └── tokens │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ │ │ └── urls.go │ │ │ │ │ │ └── v3 │ │ │ │ │ │ │ └── tokens │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ │ └── urls.go │ │ │ │ │ └── utils │ │ │ │ │ │ └── choose_version.go │ │ │ │ │ ├── pagination │ │ │ │ │ ├── http.go │ │ │ │ │ ├── linked.go │ │ │ │ │ ├── marker.go │ │ │ │ │ ├── pager.go │ │ │ │ │ ├── pkg.go │ │ │ │ │ └── single.go │ │ │ │ │ ├── params.go │ │ │ │ │ ├── provider_client.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── service_client.go │ │ │ │ │ └── util.go │ │ │ ├── gregjones │ │ │ │ └── httpcache │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── diskcache │ │ │ │ │ └── diskcache.go │ │ │ │ │ └── httpcache.go │ │ │ ├── hashicorp │ │ │ │ └── golang-lru │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── 2q.go │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── arc.go │ │ │ │ │ ├── lru.go │ │ │ │ │ └── simplelru │ │ │ │ │ └── lru.go │ │ │ ├── howeyc │ │ │ │ └── gopass │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── OPENSOLARIS.LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── pass.go │ │ │ │ │ ├── terminal.go │ │ │ │ │ └── terminal_solaris.go │ │ │ ├── imdario │ │ │ │ └── mergo │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── map.go │ │ │ │ │ ├── merge.go │ │ │ │ │ └── mergo.go │ │ │ ├── jonboulle │ │ │ │ └── clockwork │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── clockwork.go │ │ │ ├── json-iterator │ │ │ │ └── go │ │ │ │ │ ├── .codecov.yml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── Gopkg.lock │ │ │ │ │ ├── Gopkg.toml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── feature_adapter.go │ │ │ │ │ ├── feature_any.go │ │ │ │ │ ├── feature_any_array.go │ │ │ │ │ ├── feature_any_bool.go │ │ │ │ │ ├── feature_any_float.go │ │ │ │ │ ├── feature_any_int32.go │ │ │ │ │ ├── feature_any_int64.go │ │ │ │ │ ├── feature_any_invalid.go │ │ │ │ │ ├── feature_any_nil.go │ │ │ │ │ ├── feature_any_number.go │ │ │ │ │ ├── feature_any_object.go │ │ │ │ │ ├── feature_any_string.go │ │ │ │ │ ├── feature_any_uint32.go │ │ │ │ │ ├── feature_any_uint64.go │ │ │ │ │ ├── feature_config.go │ │ │ │ │ ├── feature_iter.go │ │ │ │ │ ├── feature_iter_array.go │ │ │ │ │ ├── feature_iter_float.go │ │ │ │ │ ├── feature_iter_int.go │ │ │ │ │ ├── feature_iter_object.go │ │ │ │ │ ├── feature_iter_skip.go │ │ │ │ │ ├── feature_iter_skip_sloppy.go │ │ │ │ │ ├── feature_iter_skip_strict.go │ │ │ │ │ ├── feature_iter_string.go │ │ │ │ │ ├── feature_json_number.go │ │ │ │ │ ├── feature_pool.go │ │ │ │ │ ├── feature_reflect.go │ │ │ │ │ ├── feature_reflect_array.go │ │ │ │ │ ├── feature_reflect_extension.go │ │ │ │ │ ├── feature_reflect_map.go │ │ │ │ │ ├── feature_reflect_native.go │ │ │ │ │ ├── feature_reflect_object.go │ │ │ │ │ ├── feature_reflect_slice.go │ │ │ │ │ ├── feature_reflect_struct_decoder.go │ │ │ │ │ ├── feature_stream.go │ │ │ │ │ ├── feature_stream_float.go │ │ │ │ │ ├── feature_stream_int.go │ │ │ │ │ ├── feature_stream_string.go │ │ │ │ │ ├── fuzzy_mode_convert_table.md │ │ │ │ │ ├── jsoniter.go │ │ │ │ │ └── test.sh │ │ │ ├── juju │ │ │ │ └── ratelimit │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── ratelimit.go │ │ │ │ │ └── reader.go │ │ │ ├── mailru │ │ │ │ └── easyjson │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── buffer │ │ │ │ │ └── pool.go │ │ │ │ │ ├── jlexer │ │ │ │ │ ├── bytestostr.go │ │ │ │ │ ├── bytestostr_nounsafe.go │ │ │ │ │ ├── error.go │ │ │ │ │ └── lexer.go │ │ │ │ │ └── jwriter │ │ │ │ │ └── writer.go │ │ │ ├── peterbourgon │ │ │ │ └── diskv │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── compression.go │ │ │ │ │ ├── diskv.go │ │ │ │ │ └── index.go │ │ │ ├── pmezard │ │ │ │ └── go-difflib │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── difflib │ │ │ │ │ └── difflib.go │ │ │ ├── spf13 │ │ │ │ └── pflag │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bool.go │ │ │ │ │ ├── bool_slice.go │ │ │ │ │ ├── count.go │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── flag.go │ │ │ │ │ ├── float32.go │ │ │ │ │ ├── float64.go │ │ │ │ │ ├── golangflag.go │ │ │ │ │ ├── int.go │ │ │ │ │ ├── int32.go │ │ │ │ │ ├── int64.go │ │ │ │ │ ├── int8.go │ │ │ │ │ ├── int_slice.go │ │ │ │ │ ├── ip.go │ │ │ │ │ ├── ip_slice.go │ │ │ │ │ ├── ipmask.go │ │ │ │ │ ├── ipnet.go │ │ │ │ │ ├── string.go │ │ │ │ │ ├── string_array.go │ │ │ │ │ ├── string_slice.go │ │ │ │ │ ├── uint.go │ │ │ │ │ ├── uint16.go │ │ │ │ │ ├── uint32.go │ │ │ │ │ ├── uint64.go │ │ │ │ │ ├── uint8.go │ │ │ │ │ └── uint_slice.go │ │ │ └── stretchr │ │ │ │ └── testify │ │ │ │ ├── LICENCE.txt │ │ │ │ ├── LICENSE │ │ │ │ └── assert │ │ │ │ ├── assertion_format.go │ │ │ │ ├── assertion_format.go.tmpl │ │ │ │ ├── assertion_forward.go │ │ │ │ ├── assertion_forward.go.tmpl │ │ │ │ ├── assertions.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── forward_assertions.go │ │ │ │ └── http_assertions.go │ │ │ ├── golang.org │ │ │ └── x │ │ │ │ ├── crypto │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ └── ssh │ │ │ │ │ └── terminal │ │ │ │ │ ├── terminal.go │ │ │ │ │ ├── util.go │ │ │ │ │ ├── util_bsd.go │ │ │ │ │ ├── util_linux.go │ │ │ │ │ ├── util_plan9.go │ │ │ │ │ ├── util_solaris.go │ │ │ │ │ └── util_windows.go │ │ │ │ ├── net │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── context │ │ │ │ │ ├── context.go │ │ │ │ │ ├── ctxhttp │ │ │ │ │ │ ├── ctxhttp.go │ │ │ │ │ │ └── ctxhttp_pre17.go │ │ │ │ │ ├── go17.go │ │ │ │ │ ├── go19.go │ │ │ │ │ ├── pre_go17.go │ │ │ │ │ └── pre_go19.go │ │ │ │ ├── http2 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── ciphers.go │ │ │ │ │ ├── client_conn_pool.go │ │ │ │ │ ├── configure_transport.go │ │ │ │ │ ├── databuffer.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── flow.go │ │ │ │ │ ├── frame.go │ │ │ │ │ ├── go16.go │ │ │ │ │ ├── go17.go │ │ │ │ │ ├── go17_not18.go │ │ │ │ │ ├── go18.go │ │ │ │ │ ├── go19.go │ │ │ │ │ ├── gotrack.go │ │ │ │ │ ├── headermap.go │ │ │ │ │ ├── hpack │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ ├── hpack.go │ │ │ │ │ │ ├── huffman.go │ │ │ │ │ │ └── tables.go │ │ │ │ │ ├── http2.go │ │ │ │ │ ├── not_go16.go │ │ │ │ │ ├── not_go17.go │ │ │ │ │ ├── not_go18.go │ │ │ │ │ ├── not_go19.go │ │ │ │ │ ├── pipe.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── transport.go │ │ │ │ │ ├── write.go │ │ │ │ │ ├── writesched.go │ │ │ │ │ ├── writesched_priority.go │ │ │ │ │ └── writesched_random.go │ │ │ │ ├── idna │ │ │ │ │ ├── idna.go │ │ │ │ │ ├── punycode.go │ │ │ │ │ ├── tables.go │ │ │ │ │ ├── trie.go │ │ │ │ │ └── trieval.go │ │ │ │ └── lex │ │ │ │ │ └── httplex │ │ │ │ │ └── httplex.go │ │ │ │ ├── oauth2 │ │ │ │ ├── .travis.yml │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── client_appengine.go │ │ │ │ ├── google │ │ │ │ │ ├── appengine.go │ │ │ │ │ ├── appengine_hook.go │ │ │ │ │ ├── appengineflex_hook.go │ │ │ │ │ ├── default.go │ │ │ │ │ ├── google.go │ │ │ │ │ ├── jwt.go │ │ │ │ │ └── sdk.go │ │ │ │ ├── internal │ │ │ │ │ ├── oauth2.go │ │ │ │ │ ├── token.go │ │ │ │ │ └── transport.go │ │ │ │ ├── jws │ │ │ │ │ └── jws.go │ │ │ │ ├── jwt │ │ │ │ │ └── jwt.go │ │ │ │ ├── oauth2.go │ │ │ │ ├── token.go │ │ │ │ └── transport.go │ │ │ │ ├── sys │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── unix │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── asm_darwin_386.s │ │ │ │ │ ├── asm_darwin_amd64.s │ │ │ │ │ ├── asm_darwin_arm.s │ │ │ │ │ ├── asm_darwin_arm64.s │ │ │ │ │ ├── asm_dragonfly_amd64.s │ │ │ │ │ ├── asm_freebsd_386.s │ │ │ │ │ ├── asm_freebsd_amd64.s │ │ │ │ │ ├── asm_freebsd_arm.s │ │ │ │ │ ├── asm_linux_386.s │ │ │ │ │ ├── asm_linux_amd64.s │ │ │ │ │ ├── asm_linux_arm.s │ │ │ │ │ ├── asm_linux_arm64.s │ │ │ │ │ ├── asm_linux_mips64x.s │ │ │ │ │ ├── asm_linux_mipsx.s │ │ │ │ │ ├── asm_linux_ppc64x.s │ │ │ │ │ ├── asm_linux_s390x.s │ │ │ │ │ ├── asm_netbsd_386.s │ │ │ │ │ ├── asm_netbsd_amd64.s │ │ │ │ │ ├── asm_netbsd_arm.s │ │ │ │ │ ├── asm_openbsd_386.s │ │ │ │ │ ├── asm_openbsd_amd64.s │ │ │ │ │ ├── asm_openbsd_arm.s │ │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ │ ├── bluetooth_linux.go │ │ │ │ │ ├── cap_freebsd.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── dev_darwin.go │ │ │ │ │ ├── dev_dragonfly.go │ │ │ │ │ ├── dev_freebsd.go │ │ │ │ │ ├── dev_linux.go │ │ │ │ │ ├── dev_netbsd.go │ │ │ │ │ ├── dev_openbsd.go │ │ │ │ │ ├── dirent.go │ │ │ │ │ ├── endian_big.go │ │ │ │ │ ├── endian_little.go │ │ │ │ │ ├── env_unix.go │ │ │ │ │ ├── env_unset.go │ │ │ │ │ ├── errors_freebsd_386.go │ │ │ │ │ ├── errors_freebsd_amd64.go │ │ │ │ │ ├── errors_freebsd_arm.go │ │ │ │ │ ├── file_unix.go │ │ │ │ │ ├── flock.go │ │ │ │ │ ├── flock_linux_32bit.go │ │ │ │ │ ├── gccgo.go │ │ │ │ │ ├── gccgo_c.c │ │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ │ ├── mkall.sh │ │ │ │ │ ├── mkerrors.sh │ │ │ │ │ ├── mkpost.go │ │ │ │ │ ├── mksyscall.pl │ │ │ │ │ ├── mksyscall_solaris.pl │ │ │ │ │ ├── mksysctl_openbsd.pl │ │ │ │ │ ├── mksysnum_darwin.pl │ │ │ │ │ ├── mksysnum_dragonfly.pl │ │ │ │ │ ├── mksysnum_freebsd.pl │ │ │ │ │ ├── mksysnum_netbsd.pl │ │ │ │ │ ├── mksysnum_openbsd.pl │ │ │ │ │ ├── openbsd_pledge.go │ │ │ │ │ ├── pagesize_unix.go │ │ │ │ │ ├── race.go │ │ │ │ │ ├── race0.go │ │ │ │ │ ├── sockcmsg_linux.go │ │ │ │ │ ├── sockcmsg_unix.go │ │ │ │ │ ├── str.go │ │ │ │ │ ├── syscall.go │ │ │ │ │ ├── syscall_bsd.go │ │ │ │ │ ├── syscall_darwin.go │ │ │ │ │ ├── syscall_darwin_386.go │ │ │ │ │ ├── syscall_darwin_amd64.go │ │ │ │ │ ├── syscall_darwin_arm.go │ │ │ │ │ ├── syscall_darwin_arm64.go │ │ │ │ │ ├── syscall_dragonfly.go │ │ │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ │ │ ├── syscall_freebsd.go │ │ │ │ │ ├── syscall_freebsd_386.go │ │ │ │ │ ├── syscall_freebsd_amd64.go │ │ │ │ │ ├── syscall_freebsd_arm.go │ │ │ │ │ ├── syscall_linux.go │ │ │ │ │ ├── syscall_linux_386.go │ │ │ │ │ ├── syscall_linux_amd64.go │ │ │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ │ │ ├── syscall_linux_arm.go │ │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ │ ├── syscall_linux_mips64x.go │ │ │ │ │ ├── syscall_linux_mipsx.go │ │ │ │ │ ├── syscall_linux_ppc64x.go │ │ │ │ │ ├── syscall_linux_s390x.go │ │ │ │ │ ├── syscall_linux_sparc64.go │ │ │ │ │ ├── syscall_netbsd.go │ │ │ │ │ ├── syscall_netbsd_386.go │ │ │ │ │ ├── syscall_netbsd_amd64.go │ │ │ │ │ ├── syscall_netbsd_arm.go │ │ │ │ │ ├── syscall_no_getwd.go │ │ │ │ │ ├── syscall_openbsd.go │ │ │ │ │ ├── syscall_openbsd_386.go │ │ │ │ │ ├── syscall_openbsd_amd64.go │ │ │ │ │ ├── syscall_openbsd_arm.go │ │ │ │ │ ├── syscall_solaris.go │ │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ ├── syscall_unix_gc.go │ │ │ │ │ ├── timestruct.go │ │ │ │ │ ├── types_darwin.go │ │ │ │ │ ├── types_dragonfly.go │ │ │ │ │ ├── types_freebsd.go │ │ │ │ │ ├── types_netbsd.go │ │ │ │ │ ├── types_openbsd.go │ │ │ │ │ ├── types_solaris.go │ │ │ │ │ ├── zerrors_darwin_386.go │ │ │ │ │ ├── zerrors_darwin_amd64.go │ │ │ │ │ ├── zerrors_darwin_arm.go │ │ │ │ │ ├── zerrors_darwin_arm64.go │ │ │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ │ │ ├── zerrors_freebsd_386.go │ │ │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ │ │ ├── zerrors_freebsd_arm.go │ │ │ │ │ ├── zerrors_linux_386.go │ │ │ │ │ ├── zerrors_linux_amd64.go │ │ │ │ │ ├── zerrors_linux_arm.go │ │ │ │ │ ├── zerrors_linux_arm64.go │ │ │ │ │ ├── zerrors_linux_mips.go │ │ │ │ │ ├── zerrors_linux_mips64.go │ │ │ │ │ ├── zerrors_linux_mips64le.go │ │ │ │ │ ├── zerrors_linux_mipsle.go │ │ │ │ │ ├── zerrors_linux_ppc64.go │ │ │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ │ │ ├── zerrors_linux_s390x.go │ │ │ │ │ ├── zerrors_linux_sparc64.go │ │ │ │ │ ├── zerrors_netbsd_386.go │ │ │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ │ │ ├── zerrors_netbsd_arm.go │ │ │ │ │ ├── zerrors_openbsd_386.go │ │ │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ │ │ ├── zerrors_openbsd_arm.go │ │ │ │ │ ├── zerrors_solaris_amd64.go │ │ │ │ │ ├── zptrace386_linux.go │ │ │ │ │ ├── zptracearm_linux.go │ │ │ │ │ ├── zptracemips_linux.go │ │ │ │ │ ├── zptracemipsle_linux.go │ │ │ │ │ ├── zsyscall_darwin_386.go │ │ │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ │ │ ├── zsyscall_darwin_arm.go │ │ │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ │ │ ├── zsyscall_freebsd_386.go │ │ │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ │ │ ├── zsyscall_linux_386.go │ │ │ │ │ ├── zsyscall_linux_amd64.go │ │ │ │ │ ├── zsyscall_linux_arm.go │ │ │ │ │ ├── zsyscall_linux_arm64.go │ │ │ │ │ ├── zsyscall_linux_mips.go │ │ │ │ │ ├── zsyscall_linux_mips64.go │ │ │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ │ │ ├── zsyscall_linux_s390x.go │ │ │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ │ │ ├── zsyscall_netbsd_386.go │ │ │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ │ │ ├── zsyscall_openbsd_386.go │ │ │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ │ │ ├── zsysctl_openbsd_386.go │ │ │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ │ │ ├── zsysnum_darwin_386.go │ │ │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ │ │ ├── zsysnum_darwin_arm.go │ │ │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ │ │ ├── zsysnum_freebsd_386.go │ │ │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ │ │ ├── zsysnum_linux_386.go │ │ │ │ │ ├── zsysnum_linux_amd64.go │ │ │ │ │ ├── zsysnum_linux_arm.go │ │ │ │ │ ├── zsysnum_linux_arm64.go │ │ │ │ │ ├── zsysnum_linux_mips.go │ │ │ │ │ ├── zsysnum_linux_mips64.go │ │ │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ │ │ ├── zsysnum_linux_s390x.go │ │ │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ │ │ ├── zsysnum_netbsd_386.go │ │ │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ │ │ ├── zsysnum_openbsd_386.go │ │ │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ │ │ ├── zsysnum_solaris_amd64.go │ │ │ │ │ ├── ztypes_darwin_386.go │ │ │ │ │ ├── ztypes_darwin_amd64.go │ │ │ │ │ ├── ztypes_darwin_arm.go │ │ │ │ │ ├── ztypes_darwin_arm64.go │ │ │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ │ │ ├── ztypes_freebsd_386.go │ │ │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ │ │ ├── ztypes_freebsd_arm.go │ │ │ │ │ ├── ztypes_linux_386.go │ │ │ │ │ ├── ztypes_linux_amd64.go │ │ │ │ │ ├── ztypes_linux_arm.go │ │ │ │ │ ├── ztypes_linux_arm64.go │ │ │ │ │ ├── ztypes_linux_mips.go │ │ │ │ │ ├── ztypes_linux_mips64.go │ │ │ │ │ ├── ztypes_linux_mips64le.go │ │ │ │ │ ├── ztypes_linux_mipsle.go │ │ │ │ │ ├── ztypes_linux_ppc64.go │ │ │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ │ │ ├── ztypes_linux_s390x.go │ │ │ │ │ ├── ztypes_linux_sparc64.go │ │ │ │ │ ├── ztypes_netbsd_386.go │ │ │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ │ │ ├── ztypes_netbsd_arm.go │ │ │ │ │ ├── ztypes_openbsd_386.go │ │ │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ │ │ ├── ztypes_openbsd_arm.go │ │ │ │ │ └── ztypes_solaris_amd64.go │ │ │ │ └── windows │ │ │ │ │ ├── asm_windows_386.s │ │ │ │ │ ├── asm_windows_amd64.s │ │ │ │ │ ├── dll_windows.go │ │ │ │ │ ├── env_unset.go │ │ │ │ │ ├── env_windows.go │ │ │ │ │ ├── eventlog.go │ │ │ │ │ ├── exec_windows.go │ │ │ │ │ ├── memory_windows.go │ │ │ │ │ ├── mksyscall.go │ │ │ │ │ ├── race.go │ │ │ │ │ ├── race0.go │ │ │ │ │ ├── security_windows.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── str.go │ │ │ │ │ ├── syscall.go │ │ │ │ │ ├── syscall_windows.go │ │ │ │ │ ├── types_windows.go │ │ │ │ │ ├── types_windows_386.go │ │ │ │ │ ├── types_windows_amd64.go │ │ │ │ │ └── zsyscall_windows.go │ │ │ │ └── text │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── cases │ │ │ │ ├── cases.go │ │ │ │ ├── context.go │ │ │ │ ├── fold.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── icu.go │ │ │ │ ├── info.go │ │ │ │ ├── map.go │ │ │ │ ├── tables.go │ │ │ │ └── trieval.go │ │ │ │ ├── internal │ │ │ │ ├── gen.go │ │ │ │ ├── internal.go │ │ │ │ ├── match.go │ │ │ │ ├── tables.go │ │ │ │ └── tag │ │ │ │ │ └── tag.go │ │ │ │ ├── language │ │ │ │ ├── Makefile │ │ │ │ ├── common.go │ │ │ │ ├── coverage.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_common.go │ │ │ │ ├── gen_index.go │ │ │ │ ├── go1_1.go │ │ │ │ ├── go1_2.go │ │ │ │ ├── index.go │ │ │ │ ├── language.go │ │ │ │ ├── lookup.go │ │ │ │ ├── match.go │ │ │ │ ├── parse.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ │ ├── runes │ │ │ │ ├── cond.go │ │ │ │ └── runes.go │ │ │ │ ├── secure │ │ │ │ ├── bidirule │ │ │ │ │ └── bidirule.go │ │ │ │ └── precis │ │ │ │ │ ├── class.go │ │ │ │ │ ├── context.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── gen_trieval.go │ │ │ │ │ ├── nickname.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── profile.go │ │ │ │ │ ├── profiles.go │ │ │ │ │ ├── tables.go │ │ │ │ │ ├── transformer.go │ │ │ │ │ └── trieval.go │ │ │ │ ├── transform │ │ │ │ └── transform.go │ │ │ │ ├── unicode │ │ │ │ ├── bidi │ │ │ │ │ ├── bidi.go │ │ │ │ │ ├── bracket.go │ │ │ │ │ ├── core.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── gen_ranges.go │ │ │ │ │ ├── gen_trieval.go │ │ │ │ │ ├── prop.go │ │ │ │ │ ├── tables.go │ │ │ │ │ └── trieval.go │ │ │ │ └── norm │ │ │ │ │ ├── composition.go │ │ │ │ │ ├── forminfo.go │ │ │ │ │ ├── input.go │ │ │ │ │ ├── iter.go │ │ │ │ │ ├── maketables.go │ │ │ │ │ ├── normalize.go │ │ │ │ │ ├── readwriter.go │ │ │ │ │ ├── tables.go │ │ │ │ │ ├── transform.go │ │ │ │ │ ├── trie.go │ │ │ │ │ └── triegen.go │ │ │ │ └── width │ │ │ │ ├── gen.go │ │ │ │ ├── gen_common.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── kind_string.go │ │ │ │ ├── tables.go │ │ │ │ ├── transform.go │ │ │ │ ├── trieval.go │ │ │ │ └── width.go │ │ │ └── gopkg.in │ │ │ ├── inf.v0 │ │ │ ├── LICENSE │ │ │ ├── dec.go │ │ │ └── rounder.go │ │ │ └── yaml.v2 │ │ │ ├── LICENSE │ │ │ ├── LICENSE.libyaml │ │ │ ├── README.md │ │ │ ├── apic.go │ │ │ ├── decode.go │ │ │ ├── emitterc.go │ │ │ ├── encode.go │ │ │ ├── parserc.go │ │ │ ├── readerc.go │ │ │ ├── resolve.go │ │ │ ├── scannerc.go │ │ │ ├── sorter.go │ │ │ ├── writerc.go │ │ │ ├── yaml.go │ │ │ ├── yamlh.go │ │ │ └── yamlprivateh.go │ └── kube-openapi │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Godeps │ │ ├── Godeps.json │ │ └── Readme │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── example │ │ └── openapi-gen │ │ │ └── main.go │ │ └── pkg │ │ ├── aggregator │ │ ├── aggregator.go │ │ └── aggregator_test.go │ │ ├── builder │ │ ├── doc.go │ │ ├── openapi.go │ │ ├── openapi_test.go │ │ └── util.go │ │ ├── common │ │ ├── common.go │ │ └── doc.go │ │ ├── generators │ │ ├── README │ │ ├── openapi.go │ │ └── openapi_test.go │ │ ├── handler │ │ └── handler.go │ │ └── util │ │ ├── proto │ │ ├── doc.go │ │ ├── document.go │ │ ├── openapi.go │ │ ├── openapi_suite_test.go │ │ ├── openapi_test.go │ │ ├── testing │ │ │ ├── openapi.go │ │ │ └── swagger.json │ │ └── validation │ │ │ ├── errors.go │ │ │ ├── types.go │ │ │ └── validation.go │ │ ├── trie.go │ │ └── util.go ├── src2 │ └── src │ │ ├── archive │ │ └── tar │ │ │ ├── common.go │ │ │ ├── format.go │ │ │ ├── reader.go │ │ │ ├── stat_atim.go │ │ │ ├── stat_atimespec.go │ │ │ ├── stat_unix.go │ │ │ ├── strconv.go │ │ │ └── writer.go │ │ ├── cloud.google.com │ │ └── go │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── compute │ │ │ └── metadata │ │ │ │ └── metadata.go │ │ │ ├── internal │ │ │ ├── cloud.go │ │ │ └── retry.go │ │ │ └── logging │ │ │ ├── apiv2 │ │ │ ├── README.md │ │ │ ├── config_client.go │ │ │ ├── doc.go │ │ │ ├── logging_client.go │ │ │ └── metrics_client.go │ │ │ ├── doc.go │ │ │ ├── internal │ │ │ └── common.go │ │ │ └── logging.go │ │ ├── github.com │ │ ├── Azure │ │ │ └── go-ansiterm │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── constants.go │ │ │ │ ├── context.go │ │ │ │ ├── csi_entry_state.go │ │ │ │ ├── csi_param_state.go │ │ │ │ ├── escape_intermediate_state.go │ │ │ │ ├── escape_state.go │ │ │ │ ├── event_handler.go │ │ │ │ ├── ground_state.go │ │ │ │ ├── osc_string_state.go │ │ │ │ ├── parser.go │ │ │ │ ├── parser_action_helpers.go │ │ │ │ ├── parser_actions.go │ │ │ │ ├── states.go │ │ │ │ ├── utilities.go │ │ │ │ └── winterm │ │ │ │ ├── ansi.go │ │ │ │ ├── api.go │ │ │ │ ├── attr_translation.go │ │ │ │ ├── cursor_helpers.go │ │ │ │ ├── erase_helpers.go │ │ │ │ ├── scroll_helper.go │ │ │ │ ├── utilities.go │ │ │ │ └── win_event_handler.go │ │ ├── BurntSushi │ │ │ └── toml │ │ │ │ ├── COPYING │ │ │ │ ├── README.md │ │ │ │ ├── decode.go │ │ │ │ ├── decode_meta.go │ │ │ │ ├── doc.go │ │ │ │ ├── encode.go │ │ │ │ ├── encoding_types.go │ │ │ │ ├── encoding_types_1.1.go │ │ │ │ ├── lex.go │ │ │ │ ├── parse.go │ │ │ │ ├── type_check.go │ │ │ │ └── type_fields.go │ │ ├── Graylog2 │ │ │ └── go-gelf │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── gelf │ │ │ │ ├── message.go │ │ │ │ ├── reader.go │ │ │ │ ├── tcpreader.go │ │ │ │ ├── tcpwriter.go │ │ │ │ ├── udpwriter.go │ │ │ │ ├── utils.go │ │ │ │ └── writer.go │ │ ├── Microsoft │ │ │ ├── go-winio │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── archive │ │ │ │ │ └── tar │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ ├── reader.go │ │ │ │ │ │ ├── stat_atim.go │ │ │ │ │ │ ├── stat_atimespec.go │ │ │ │ │ │ ├── stat_unix.go │ │ │ │ │ │ └── writer.go │ │ │ │ ├── backup.go │ │ │ │ ├── backuptar │ │ │ │ │ ├── noop.go │ │ │ │ │ └── tar.go │ │ │ │ ├── ea.go │ │ │ │ ├── file.go │ │ │ │ ├── fileinfo.go │ │ │ │ ├── pipe.go │ │ │ │ ├── privilege.go │ │ │ │ ├── reparse.go │ │ │ │ ├── sd.go │ │ │ │ ├── syscall.go │ │ │ │ ├── vhd │ │ │ │ │ ├── vhd.go │ │ │ │ │ └── zvhd.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── hcsshim │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── activatelayer.go │ │ │ │ ├── baselayer.go │ │ │ │ ├── callback.go │ │ │ │ ├── cgo.go │ │ │ │ ├── container.go │ │ │ │ ├── createlayer.go │ │ │ │ ├── createsandboxlayer.go │ │ │ │ ├── deactivatelayer.go │ │ │ │ ├── destroylayer.go │ │ │ │ ├── errors.go │ │ │ │ ├── expandsandboxsize.go │ │ │ │ ├── exportlayer.go │ │ │ │ ├── getlayermountpath.go │ │ │ │ ├── getsharedbaseimages.go │ │ │ │ ├── guid.go │ │ │ │ ├── hcsshim.go │ │ │ │ ├── hnsendpoint.go │ │ │ │ ├── hnsfuncs.go │ │ │ │ ├── hnsnetwork.go │ │ │ │ ├── hnspolicy.go │ │ │ │ ├── hnspolicylist.go │ │ │ │ ├── importlayer.go │ │ │ │ ├── interface.go │ │ │ │ ├── layerexists.go │ │ │ │ ├── layerutils.go │ │ │ │ ├── legacy.go │ │ │ │ ├── legacy18.go │ │ │ │ ├── legacy19.go │ │ │ │ ├── nametoguid.go │ │ │ │ ├── preparelayer.go │ │ │ │ ├── process.go │ │ │ │ ├── processimage.go │ │ │ │ ├── unpreparelayer.go │ │ │ │ ├── utils.go │ │ │ │ ├── version.go │ │ │ │ ├── waithelper.go │ │ │ │ └── zhcsshim.go │ │ │ └── opengcs │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── client │ │ │ │ ├── config.go │ │ │ │ ├── createext4vhdx.go │ │ │ │ ├── hotaddvhd.go │ │ │ │ ├── hotremovevhd.go │ │ │ │ ├── layervhddetails.go │ │ │ │ ├── process.go │ │ │ │ ├── tartovhd.go │ │ │ │ ├── unsupported.go │ │ │ │ ├── utilities.go │ │ │ │ └── vhdtotar.go │ │ │ │ └── service │ │ │ │ └── gcsutils │ │ │ │ ├── README │ │ │ │ └── remotefs │ │ │ │ ├── defs.go │ │ │ │ ├── remotefs.go │ │ │ │ └── utils.go │ │ ├── Nvveen │ │ │ └── Gotty │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── attributes.go │ │ │ │ ├── gotty.go │ │ │ │ ├── parser.go │ │ │ │ └── types.go │ │ ├── RackSec │ │ │ └── srslog │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── constants.go │ │ │ │ ├── dialer.go │ │ │ │ ├── formatter.go │ │ │ │ ├── framer.go │ │ │ │ ├── net_conn.go │ │ │ │ ├── srslog.go │ │ │ │ ├── srslog_unix.go │ │ │ │ └── writer.go │ │ ├── armon │ │ │ ├── go-metrics │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── const_unix.go │ │ │ │ ├── const_windows.go │ │ │ │ ├── inmem.go │ │ │ │ ├── inmem_signal.go │ │ │ │ ├── metrics.go │ │ │ │ ├── sink.go │ │ │ │ ├── start.go │ │ │ │ ├── statsd.go │ │ │ │ └── statsite.go │ │ │ └── go-radix │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── radix.go │ │ ├── aws │ │ │ └── aws-sdk-go │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── NOTICE.txt │ │ │ │ ├── README.md │ │ │ │ ├── aws │ │ │ │ ├── awserr │ │ │ │ │ ├── error.go │ │ │ │ │ └── types.go │ │ │ │ ├── awsutil │ │ │ │ │ ├── copy.go │ │ │ │ │ ├── equal.go │ │ │ │ │ ├── path_value.go │ │ │ │ │ ├── prettify.go │ │ │ │ │ └── string_value.go │ │ │ │ ├── client │ │ │ │ │ ├── client.go │ │ │ │ │ ├── default_retryer.go │ │ │ │ │ └── metadata │ │ │ │ │ │ └── client_info.go │ │ │ │ ├── config.go │ │ │ │ ├── convert_types.go │ │ │ │ ├── corehandlers │ │ │ │ │ ├── handlers.go │ │ │ │ │ └── param_validator.go │ │ │ │ ├── credentials │ │ │ │ │ ├── chain_provider.go │ │ │ │ │ ├── credentials.go │ │ │ │ │ ├── ec2rolecreds │ │ │ │ │ │ └── ec2_role_provider.go │ │ │ │ │ ├── endpointcreds │ │ │ │ │ │ └── provider.go │ │ │ │ │ ├── env_provider.go │ │ │ │ │ ├── shared_credentials_provider.go │ │ │ │ │ ├── static_provider.go │ │ │ │ │ └── stscreds │ │ │ │ │ │ └── assume_role_provider.go │ │ │ │ ├── defaults │ │ │ │ │ └── defaults.go │ │ │ │ ├── ec2metadata │ │ │ │ │ ├── api.go │ │ │ │ │ └── service.go │ │ │ │ ├── errors.go │ │ │ │ ├── logger.go │ │ │ │ ├── request │ │ │ │ │ ├── handlers.go │ │ │ │ │ ├── http_request.go │ │ │ │ │ ├── offset_reader.go │ │ │ │ │ ├── request.go │ │ │ │ │ ├── request_pagination.go │ │ │ │ │ ├── retryer.go │ │ │ │ │ └── validation.go │ │ │ │ ├── session │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── env_config.go │ │ │ │ │ ├── session.go │ │ │ │ │ └── shared_config.go │ │ │ │ ├── signer │ │ │ │ │ └── v4 │ │ │ │ │ │ ├── header_rules.go │ │ │ │ │ │ ├── uri_path.go │ │ │ │ │ │ ├── uri_path_1_4.go │ │ │ │ │ │ └── v4.go │ │ │ │ ├── types.go │ │ │ │ └── version.go │ │ │ │ ├── private │ │ │ │ ├── README.md │ │ │ │ ├── endpoints │ │ │ │ │ ├── endpoints.go │ │ │ │ │ └── endpoints_map.go │ │ │ │ └── protocol │ │ │ │ │ ├── idempotency.go │ │ │ │ │ ├── json │ │ │ │ │ └── jsonutil │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ └── unmarshal.go │ │ │ │ │ ├── jsonrpc │ │ │ │ │ └── jsonrpc.go │ │ │ │ │ ├── query │ │ │ │ │ ├── build.go │ │ │ │ │ ├── queryutil │ │ │ │ │ │ └── queryutil.go │ │ │ │ │ ├── unmarshal.go │ │ │ │ │ └── unmarshal_error.go │ │ │ │ │ ├── rest │ │ │ │ │ ├── build.go │ │ │ │ │ ├── payload.go │ │ │ │ │ └── unmarshal.go │ │ │ │ │ ├── unmarshal.go │ │ │ │ │ └── xml │ │ │ │ │ └── xmlutil │ │ │ │ │ ├── build.go │ │ │ │ │ ├── unmarshal.go │ │ │ │ │ └── xml_to_struct.go │ │ │ │ └── service │ │ │ │ ├── cloudwatchlogs │ │ │ │ ├── api.go │ │ │ │ └── service.go │ │ │ │ └── sts │ │ │ │ ├── api.go │ │ │ │ ├── customizations.go │ │ │ │ └── service.go │ │ ├── beorn7 │ │ │ └── perks │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── quantile │ │ │ │ └── stream.go │ │ ├── boltdb │ │ │ └── bolt │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bolt_386.go │ │ │ │ ├── bolt_amd64.go │ │ │ │ ├── bolt_arm.go │ │ │ │ ├── bolt_arm64.go │ │ │ │ ├── bolt_linux.go │ │ │ │ ├── bolt_openbsd.go │ │ │ │ ├── bolt_ppc.go │ │ │ │ ├── bolt_ppc64.go │ │ │ │ ├── bolt_ppc64le.go │ │ │ │ ├── bolt_s390x.go │ │ │ │ ├── bolt_unix.go │ │ │ │ ├── bolt_unix_solaris.go │ │ │ │ ├── bolt_windows.go │ │ │ │ ├── boltsync_unix.go │ │ │ │ ├── bucket.go │ │ │ │ ├── cursor.go │ │ │ │ ├── db.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── freelist.go │ │ │ │ ├── node.go │ │ │ │ ├── page.go │ │ │ │ └── tx.go │ │ ├── bsphere │ │ │ └── le_go │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── le.go │ │ ├── cloudflare │ │ │ └── cfssl │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── api │ │ │ │ └── api.go │ │ │ │ ├── auth │ │ │ │ └── auth.go │ │ │ │ ├── certdb │ │ │ │ ├── README.md │ │ │ │ └── certdb.go │ │ │ │ ├── config │ │ │ │ └── config.go │ │ │ │ ├── crypto │ │ │ │ └── pkcs7 │ │ │ │ │ └── pkcs7.go │ │ │ │ ├── csr │ │ │ │ └── csr.go │ │ │ │ ├── errors │ │ │ │ ├── doc.go │ │ │ │ ├── error.go │ │ │ │ └── http.go │ │ │ │ ├── helpers │ │ │ │ ├── derhelpers │ │ │ │ │ └── derhelpers.go │ │ │ │ └── helpers.go │ │ │ │ ├── info │ │ │ │ └── info.go │ │ │ │ ├── initca │ │ │ │ └── initca.go │ │ │ │ ├── log │ │ │ │ └── log.go │ │ │ │ ├── ocsp │ │ │ │ └── config │ │ │ │ │ └── config.go │ │ │ │ └── signer │ │ │ │ ├── local │ │ │ │ └── local.go │ │ │ │ └── signer.go │ │ ├── containerd │ │ │ ├── cgroups │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── blkio.go │ │ │ │ ├── cgroup.go │ │ │ │ ├── control.go │ │ │ │ ├── cpu.go │ │ │ │ ├── cpuacct.go │ │ │ │ ├── cpuset.go │ │ │ │ ├── devices.go │ │ │ │ ├── errors.go │ │ │ │ ├── freezer.go │ │ │ │ ├── hierarchy.go │ │ │ │ ├── hugetlb.go │ │ │ │ ├── memory.go │ │ │ │ ├── metrics.pb.go │ │ │ │ ├── metrics.proto │ │ │ │ ├── named.go │ │ │ │ ├── net_cls.go │ │ │ │ ├── net_prio.go │ │ │ │ ├── paths.go │ │ │ │ ├── perf_event.go │ │ │ │ ├── pids.go │ │ │ │ ├── state.go │ │ │ │ ├── subsystem.go │ │ │ │ ├── systemd.go │ │ │ │ ├── ticks.go │ │ │ │ ├── utils.go │ │ │ │ └── v1.go │ │ │ ├── console │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── console.go │ │ │ │ ├── console_linux.go │ │ │ │ ├── console_unix.go │ │ │ │ ├── console_windows.go │ │ │ │ ├── tc_darwin.go │ │ │ │ ├── tc_freebsd.go │ │ │ │ ├── tc_linux.go │ │ │ │ ├── tc_solaris_cgo.go │ │ │ │ ├── tc_solaris_nocgo.go │ │ │ │ └── tc_unix.go │ │ │ ├── containerd │ │ │ │ ├── LICENSE.code │ │ │ │ ├── LICENSE.docs │ │ │ │ ├── NOTICE │ │ │ │ ├── README.md │ │ │ │ ├── api │ │ │ │ │ ├── README.md │ │ │ │ │ ├── events │ │ │ │ │ │ ├── container.pb.go │ │ │ │ │ │ ├── container.proto │ │ │ │ │ │ ├── content.pb.go │ │ │ │ │ │ ├── content.proto │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── image.pb.go │ │ │ │ │ │ ├── image.proto │ │ │ │ │ │ ├── namespace.pb.go │ │ │ │ │ │ ├── namespace.proto │ │ │ │ │ │ ├── snapshot.pb.go │ │ │ │ │ │ ├── snapshot.proto │ │ │ │ │ │ ├── task.pb.go │ │ │ │ │ │ └── task.proto │ │ │ │ │ ├── services │ │ │ │ │ │ ├── containers │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ ├── containers.pb.go │ │ │ │ │ │ │ │ └── containers.proto │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ ├── content.pb.go │ │ │ │ │ │ │ │ └── content.proto │ │ │ │ │ │ ├── diff │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ ├── diff.pb.go │ │ │ │ │ │ │ │ └── diff.proto │ │ │ │ │ │ ├── events │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── events.pb.go │ │ │ │ │ │ │ │ └── events.proto │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ ├── docs.go │ │ │ │ │ │ │ │ ├── images.pb.go │ │ │ │ │ │ │ │ └── images.proto │ │ │ │ │ │ ├── introspection │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── introspection.pb.go │ │ │ │ │ │ │ │ └── introspection.proto │ │ │ │ │ │ ├── leases │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── leases.pb.go │ │ │ │ │ │ │ │ └── leases.proto │ │ │ │ │ │ ├── namespaces │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ ├── namespace.pb.go │ │ │ │ │ │ │ │ └── namespace.proto │ │ │ │ │ │ ├── snapshots │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ ├── snapshots.pb.go │ │ │ │ │ │ │ │ └── snapshots.proto │ │ │ │ │ │ ├── tasks │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ ├── tasks.pb.go │ │ │ │ │ │ │ │ └── tasks.proto │ │ │ │ │ │ └── version │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── version.pb.go │ │ │ │ │ │ │ └── version.proto │ │ │ │ │ └── types │ │ │ │ │ │ ├── descriptor.pb.go │ │ │ │ │ │ ├── descriptor.proto │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── metrics.pb.go │ │ │ │ │ │ ├── metrics.proto │ │ │ │ │ │ ├── mount.pb.go │ │ │ │ │ │ ├── mount.proto │ │ │ │ │ │ ├── platform.pb.go │ │ │ │ │ │ ├── platform.proto │ │ │ │ │ │ └── task │ │ │ │ │ │ ├── task.pb.go │ │ │ │ │ │ └── task.proto │ │ │ │ ├── archive │ │ │ │ │ ├── tar.go │ │ │ │ │ ├── tar_unix.go │ │ │ │ │ ├── tar_windows.go │ │ │ │ │ ├── time.go │ │ │ │ │ ├── time_darwin.go │ │ │ │ │ ├── time_unix.go │ │ │ │ │ └── time_windows.go │ │ │ │ ├── cio │ │ │ │ │ ├── io.go │ │ │ │ │ ├── io_unix.go │ │ │ │ │ └── io_windows.go │ │ │ │ ├── client.go │ │ │ │ ├── client_opts.go │ │ │ │ ├── container.go │ │ │ │ ├── container_opts.go │ │ │ │ ├── container_opts_unix.go │ │ │ │ ├── containers │ │ │ │ │ └── containers.go │ │ │ │ ├── containerstore.go │ │ │ │ ├── content │ │ │ │ │ ├── content.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ └── local │ │ │ │ │ │ ├── locks.go │ │ │ │ │ │ ├── readerat.go │ │ │ │ │ │ ├── store.go │ │ │ │ │ │ ├── store_unix.go │ │ │ │ │ │ ├── store_windows.go │ │ │ │ │ │ └── writer.go │ │ │ │ ├── content_reader.go │ │ │ │ ├── content_store.go │ │ │ │ ├── content_writer.go │ │ │ │ ├── dialer │ │ │ │ │ ├── dialer.go │ │ │ │ │ ├── dialer_unix.go │ │ │ │ │ └── dialer_windows.go │ │ │ │ ├── diff.go │ │ │ │ ├── diff │ │ │ │ │ └── diff.go │ │ │ │ ├── errdefs │ │ │ │ │ ├── errors.go │ │ │ │ │ └── grpc.go │ │ │ │ ├── events │ │ │ │ │ ├── events.go │ │ │ │ │ └── exchange │ │ │ │ │ │ └── exchange.go │ │ │ │ ├── filters │ │ │ │ │ ├── adaptor.go │ │ │ │ │ ├── filter.go │ │ │ │ │ ├── parser.go │ │ │ │ │ ├── quote.go │ │ │ │ │ └── scanner.go │ │ │ │ ├── fs │ │ │ │ │ ├── copy.go │ │ │ │ │ ├── copy_linux.go │ │ │ │ │ ├── copy_unix.go │ │ │ │ │ ├── copy_windows.go │ │ │ │ │ ├── diff.go │ │ │ │ │ ├── diff_unix.go │ │ │ │ │ ├── diff_windows.go │ │ │ │ │ ├── dtype_linux.go │ │ │ │ │ ├── du.go │ │ │ │ │ ├── du_unix.go │ │ │ │ │ ├── du_windows.go │ │ │ │ │ ├── hardlink.go │ │ │ │ │ ├── hardlink_unix.go │ │ │ │ │ ├── hardlink_windows.go │ │ │ │ │ ├── path.go │ │ │ │ │ └── time.go │ │ │ │ ├── gc │ │ │ │ │ └── gc.go │ │ │ │ ├── grpc.go │ │ │ │ ├── identifiers │ │ │ │ │ └── validate.go │ │ │ │ ├── image.go │ │ │ │ ├── image_store.go │ │ │ │ ├── images │ │ │ │ │ ├── handlers.go │ │ │ │ │ ├── image.go │ │ │ │ │ ├── importexport.go │ │ │ │ │ └── mediatypes.go │ │ │ │ ├── labels │ │ │ │ │ └── validate.go │ │ │ │ ├── lease.go │ │ │ │ ├── leases │ │ │ │ │ ├── context.go │ │ │ │ │ └── grpc.go │ │ │ │ ├── linux │ │ │ │ │ ├── bundle.go │ │ │ │ │ ├── proc │ │ │ │ │ │ ├── deleted_state.go │ │ │ │ │ │ ├── exec.go │ │ │ │ │ │ ├── exec_state.go │ │ │ │ │ │ ├── init.go │ │ │ │ │ │ ├── init_state.go │ │ │ │ │ │ ├── io.go │ │ │ │ │ │ ├── process.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ └── utils.go │ │ │ │ │ ├── process.go │ │ │ │ │ ├── runctypes │ │ │ │ │ │ ├── runc.pb.go │ │ │ │ │ │ └── runc.proto │ │ │ │ │ ├── runtime.go │ │ │ │ │ ├── shim │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ │ ├── client_linux.go │ │ │ │ │ │ │ └── client_unix.go │ │ │ │ │ │ ├── local.go │ │ │ │ │ │ ├── service.go │ │ │ │ │ │ ├── service_linux.go │ │ │ │ │ │ ├── service_unix.go │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── shim.pb.go │ │ │ │ │ │ │ └── shim.proto │ │ │ │ │ └── task.go │ │ │ │ ├── log │ │ │ │ │ ├── context.go │ │ │ │ │ └── grpc.go │ │ │ │ ├── metadata │ │ │ │ │ ├── adaptors.go │ │ │ │ │ ├── bolt.go │ │ │ │ │ ├── boltutil │ │ │ │ │ │ └── helpers.go │ │ │ │ │ ├── buckets.go │ │ │ │ │ ├── containers.go │ │ │ │ │ ├── content.go │ │ │ │ │ ├── db.go │ │ │ │ │ ├── gc.go │ │ │ │ │ ├── images.go │ │ │ │ │ ├── leases.go │ │ │ │ │ ├── migrations.go │ │ │ │ │ ├── namespaces.go │ │ │ │ │ └── snapshot.go │ │ │ │ ├── mount │ │ │ │ │ ├── lookup_unix.go │ │ │ │ │ ├── lookup_unsupported.go │ │ │ │ │ ├── mount.go │ │ │ │ │ ├── mount_linux.go │ │ │ │ │ ├── mount_unix.go │ │ │ │ │ ├── mount_windows.go │ │ │ │ │ ├── mountinfo.go │ │ │ │ │ ├── mountinfo_freebsd.go │ │ │ │ │ ├── mountinfo_linux.go │ │ │ │ │ └── mountinfo_unsupported.go │ │ │ │ ├── namespaces.go │ │ │ │ ├── namespaces │ │ │ │ │ ├── context.go │ │ │ │ │ ├── grpc.go │ │ │ │ │ ├── store.go │ │ │ │ │ └── validate.go │ │ │ │ ├── oci │ │ │ │ │ ├── client.go │ │ │ │ │ ├── spec.go │ │ │ │ │ ├── spec_opts.go │ │ │ │ │ ├── spec_opts_unix.go │ │ │ │ │ ├── spec_opts_windows.go │ │ │ │ │ ├── spec_unix.go │ │ │ │ │ └── spec_windows.go │ │ │ │ ├── platforms │ │ │ │ │ ├── database.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ └── platforms.go │ │ │ │ ├── plugin │ │ │ │ │ ├── context.go │ │ │ │ │ ├── plugin.go │ │ │ │ │ ├── plugin_go18.go │ │ │ │ │ └── plugin_other.go │ │ │ │ ├── process.go │ │ │ │ ├── protobuf │ │ │ │ │ └── google │ │ │ │ │ │ └── rpc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── code.pb.go │ │ │ │ │ │ ├── code.proto │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── error_details.pb.go │ │ │ │ │ │ ├── error_details.proto │ │ │ │ │ │ ├── status.pb.go │ │ │ │ │ │ └── status.proto │ │ │ │ ├── reaper │ │ │ │ │ └── reaper.go │ │ │ │ ├── reference │ │ │ │ │ └── reference.go │ │ │ │ ├── remotes │ │ │ │ │ ├── docker │ │ │ │ │ │ ├── auth.go │ │ │ │ │ │ ├── fetcher.go │ │ │ │ │ │ ├── httpreadseeker.go │ │ │ │ │ │ ├── pusher.go │ │ │ │ │ │ ├── resolver.go │ │ │ │ │ │ ├── schema1 │ │ │ │ │ │ │ └── converter.go │ │ │ │ │ │ ├── scope.go │ │ │ │ │ │ └── status.go │ │ │ │ │ ├── handlers.go │ │ │ │ │ ├── hints.go │ │ │ │ │ └── resolver.go │ │ │ │ ├── rootfs │ │ │ │ │ ├── apply.go │ │ │ │ │ ├── diff.go │ │ │ │ │ ├── init.go │ │ │ │ │ ├── init_linux.go │ │ │ │ │ └── init_other.go │ │ │ │ ├── runtime │ │ │ │ │ ├── events.go │ │ │ │ │ ├── monitor.go │ │ │ │ │ ├── runtime.go │ │ │ │ │ ├── task.go │ │ │ │ │ ├── task_list.go │ │ │ │ │ └── typeurl.go │ │ │ │ ├── server │ │ │ │ │ ├── config.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── server_linux.go │ │ │ │ │ ├── server_solaris.go │ │ │ │ │ ├── server_unsupported.go │ │ │ │ │ └── server_windows.go │ │ │ │ ├── snapshot.go │ │ │ │ ├── snapshots │ │ │ │ │ └── snapshotter.go │ │ │ │ ├── snapshotter_default_linux.go │ │ │ │ ├── snapshotter_default_unix.go │ │ │ │ ├── snapshotter_default_windows.go │ │ │ │ ├── sys │ │ │ │ │ ├── epoll.go │ │ │ │ │ ├── fds.go │ │ │ │ │ ├── filesys_windows.go │ │ │ │ │ ├── oom_unix.go │ │ │ │ │ ├── oom_windows.go │ │ │ │ │ ├── prctl.go │ │ │ │ │ ├── proc.go │ │ │ │ │ ├── reaper.go │ │ │ │ │ ├── socket_unix.go │ │ │ │ │ ├── socket_windows.go │ │ │ │ │ ├── stat_bsd.go │ │ │ │ │ └── stat_unix.go │ │ │ │ ├── task.go │ │ │ │ ├── task_opts.go │ │ │ │ ├── task_opts_linux.go │ │ │ │ ├── task_opts_windows.go │ │ │ │ ├── vendor.conf │ │ │ │ └── windows │ │ │ │ │ └── hcsshimtypes │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── hcsshim.pb.go │ │ │ │ │ └── hcsshim.proto │ │ │ ├── continuity │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── devices │ │ │ │ │ ├── devices.go │ │ │ │ │ ├── devices_darwin.go │ │ │ │ │ ├── devices_dummy.go │ │ │ │ │ ├── devices_freebsd.go │ │ │ │ │ ├── devices_linux.go │ │ │ │ │ ├── devices_solaris.go │ │ │ │ │ ├── devices_unix.go │ │ │ │ │ └── devices_windows.go │ │ │ │ ├── driver │ │ │ │ │ ├── driver.go │ │ │ │ │ ├── driver_unix.go │ │ │ │ │ ├── driver_windows.go │ │ │ │ │ └── utils.go │ │ │ │ ├── pathdriver │ │ │ │ │ └── path_driver.go │ │ │ │ └── sysx │ │ │ │ │ ├── asm.s │ │ │ │ │ ├── chmod_darwin.go │ │ │ │ │ ├── chmod_darwin_386.go │ │ │ │ │ ├── chmod_darwin_amd64.go │ │ │ │ │ ├── chmod_freebsd.go │ │ │ │ │ ├── chmod_freebsd_amd64.go │ │ │ │ │ ├── chmod_linux.go │ │ │ │ │ ├── chmod_solaris.go │ │ │ │ │ ├── copy_linux.go │ │ │ │ │ ├── copy_linux_386.go │ │ │ │ │ ├── copy_linux_amd64.go │ │ │ │ │ ├── copy_linux_arm.go │ │ │ │ │ ├── copy_linux_arm64.go │ │ │ │ │ ├── copy_linux_ppc64le.go │ │ │ │ │ ├── copy_linux_s390x.go │ │ │ │ │ ├── nodata_linux.go │ │ │ │ │ ├── nodata_solaris.go │ │ │ │ │ ├── nodata_unix.go │ │ │ │ │ ├── sys.go │ │ │ │ │ ├── sysnum_linux_386.go │ │ │ │ │ ├── sysnum_linux_amd64.go │ │ │ │ │ ├── sysnum_linux_arm.go │ │ │ │ │ ├── sysnum_linux_arm64.go │ │ │ │ │ ├── sysnum_linux_ppc64le.go │ │ │ │ │ ├── sysnum_linux_s390x.go │ │ │ │ │ ├── xattr.go │ │ │ │ │ ├── xattr_darwin.go │ │ │ │ │ ├── xattr_darwin_386.go │ │ │ │ │ ├── xattr_darwin_amd64.go │ │ │ │ │ ├── xattr_freebsd.go │ │ │ │ │ ├── xattr_linux.go │ │ │ │ │ ├── xattr_linux_386.go │ │ │ │ │ ├── xattr_linux_amd64.go │ │ │ │ │ ├── xattr_linux_arm.go │ │ │ │ │ ├── xattr_linux_arm64.go │ │ │ │ │ ├── xattr_linux_ppc64.go │ │ │ │ │ ├── xattr_linux_ppc64le.go │ │ │ │ │ ├── xattr_linux_s390x.go │ │ │ │ │ ├── xattr_solaris.go │ │ │ │ │ └── xattr_unsupported.go │ │ │ ├── fifo │ │ │ │ ├── LICENSE │ │ │ │ ├── fifo.go │ │ │ │ ├── handle_linux.go │ │ │ │ ├── handle_nolinux.go │ │ │ │ ├── mkfifo_nosolaris.go │ │ │ │ ├── mkfifo_solaris.go │ │ │ │ └── readme.md │ │ │ ├── go-runc │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── command_linux.go │ │ │ │ ├── command_other.go │ │ │ │ ├── console.go │ │ │ │ ├── container.go │ │ │ │ ├── events.go │ │ │ │ ├── io.go │ │ │ │ ├── monitor.go │ │ │ │ ├── runc.go │ │ │ │ └── utils.go │ │ │ └── typeurl │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── types.go │ │ ├── coreos │ │ │ ├── etcd │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ ├── README.md │ │ │ │ ├── client │ │ │ │ │ ├── README.md │ │ │ │ │ ├── auth_role.go │ │ │ │ │ ├── auth_user.go │ │ │ │ │ ├── cancelreq.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── cluster_error.go │ │ │ │ │ ├── curl.go │ │ │ │ │ ├── discover.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── keys.generated.go │ │ │ │ │ ├── keys.go │ │ │ │ │ ├── members.go │ │ │ │ │ └── util.go │ │ │ │ ├── pkg │ │ │ │ │ ├── README.md │ │ │ │ │ ├── crc │ │ │ │ │ │ └── crc.go │ │ │ │ │ ├── fileutil │ │ │ │ │ │ ├── dir_unix.go │ │ │ │ │ │ ├── dir_windows.go │ │ │ │ │ │ ├── fileutil.go │ │ │ │ │ │ ├── lock.go │ │ │ │ │ │ ├── lock_flock.go │ │ │ │ │ │ ├── lock_linux.go │ │ │ │ │ │ ├── lock_plan9.go │ │ │ │ │ │ ├── lock_solaris.go │ │ │ │ │ │ ├── lock_unix.go │ │ │ │ │ │ ├── lock_windows.go │ │ │ │ │ │ ├── preallocate.go │ │ │ │ │ │ ├── preallocate_darwin.go │ │ │ │ │ │ ├── preallocate_unix.go │ │ │ │ │ │ ├── preallocate_unsupported.go │ │ │ │ │ │ ├── purge.go │ │ │ │ │ │ ├── sync.go │ │ │ │ │ │ ├── sync_darwin.go │ │ │ │ │ │ └── sync_linux.go │ │ │ │ │ ├── idutil │ │ │ │ │ │ └── id.go │ │ │ │ │ ├── ioutil │ │ │ │ │ │ ├── pagewriter.go │ │ │ │ │ │ ├── readcloser.go │ │ │ │ │ │ ├── reader.go │ │ │ │ │ │ └── util.go │ │ │ │ │ ├── pathutil │ │ │ │ │ │ └── path.go │ │ │ │ │ ├── pbutil │ │ │ │ │ │ └── pbutil.go │ │ │ │ │ ├── srv │ │ │ │ │ │ └── srv.go │ │ │ │ │ └── types │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── id.go │ │ │ │ │ │ ├── set.go │ │ │ │ │ │ ├── slice.go │ │ │ │ │ │ ├── urls.go │ │ │ │ │ │ └── urlsmap.go │ │ │ │ ├── raft │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── log.go │ │ │ │ │ ├── log_unstable.go │ │ │ │ │ ├── logger.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── progress.go │ │ │ │ │ ├── raft.go │ │ │ │ │ ├── raftpb │ │ │ │ │ │ ├── raft.pb.go │ │ │ │ │ │ └── raft.proto │ │ │ │ │ ├── rawnode.go │ │ │ │ │ ├── read_only.go │ │ │ │ │ ├── status.go │ │ │ │ │ ├── storage.go │ │ │ │ │ └── util.go │ │ │ │ ├── snap │ │ │ │ │ ├── db.go │ │ │ │ │ ├── message.go │ │ │ │ │ ├── metrics.go │ │ │ │ │ ├── snappb │ │ │ │ │ │ ├── snap.pb.go │ │ │ │ │ │ └── snap.proto │ │ │ │ │ └── snapshotter.go │ │ │ │ ├── version │ │ │ │ │ └── version.go │ │ │ │ └── wal │ │ │ │ │ ├── decoder.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── encoder.go │ │ │ │ │ ├── file_pipeline.go │ │ │ │ │ ├── metrics.go │ │ │ │ │ ├── repair.go │ │ │ │ │ ├── util.go │ │ │ │ │ ├── wal.go │ │ │ │ │ ├── wal_unix.go │ │ │ │ │ ├── wal_windows.go │ │ │ │ │ └── walpb │ │ │ │ │ ├── record.go │ │ │ │ │ ├── record.pb.go │ │ │ │ │ └── record.proto │ │ │ ├── go-semver │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── semver │ │ │ │ │ ├── semver.go │ │ │ │ │ └── sort.go │ │ │ ├── go-systemd │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── activation │ │ │ │ │ ├── files.go │ │ │ │ │ ├── listeners.go │ │ │ │ │ └── packetconns.go │ │ │ │ ├── daemon │ │ │ │ │ ├── sdnotify.go │ │ │ │ │ └── watchdog.go │ │ │ │ ├── dbus │ │ │ │ │ ├── dbus.go │ │ │ │ │ ├── methods.go │ │ │ │ │ ├── properties.go │ │ │ │ │ ├── set.go │ │ │ │ │ ├── subscription.go │ │ │ │ │ └── subscription_set.go │ │ │ │ └── journal │ │ │ │ │ └── journal.go │ │ │ └── pkg │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ ├── README.md │ │ │ │ └── capnslog │ │ │ │ ├── README.md │ │ │ │ ├── formatters.go │ │ │ │ ├── glog_formatter.go │ │ │ │ ├── init.go │ │ │ │ ├── init_windows.go │ │ │ │ ├── journald_formatter.go │ │ │ │ ├── log_hijack.go │ │ │ │ ├── logmap.go │ │ │ │ ├── pkg_logger.go │ │ │ │ └── syslog_formatter.go │ │ ├── davecgh │ │ │ └── go-spew │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── spew │ │ │ │ ├── bypass.go │ │ │ │ ├── bypasssafe.go │ │ │ │ ├── common.go │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── dump.go │ │ │ │ ├── format.go │ │ │ │ └── spew.go │ │ ├── deckarep │ │ │ └── golang-set │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── set.go │ │ │ │ ├── threadsafe.go │ │ │ │ └── threadunsafe.go │ │ ├── dmcgowan │ │ │ └── go-tar │ │ │ │ ├── LICENSE │ │ │ │ ├── common.go │ │ │ │ ├── format.go │ │ │ │ ├── reader.go │ │ │ │ ├── sparse_unix.go │ │ │ │ ├── sparse_windows.go │ │ │ │ ├── stat_actime1.go │ │ │ │ ├── stat_actime2.go │ │ │ │ ├── stat_unix.go │ │ │ │ ├── strconv.go │ │ │ │ └── writer.go │ │ ├── docker │ │ │ ├── distribution │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── blobs.go │ │ │ │ ├── context │ │ │ │ │ ├── context.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── http.go │ │ │ │ │ ├── logger.go │ │ │ │ │ ├── trace.go │ │ │ │ │ ├── util.go │ │ │ │ │ └── version.go │ │ │ │ ├── digestset │ │ │ │ │ └── set.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── manifest │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── manifestlist │ │ │ │ │ │ └── manifestlist.go │ │ │ │ │ ├── schema1 │ │ │ │ │ │ ├── config_builder.go │ │ │ │ │ │ ├── manifest.go │ │ │ │ │ │ ├── reference_builder.go │ │ │ │ │ │ ├── sign.go │ │ │ │ │ │ └── verify.go │ │ │ │ │ ├── schema2 │ │ │ │ │ │ ├── builder.go │ │ │ │ │ │ └── manifest.go │ │ │ │ │ └── versioned.go │ │ │ │ ├── manifests.go │ │ │ │ ├── reference │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── normalize.go │ │ │ │ │ ├── reference.go │ │ │ │ │ └── regexp.go │ │ │ │ ├── registry.go │ │ │ │ ├── registry │ │ │ │ │ ├── api │ │ │ │ │ │ ├── errcode │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ ├── handler.go │ │ │ │ │ │ │ └── register.go │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ ├── descriptors.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ ├── headerparser.go │ │ │ │ │ │ │ ├── routes.go │ │ │ │ │ │ │ └── urls.go │ │ │ │ │ ├── client │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── api_version.go │ │ │ │ │ │ │ ├── challenge │ │ │ │ │ │ │ │ ├── addr.go │ │ │ │ │ │ │ │ └── authchallenge.go │ │ │ │ │ │ │ └── session.go │ │ │ │ │ │ ├── blob_writer.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── repository.go │ │ │ │ │ │ └── transport │ │ │ │ │ │ │ ├── http_reader.go │ │ │ │ │ │ │ └── transport.go │ │ │ │ │ └── storage │ │ │ │ │ │ └── cache │ │ │ │ │ │ ├── cache.go │ │ │ │ │ │ ├── cachedblobdescriptorstore.go │ │ │ │ │ │ └── memory │ │ │ │ │ │ └── memory.go │ │ │ │ ├── tags.go │ │ │ │ ├── uuid │ │ │ │ │ └── uuid.go │ │ │ │ └── vendor.conf │ │ │ ├── go-connections │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── nat │ │ │ │ │ ├── nat.go │ │ │ │ │ ├── parse.go │ │ │ │ │ └── sort.go │ │ │ │ ├── sockets │ │ │ │ │ ├── README.md │ │ │ │ │ ├── inmem_socket.go │ │ │ │ │ ├── proxy.go │ │ │ │ │ ├── sockets.go │ │ │ │ │ ├── sockets_unix.go │ │ │ │ │ ├── sockets_windows.go │ │ │ │ │ ├── tcp_socket.go │ │ │ │ │ └── unix_socket.go │ │ │ │ └── tlsconfig │ │ │ │ │ ├── certpool_go17.go │ │ │ │ │ ├── certpool_other.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── config_client_ciphers.go │ │ │ │ │ └── config_legacy_client_ciphers.go │ │ │ ├── go-events │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── broadcast.go │ │ │ │ ├── channel.go │ │ │ │ ├── errors.go │ │ │ │ ├── event.go │ │ │ │ ├── filter.go │ │ │ │ ├── queue.go │ │ │ │ └── retry.go │ │ │ ├── go-metrics │ │ │ │ ├── LICENSE.code │ │ │ │ ├── LICENSE.docs │ │ │ │ ├── NOTICE │ │ │ │ ├── README.md │ │ │ │ ├── counter.go │ │ │ │ ├── docs.go │ │ │ │ ├── gauge.go │ │ │ │ ├── handler.go │ │ │ │ ├── helpers.go │ │ │ │ ├── namespace.go │ │ │ │ ├── register.go │ │ │ │ ├── timer.go │ │ │ │ └── unit.go │ │ │ ├── go-units │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── duration.go │ │ │ │ ├── size.go │ │ │ │ └── ulimit.go │ │ │ ├── libkv │ │ │ │ ├── LICENSE.code │ │ │ │ ├── LICENSE.docs │ │ │ │ ├── README.md │ │ │ │ ├── libkv.go │ │ │ │ └── store │ │ │ │ │ ├── boltdb │ │ │ │ │ └── boltdb.go │ │ │ │ │ ├── consul │ │ │ │ │ └── consul.go │ │ │ │ │ ├── etcd │ │ │ │ │ └── etcd.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── store.go │ │ │ │ │ └── zookeeper │ │ │ │ │ └── zookeeper.go │ │ │ ├── libnetwork │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── agent.go │ │ │ │ ├── agent.pb.go │ │ │ │ ├── agent.proto │ │ │ │ ├── bitseq │ │ │ │ │ ├── sequence.go │ │ │ │ │ └── store.go │ │ │ │ ├── cluster │ │ │ │ │ └── provider.go │ │ │ │ ├── common │ │ │ │ │ ├── caller.go │ │ │ │ │ └── setmatrix.go │ │ │ │ ├── config │ │ │ │ │ └── config.go │ │ │ │ ├── controller.go │ │ │ │ ├── datastore │ │ │ │ │ ├── cache.go │ │ │ │ │ ├── datastore.go │ │ │ │ │ └── mock_store.go │ │ │ │ ├── default_gateway.go │ │ │ │ ├── default_gateway_freebsd.go │ │ │ │ ├── default_gateway_linux.go │ │ │ │ ├── default_gateway_windows.go │ │ │ │ ├── diagnose │ │ │ │ │ ├── server.go │ │ │ │ │ └── types.go │ │ │ │ ├── discoverapi │ │ │ │ │ └── discoverapi.go │ │ │ │ ├── driverapi │ │ │ │ │ ├── driverapi.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── ipamdata.go │ │ │ │ ├── drivers │ │ │ │ │ ├── bridge │ │ │ │ │ │ ├── bridge.go │ │ │ │ │ │ ├── bridge_store.go │ │ │ │ │ │ ├── brmanager │ │ │ │ │ │ │ └── brmanager.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── labels.go │ │ │ │ │ │ ├── link.go │ │ │ │ │ │ ├── netlink_deprecated_linux.go │ │ │ │ │ │ ├── netlink_deprecated_linux_armppc64.go │ │ │ │ │ │ ├── netlink_deprecated_linux_notarm.go │ │ │ │ │ │ ├── netlink_deprecated_unsupported.go │ │ │ │ │ │ ├── port_mapping.go │ │ │ │ │ │ ├── setup.go │ │ │ │ │ │ ├── setup_bridgenetfiltering.go │ │ │ │ │ │ ├── setup_device.go │ │ │ │ │ │ ├── setup_firewalld.go │ │ │ │ │ │ ├── setup_ip_forwarding.go │ │ │ │ │ │ ├── setup_ip_tables.go │ │ │ │ │ │ ├── setup_ipv4.go │ │ │ │ │ │ ├── setup_ipv6.go │ │ │ │ │ │ └── setup_verify.go │ │ │ │ │ ├── host │ │ │ │ │ │ └── host.go │ │ │ │ │ ├── ipvlan │ │ │ │ │ │ ├── ipvlan.go │ │ │ │ │ │ ├── ipvlan_endpoint.go │ │ │ │ │ │ ├── ipvlan_joinleave.go │ │ │ │ │ │ ├── ipvlan_network.go │ │ │ │ │ │ ├── ipvlan_setup.go │ │ │ │ │ │ ├── ipvlan_state.go │ │ │ │ │ │ ├── ipvlan_store.go │ │ │ │ │ │ └── ivmanager │ │ │ │ │ │ │ └── ivmanager.go │ │ │ │ │ ├── macvlan │ │ │ │ │ │ ├── macvlan.go │ │ │ │ │ │ ├── macvlan_endpoint.go │ │ │ │ │ │ ├── macvlan_joinleave.go │ │ │ │ │ │ ├── macvlan_network.go │ │ │ │ │ │ ├── macvlan_setup.go │ │ │ │ │ │ ├── macvlan_state.go │ │ │ │ │ │ ├── macvlan_store.go │ │ │ │ │ │ └── mvmanager │ │ │ │ │ │ │ └── mvmanager.go │ │ │ │ │ ├── null │ │ │ │ │ │ └── null.go │ │ │ │ │ ├── overlay │ │ │ │ │ │ ├── encryption.go │ │ │ │ │ │ ├── filter.go │ │ │ │ │ │ ├── joinleave.go │ │ │ │ │ │ ├── ostweaks_linux.go │ │ │ │ │ │ ├── ostweaks_unsupported.go │ │ │ │ │ │ ├── ov_endpoint.go │ │ │ │ │ │ ├── ov_network.go │ │ │ │ │ │ ├── ov_serf.go │ │ │ │ │ │ ├── ov_utils.go │ │ │ │ │ │ ├── overlay.go │ │ │ │ │ │ ├── overlay.pb.go │ │ │ │ │ │ ├── overlay.proto │ │ │ │ │ │ ├── ovmanager │ │ │ │ │ │ │ └── ovmanager.go │ │ │ │ │ │ └── peerdb.go │ │ │ │ │ ├── remote │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ └── api.go │ │ │ │ │ │ └── driver.go │ │ │ │ │ └── windows │ │ │ │ │ │ ├── labels.go │ │ │ │ │ │ ├── overlay │ │ │ │ │ │ ├── joinleave_windows.go │ │ │ │ │ │ ├── ov_endpoint_windows.go │ │ │ │ │ │ ├── ov_network_windows.go │ │ │ │ │ │ ├── overlay.pb.go │ │ │ │ │ │ ├── overlay.proto │ │ │ │ │ │ ├── overlay_windows.go │ │ │ │ │ │ └── peerdb_windows.go │ │ │ │ │ │ ├── windows.go │ │ │ │ │ │ └── windows_store.go │ │ │ │ ├── drivers_experimental_linux.go │ │ │ │ ├── drivers_freebsd.go │ │ │ │ ├── drivers_ipam.go │ │ │ │ ├── drivers_linux.go │ │ │ │ ├── drivers_windows.go │ │ │ │ ├── drvregistry │ │ │ │ │ └── drvregistry.go │ │ │ │ ├── endpoint.go │ │ │ │ ├── endpoint_cnt.go │ │ │ │ ├── endpoint_info.go │ │ │ │ ├── endpoint_info_unix.go │ │ │ │ ├── endpoint_info_windows.go │ │ │ │ ├── error.go │ │ │ │ ├── etchosts │ │ │ │ │ └── etchosts.go │ │ │ │ ├── firewall_linux.go │ │ │ │ ├── firewall_others.go │ │ │ │ ├── hostdiscovery │ │ │ │ │ ├── hostdiscovery.go │ │ │ │ │ └── hostdiscovery_api.go │ │ │ │ ├── idm │ │ │ │ │ └── idm.go │ │ │ │ ├── ipam │ │ │ │ │ ├── allocator.go │ │ │ │ │ ├── store.go │ │ │ │ │ ├── structures.go │ │ │ │ │ └── utils.go │ │ │ │ ├── ipamapi │ │ │ │ │ ├── contract.go │ │ │ │ │ └── labels.go │ │ │ │ ├── ipams │ │ │ │ │ ├── builtin │ │ │ │ │ │ ├── builtin_unix.go │ │ │ │ │ │ └── builtin_windows.go │ │ │ │ │ ├── null │ │ │ │ │ │ └── null.go │ │ │ │ │ ├── remote │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ └── api.go │ │ │ │ │ │ └── remote.go │ │ │ │ │ └── windowsipam │ │ │ │ │ │ └── windowsipam.go │ │ │ │ ├── ipamutils │ │ │ │ │ └── utils.go │ │ │ │ ├── iptables │ │ │ │ │ ├── conntrack.go │ │ │ │ │ ├── firewalld.go │ │ │ │ │ └── iptables.go │ │ │ │ ├── ipvs │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── ipvs.go │ │ │ │ │ └── netlink.go │ │ │ │ ├── netlabel │ │ │ │ │ └── labels.go │ │ │ │ ├── netutils │ │ │ │ │ ├── utils.go │ │ │ │ │ ├── utils_freebsd.go │ │ │ │ │ ├── utils_linux.go │ │ │ │ │ └── utils_windows.go │ │ │ │ ├── network.go │ │ │ │ ├── network_unix.go │ │ │ │ ├── network_windows.go │ │ │ │ ├── networkdb │ │ │ │ │ ├── broadcast.go │ │ │ │ │ ├── cluster.go │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── event_delegate.go │ │ │ │ │ ├── message.go │ │ │ │ │ ├── networkdb.go │ │ │ │ │ ├── networkdb.pb.go │ │ │ │ │ ├── networkdb.proto │ │ │ │ │ ├── networkdbdiagnose.go │ │ │ │ │ ├── nodemgmt.go │ │ │ │ │ └── watch.go │ │ │ │ ├── ns │ │ │ │ │ └── init_linux.go │ │ │ │ ├── options │ │ │ │ │ └── options.go │ │ │ │ ├── osl │ │ │ │ │ ├── interface_freebsd.go │ │ │ │ │ ├── interface_linux.go │ │ │ │ │ ├── interface_windows.go │ │ │ │ │ ├── namespace_linux.go │ │ │ │ │ ├── namespace_unsupported.go │ │ │ │ │ ├── namespace_windows.go │ │ │ │ │ ├── neigh_freebsd.go │ │ │ │ │ ├── neigh_linux.go │ │ │ │ │ ├── neigh_windows.go │ │ │ │ │ ├── options_linux.go │ │ │ │ │ ├── route_linux.go │ │ │ │ │ ├── sandbox.go │ │ │ │ │ ├── sandbox_freebsd.go │ │ │ │ │ └── sandbox_unsupported.go │ │ │ │ ├── portallocator │ │ │ │ │ ├── portallocator.go │ │ │ │ │ ├── portallocator_freebsd.go │ │ │ │ │ └── portallocator_linux.go │ │ │ │ ├── portmapper │ │ │ │ │ ├── mapper.go │ │ │ │ │ ├── mock_proxy.go │ │ │ │ │ ├── proxy.go │ │ │ │ │ └── proxy_linux.go │ │ │ │ ├── resolvconf │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dns │ │ │ │ │ │ └── resolvconf.go │ │ │ │ │ └── resolvconf.go │ │ │ │ ├── resolver.go │ │ │ │ ├── resolver_unix.go │ │ │ │ ├── resolver_windows.go │ │ │ │ ├── sandbox.go │ │ │ │ ├── sandbox_dns_unix.go │ │ │ │ ├── sandbox_dns_windows.go │ │ │ │ ├── sandbox_externalkey.go │ │ │ │ ├── sandbox_externalkey_unix.go │ │ │ │ ├── sandbox_externalkey_windows.go │ │ │ │ ├── sandbox_store.go │ │ │ │ ├── service.go │ │ │ │ ├── service_common.go │ │ │ │ ├── service_linux.go │ │ │ │ ├── service_unsupported.go │ │ │ │ ├── service_windows.go │ │ │ │ ├── store.go │ │ │ │ ├── types │ │ │ │ │ └── types.go │ │ │ │ └── vendor.conf │ │ │ ├── libtrust │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── certificates.go │ │ │ │ ├── doc.go │ │ │ │ ├── ec_key.go │ │ │ │ ├── filter.go │ │ │ │ ├── hash.go │ │ │ │ ├── jsonsign.go │ │ │ │ ├── key.go │ │ │ │ ├── key_files.go │ │ │ │ ├── key_manager.go │ │ │ │ ├── rsa_key.go │ │ │ │ └── util.go │ │ │ └── swarmkit │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── agent │ │ │ │ ├── agent.go │ │ │ │ ├── config.go │ │ │ │ ├── configs │ │ │ │ │ └── configs.go │ │ │ │ ├── dependency.go │ │ │ │ ├── errors.go │ │ │ │ ├── exec │ │ │ │ │ ├── controller.go │ │ │ │ │ ├── controller_stub.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── executor.go │ │ │ │ ├── helpers.go │ │ │ │ ├── reporter.go │ │ │ │ ├── resource.go │ │ │ │ ├── secrets │ │ │ │ │ └── secrets.go │ │ │ │ ├── session.go │ │ │ │ ├── storage.go │ │ │ │ ├── task.go │ │ │ │ └── worker.go │ │ │ │ ├── api │ │ │ │ ├── README.md │ │ │ │ ├── ca.pb.go │ │ │ │ ├── ca.proto │ │ │ │ ├── control.pb.go │ │ │ │ ├── control.proto │ │ │ │ ├── deepcopy │ │ │ │ │ └── copy.go │ │ │ │ ├── defaults │ │ │ │ │ └── service.go │ │ │ │ ├── dispatcher.pb.go │ │ │ │ ├── dispatcher.proto │ │ │ │ ├── equality │ │ │ │ │ └── equality.go │ │ │ │ ├── genericresource │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── parse.go │ │ │ │ │ ├── resource_management.go │ │ │ │ │ ├── string.go │ │ │ │ │ └── validate.go │ │ │ │ ├── health.pb.go │ │ │ │ ├── health.proto │ │ │ │ ├── logbroker.pb.go │ │ │ │ ├── logbroker.proto │ │ │ │ ├── naming │ │ │ │ │ └── naming.go │ │ │ │ ├── objects.pb.go │ │ │ │ ├── objects.proto │ │ │ │ ├── raft.pb.go │ │ │ │ ├── raft.proto │ │ │ │ ├── resource.pb.go │ │ │ │ ├── resource.proto │ │ │ │ ├── snapshot.pb.go │ │ │ │ ├── snapshot.proto │ │ │ │ ├── specs.pb.go │ │ │ │ ├── specs.proto │ │ │ │ ├── storeobject.go │ │ │ │ ├── types.pb.go │ │ │ │ ├── types.proto │ │ │ │ ├── validation │ │ │ │ │ └── secrets.go │ │ │ │ ├── watch.pb.go │ │ │ │ └── watch.proto │ │ │ │ ├── ca │ │ │ │ ├── auth.go │ │ │ │ ├── certificates.go │ │ │ │ ├── config.go │ │ │ │ ├── external.go │ │ │ │ ├── forward.go │ │ │ │ ├── keyreadwriter.go │ │ │ │ ├── reconciler.go │ │ │ │ ├── renewer.go │ │ │ │ ├── server.go │ │ │ │ └── transport.go │ │ │ │ ├── connectionbroker │ │ │ │ └── broker.go │ │ │ │ ├── identity │ │ │ │ ├── doc.go │ │ │ │ └── randomid.go │ │ │ │ ├── ioutils │ │ │ │ └── ioutils.go │ │ │ │ ├── log │ │ │ │ ├── context.go │ │ │ │ └── grpc.go │ │ │ │ ├── manager │ │ │ │ ├── allocator │ │ │ │ │ ├── allocator.go │ │ │ │ │ ├── cnmallocator │ │ │ │ │ │ ├── drivers_darwin.go │ │ │ │ │ │ ├── drivers_ipam.go │ │ │ │ │ │ ├── drivers_network_linux.go │ │ │ │ │ │ ├── drivers_network_windows.go │ │ │ │ │ │ ├── drivers_unsupported.go │ │ │ │ │ │ ├── networkallocator.go │ │ │ │ │ │ └── portallocator.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── network.go │ │ │ │ │ └── networkallocator │ │ │ │ │ │ └── networkallocator.go │ │ │ │ ├── constraint │ │ │ │ │ └── constraint.go │ │ │ │ ├── controlapi │ │ │ │ │ ├── ca_rotation.go │ │ │ │ │ ├── cluster.go │ │ │ │ │ ├── common.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── network.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── secret.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── service.go │ │ │ │ │ └── task.go │ │ │ │ ├── deks.go │ │ │ │ ├── dirty.go │ │ │ │ ├── dispatcher │ │ │ │ │ ├── assignments.go │ │ │ │ │ ├── dispatcher.go │ │ │ │ │ ├── heartbeat │ │ │ │ │ │ └── heartbeat.go │ │ │ │ │ ├── nodes.go │ │ │ │ │ └── period.go │ │ │ │ ├── doc.go │ │ │ │ ├── drivers │ │ │ │ │ ├── provider.go │ │ │ │ │ └── secrets.go │ │ │ │ ├── encryption │ │ │ │ │ ├── encryption.go │ │ │ │ │ └── nacl.go │ │ │ │ ├── health │ │ │ │ │ └── health.go │ │ │ │ ├── keymanager │ │ │ │ │ └── keymanager.go │ │ │ │ ├── logbroker │ │ │ │ │ ├── broker.go │ │ │ │ │ └── subscription.go │ │ │ │ ├── manager.go │ │ │ │ ├── metrics │ │ │ │ │ └── collector.go │ │ │ │ ├── orchestrator │ │ │ │ │ ├── constraintenforcer │ │ │ │ │ │ └── constraint_enforcer.go │ │ │ │ │ ├── global │ │ │ │ │ │ └── global.go │ │ │ │ │ ├── replicated │ │ │ │ │ │ ├── replicated.go │ │ │ │ │ │ ├── services.go │ │ │ │ │ │ ├── slot.go │ │ │ │ │ │ └── tasks.go │ │ │ │ │ ├── restart │ │ │ │ │ │ └── restart.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── slot.go │ │ │ │ │ ├── task.go │ │ │ │ │ ├── taskinit │ │ │ │ │ │ └── init.go │ │ │ │ │ ├── taskreaper │ │ │ │ │ │ └── task_reaper.go │ │ │ │ │ └── update │ │ │ │ │ │ └── updater.go │ │ │ │ ├── raftselector │ │ │ │ │ └── raftselector.go │ │ │ │ ├── resourceapi │ │ │ │ │ └── allocator.go │ │ │ │ ├── role_manager.go │ │ │ │ ├── scheduler │ │ │ │ │ ├── decision_tree.go │ │ │ │ │ ├── filter.go │ │ │ │ │ ├── nodeheap.go │ │ │ │ │ ├── nodeinfo.go │ │ │ │ │ ├── nodeset.go │ │ │ │ │ ├── pipeline.go │ │ │ │ │ └── scheduler.go │ │ │ │ ├── state │ │ │ │ │ ├── proposer.go │ │ │ │ │ ├── raft │ │ │ │ │ │ ├── membership │ │ │ │ │ │ │ └── cluster.go │ │ │ │ │ │ ├── raft.go │ │ │ │ │ │ ├── storage.go │ │ │ │ │ │ ├── storage │ │ │ │ │ │ │ ├── snapwrap.go │ │ │ │ │ │ │ ├── storage.go │ │ │ │ │ │ │ └── walwrap.go │ │ │ │ │ │ ├── transport │ │ │ │ │ │ │ ├── peer.go │ │ │ │ │ │ │ └── transport.go │ │ │ │ │ │ ├── util.go │ │ │ │ │ │ └── wait.go │ │ │ │ │ ├── store │ │ │ │ │ │ ├── apply.go │ │ │ │ │ │ ├── by.go │ │ │ │ │ │ ├── clusters.go │ │ │ │ │ │ ├── combinators.go │ │ │ │ │ │ ├── configs.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── extensions.go │ │ │ │ │ │ ├── memory.go │ │ │ │ │ │ ├── networks.go │ │ │ │ │ │ ├── nodes.go │ │ │ │ │ │ ├── object.go │ │ │ │ │ │ ├── resources.go │ │ │ │ │ │ ├── secrets.go │ │ │ │ │ │ ├── services.go │ │ │ │ │ │ └── tasks.go │ │ │ │ │ └── watch.go │ │ │ │ └── watchapi │ │ │ │ │ ├── server.go │ │ │ │ │ └── watch.go │ │ │ │ ├── node │ │ │ │ └── node.go │ │ │ │ ├── protobuf │ │ │ │ ├── plugin │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── plugin.pb.go │ │ │ │ │ └── plugin.proto │ │ │ │ └── ptypes │ │ │ │ │ ├── doc.go │ │ │ │ │ └── timestamp.go │ │ │ │ ├── remotes │ │ │ │ └── remotes.go │ │ │ │ ├── template │ │ │ │ ├── context.go │ │ │ │ ├── expand.go │ │ │ │ ├── getter.go │ │ │ │ └── template.go │ │ │ │ ├── vendor.conf │ │ │ │ ├── watch │ │ │ │ ├── queue │ │ │ │ │ └── queue.go │ │ │ │ ├── sinks.go │ │ │ │ └── watch.go │ │ │ │ └── xnet │ │ │ │ ├── xnet_unix.go │ │ │ │ └── xnet_windows.go │ │ ├── fluent │ │ │ └── fluent-logger-golang │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── fluent │ │ │ │ ├── fluent.go │ │ │ │ ├── proto.go │ │ │ │ ├── proto_gen.go │ │ │ │ ├── test_message.go │ │ │ │ ├── test_message_gen.go │ │ │ │ └── version.go │ │ ├── fsnotify │ │ │ └── fsnotify │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── fen.go │ │ │ │ ├── fsnotify.go │ │ │ │ ├── inotify.go │ │ │ │ ├── inotify_poller.go │ │ │ │ ├── kqueue.go │ │ │ │ ├── open_mode_bsd.go │ │ │ │ ├── open_mode_darwin.go │ │ │ │ └── windows.go │ │ ├── go-check │ │ │ └── check │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── benchmark.go │ │ │ │ ├── check.go │ │ │ │ ├── checkers.go │ │ │ │ ├── helpers.go │ │ │ │ ├── printer.go │ │ │ │ ├── reporter.go │ │ │ │ └── run.go │ │ ├── go-ini │ │ │ └── ini │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── README_ZH.md │ │ │ │ ├── ini.go │ │ │ │ └── struct.go │ │ ├── godbus │ │ │ └── dbus │ │ │ │ ├── LICENSE │ │ │ │ ├── README.markdown │ │ │ │ ├── auth.go │ │ │ │ ├── auth_external.go │ │ │ │ ├── auth_sha1.go │ │ │ │ ├── call.go │ │ │ │ ├── conn.go │ │ │ │ ├── conn_darwin.go │ │ │ │ ├── conn_other.go │ │ │ │ ├── dbus.go │ │ │ │ ├── decoder.go │ │ │ │ ├── doc.go │ │ │ │ ├── encoder.go │ │ │ │ ├── export.go │ │ │ │ ├── homedir.go │ │ │ │ ├── homedir_dynamic.go │ │ │ │ ├── homedir_static.go │ │ │ │ ├── message.go │ │ │ │ ├── object.go │ │ │ │ ├── sig.go │ │ │ │ ├── transport_darwin.go │ │ │ │ ├── transport_generic.go │ │ │ │ ├── transport_tcp.go │ │ │ │ ├── transport_unix.go │ │ │ │ ├── transport_unixcred_dragonfly.go │ │ │ │ ├── transport_unixcred_linux.go │ │ │ │ ├── variant.go │ │ │ │ ├── variant_lexer.go │ │ │ │ └── variant_parser.go │ │ ├── gogo │ │ │ └── protobuf │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── Readme.md │ │ │ │ ├── gogoproto │ │ │ │ ├── doc.go │ │ │ │ ├── gogo.pb.go │ │ │ │ ├── gogo.proto │ │ │ │ └── helper.go │ │ │ │ ├── io │ │ │ │ ├── full.go │ │ │ │ ├── io.go │ │ │ │ ├── uint32.go │ │ │ │ └── varint.go │ │ │ │ ├── proto │ │ │ │ ├── clone.go │ │ │ │ ├── decode.go │ │ │ │ ├── decode_gogo.go │ │ │ │ ├── duration.go │ │ │ │ ├── duration_gogo.go │ │ │ │ ├── encode.go │ │ │ │ ├── encode_gogo.go │ │ │ │ ├── equal.go │ │ │ │ ├── extensions.go │ │ │ │ ├── extensions_gogo.go │ │ │ │ ├── lib.go │ │ │ │ ├── lib_gogo.go │ │ │ │ ├── message_set.go │ │ │ │ ├── pointer_reflect.go │ │ │ │ ├── pointer_reflect_gogo.go │ │ │ │ ├── pointer_unsafe.go │ │ │ │ ├── pointer_unsafe_gogo.go │ │ │ │ ├── properties.go │ │ │ │ ├── properties_gogo.go │ │ │ │ ├── skip_gogo.go │ │ │ │ ├── text.go │ │ │ │ ├── text_gogo.go │ │ │ │ ├── text_parser.go │ │ │ │ ├── timestamp.go │ │ │ │ └── timestamp_gogo.go │ │ │ │ ├── protobuf │ │ │ │ └── google │ │ │ │ │ └── protobuf │ │ │ │ │ ├── any.proto │ │ │ │ │ ├── compiler │ │ │ │ │ └── plugin.proto │ │ │ │ │ ├── descriptor.proto │ │ │ │ │ ├── duration.proto │ │ │ │ │ ├── empty.proto │ │ │ │ │ ├── field_mask.proto │ │ │ │ │ ├── struct.proto │ │ │ │ │ ├── timestamp.proto │ │ │ │ │ └── wrappers.proto │ │ │ │ ├── protoc-gen-gogo │ │ │ │ └── descriptor │ │ │ │ │ ├── descriptor.go │ │ │ │ │ ├── descriptor.pb.go │ │ │ │ │ ├── descriptor_gostring.gen.go │ │ │ │ │ └── helper.go │ │ │ │ ├── sortkeys │ │ │ │ └── sortkeys.go │ │ │ │ └── types │ │ │ │ ├── any.go │ │ │ │ ├── any.pb.go │ │ │ │ ├── doc.go │ │ │ │ ├── duration.go │ │ │ │ ├── duration.pb.go │ │ │ │ ├── duration_gogo.go │ │ │ │ ├── empty.pb.go │ │ │ │ ├── field_mask.pb.go │ │ │ │ ├── struct.pb.go │ │ │ │ ├── timestamp.go │ │ │ │ ├── timestamp.pb.go │ │ │ │ ├── timestamp_gogo.go │ │ │ │ └── wrappers.pb.go │ │ ├── golang │ │ │ └── protobuf │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── proto │ │ │ │ ├── clone.go │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ ├── equal.go │ │ │ │ ├── extensions.go │ │ │ │ ├── lib.go │ │ │ │ ├── message_set.go │ │ │ │ ├── pointer_reflect.go │ │ │ │ ├── pointer_unsafe.go │ │ │ │ ├── properties.go │ │ │ │ ├── text.go │ │ │ │ └── text_parser.go │ │ │ │ ├── protoc-gen-go │ │ │ │ └── descriptor │ │ │ │ │ └── descriptor.pb.go │ │ │ │ └── ptypes │ │ │ │ ├── any.go │ │ │ │ ├── any │ │ │ │ ├── any.pb.go │ │ │ │ └── any.proto │ │ │ │ ├── doc.go │ │ │ │ ├── duration.go │ │ │ │ ├── duration │ │ │ │ ├── duration.pb.go │ │ │ │ └── duration.proto │ │ │ │ ├── empty │ │ │ │ ├── empty.pb.go │ │ │ │ └── empty.proto │ │ │ │ ├── struct │ │ │ │ ├── struct.pb.go │ │ │ │ └── struct.proto │ │ │ │ ├── timestamp.go │ │ │ │ └── timestamp │ │ │ │ ├── timestamp.pb.go │ │ │ │ └── timestamp.proto │ │ ├── google │ │ │ └── certificate-transparency │ │ │ │ ├── LICENSE │ │ │ │ ├── README-MacOS.md │ │ │ │ ├── README.md │ │ │ │ ├── cpp │ │ │ │ ├── third_party │ │ │ │ │ ├── curl │ │ │ │ │ │ ├── hostcheck.c │ │ │ │ │ │ └── hostcheck.h │ │ │ │ │ └── isec_partners │ │ │ │ │ │ ├── openssl_hostname_validation.c │ │ │ │ │ │ └── openssl_hostname_validation.h │ │ │ │ └── version.h │ │ │ │ ├── go │ │ │ │ ├── README.md │ │ │ │ ├── asn1 │ │ │ │ │ ├── asn1.go │ │ │ │ │ ├── common.go │ │ │ │ │ └── marshal.go │ │ │ │ ├── client │ │ │ │ │ ├── getentries.go │ │ │ │ │ └── logclient.go │ │ │ │ ├── serialization.go │ │ │ │ ├── signatures.go │ │ │ │ ├── types.go │ │ │ │ └── x509 │ │ │ │ │ ├── cert_pool.go │ │ │ │ │ ├── pem_decrypt.go │ │ │ │ │ ├── pkcs1.go │ │ │ │ │ ├── pkcs8.go │ │ │ │ │ ├── pkix │ │ │ │ │ └── pkix.go │ │ │ │ │ ├── root.go │ │ │ │ │ ├── root_darwin.go │ │ │ │ │ ├── root_plan9.go │ │ │ │ │ ├── root_stub.go │ │ │ │ │ ├── root_unix.go │ │ │ │ │ ├── root_windows.go │ │ │ │ │ ├── sec1.go │ │ │ │ │ ├── verify.go │ │ │ │ │ └── x509.go │ │ │ │ └── proto │ │ │ │ └── ct.proto │ │ ├── googleapis │ │ │ └── gax-go │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── call_option.go │ │ │ │ ├── gax.go │ │ │ │ ├── invoke.go │ │ │ │ ├── path_template.go │ │ │ │ └── path_template_parser.go │ │ ├── gorilla │ │ │ ├── context │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── context.go │ │ │ │ └── doc.go │ │ │ └── mux │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── mux.go │ │ │ │ ├── regexp.go │ │ │ │ └── route.go │ │ ├── gotestyourself │ │ │ └── gotestyourself │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── fs │ │ │ │ ├── file.go │ │ │ │ └── ops.go │ │ │ │ ├── icmd │ │ │ │ ├── command.go │ │ │ │ ├── exitcode.go │ │ │ │ └── ops.go │ │ │ │ ├── poll │ │ │ │ └── poll.go │ │ │ │ └── skip │ │ │ │ └── skip.go │ │ ├── grpc-ecosystem │ │ │ └── go-grpc-prometheus │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── client.go │ │ │ │ ├── client_reporter.go │ │ │ │ ├── server.go │ │ │ │ ├── server_reporter.go │ │ │ │ └── util.go │ │ ├── hashicorp │ │ │ ├── consul │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── api │ │ │ │ │ ├── README.md │ │ │ │ │ ├── acl.go │ │ │ │ │ ├── agent.go │ │ │ │ │ ├── api.go │ │ │ │ │ ├── catalog.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── health.go │ │ │ │ │ ├── kv.go │ │ │ │ │ ├── lock.go │ │ │ │ │ ├── raw.go │ │ │ │ │ ├── semaphore.go │ │ │ │ │ ├── session.go │ │ │ │ │ └── status.go │ │ │ ├── go-immutable-radix │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── edges.go │ │ │ │ ├── iradix.go │ │ │ │ ├── iter.go │ │ │ │ └── node.go │ │ │ ├── go-memdb │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.go │ │ │ │ ├── memdb.go │ │ │ │ ├── schema.go │ │ │ │ └── txn.go │ │ │ ├── go-msgpack │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── codec │ │ │ │ │ ├── 0doc.go │ │ │ │ │ ├── README.md │ │ │ │ │ ├── binc.go │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── helper.go │ │ │ │ │ ├── helper_internal.go │ │ │ │ │ ├── msgpack.go │ │ │ │ │ ├── rpc.go │ │ │ │ │ ├── simple.go │ │ │ │ │ └── time.go │ │ │ ├── go-multierror │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── append.go │ │ │ │ ├── format.go │ │ │ │ └── multierror.go │ │ │ ├── go-sockaddr │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── ifaddr.go │ │ │ │ ├── ifaddrs.go │ │ │ │ ├── ifattr.go │ │ │ │ ├── ipaddr.go │ │ │ │ ├── ipaddrs.go │ │ │ │ ├── ipv4addr.go │ │ │ │ ├── ipv6addr.go │ │ │ │ ├── rfc.go │ │ │ │ ├── route_info.go │ │ │ │ ├── route_info_bsd.go │ │ │ │ ├── route_info_default.go │ │ │ │ ├── route_info_linux.go │ │ │ │ ├── route_info_solaris.go │ │ │ │ ├── route_info_windows.go │ │ │ │ ├── sockaddr.go │ │ │ │ ├── sockaddrs.go │ │ │ │ └── unixsock.go │ │ │ ├── golang-lru │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── simplelru │ │ │ │ │ └── lru.go │ │ │ ├── memberlist │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── alive_delegate.go │ │ │ │ ├── awareness.go │ │ │ │ ├── broadcast.go │ │ │ │ ├── config.go │ │ │ │ ├── conflict_delegate.go │ │ │ │ ├── delegate.go │ │ │ │ ├── event_delegate.go │ │ │ │ ├── keyring.go │ │ │ │ ├── logging.go │ │ │ │ ├── memberlist.go │ │ │ │ ├── merge_delegate.go │ │ │ │ ├── mock_transport.go │ │ │ │ ├── net.go │ │ │ │ ├── net_transport.go │ │ │ │ ├── ping_delegate.go │ │ │ │ ├── queue.go │ │ │ │ ├── security.go │ │ │ │ ├── state.go │ │ │ │ ├── suspicion.go │ │ │ │ ├── transport.go │ │ │ │ └── util.go │ │ │ └── serf │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── coordinate │ │ │ │ ├── client.go │ │ │ │ ├── config.go │ │ │ │ ├── coordinate.go │ │ │ │ └── phantom.go │ │ │ │ └── serf │ │ │ │ ├── broadcast.go │ │ │ │ ├── coalesce.go │ │ │ │ ├── coalesce_member.go │ │ │ │ ├── coalesce_user.go │ │ │ │ ├── config.go │ │ │ │ ├── conflict_delegate.go │ │ │ │ ├── delegate.go │ │ │ │ ├── event.go │ │ │ │ ├── event_delegate.go │ │ │ │ ├── internal_query.go │ │ │ │ ├── keymanager.go │ │ │ │ ├── lamport.go │ │ │ │ ├── merge_delegate.go │ │ │ │ ├── messages.go │ │ │ │ ├── ping_delegate.go │ │ │ │ ├── query.go │ │ │ │ ├── serf.go │ │ │ │ └── snapshot.go │ │ ├── imdario │ │ │ └── mergo │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── map.go │ │ │ │ ├── merge.go │ │ │ │ └── mergo.go │ │ ├── inconshreveable │ │ │ └── mousetrap │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── trap_others.go │ │ │ │ ├── trap_windows.go │ │ │ │ └── trap_windows_1.4.go │ │ ├── jmespath │ │ │ └── go-jmespath │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── api.go │ │ │ │ ├── astnodetype_string.go │ │ │ │ ├── functions.go │ │ │ │ ├── interpreter.go │ │ │ │ ├── lexer.go │ │ │ │ ├── parser.go │ │ │ │ ├── toktype_string.go │ │ │ │ └── util.go │ │ ├── kr │ │ │ └── pty │ │ │ │ ├── License │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── ioctl.go │ │ │ │ ├── ioctl_bsd.go │ │ │ │ ├── pty_darwin.go │ │ │ │ ├── pty_freebsd.go │ │ │ │ ├── pty_linux.go │ │ │ │ ├── pty_unsupported.go │ │ │ │ ├── run.go │ │ │ │ ├── util.go │ │ │ │ ├── ztypes_386.go │ │ │ │ ├── ztypes_amd64.go │ │ │ │ ├── ztypes_arm.go │ │ │ │ ├── ztypes_arm64.go │ │ │ │ ├── ztypes_freebsd_386.go │ │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ │ ├── ztypes_freebsd_arm.go │ │ │ │ ├── ztypes_ppc64.go │ │ │ │ ├── ztypes_ppc64le.go │ │ │ │ └── ztypes_s390x.go │ │ ├── mattn │ │ │ └── go-shellwords │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── shellwords.go │ │ │ │ ├── util_posix.go │ │ │ │ └── util_windows.go │ │ ├── matttproud │ │ │ └── golang_protobuf_extensions │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ ├── README.md │ │ │ │ └── pbutil │ │ │ │ ├── decode.go │ │ │ │ ├── doc.go │ │ │ │ └── encode.go │ │ ├── miekg │ │ │ └── dns │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── client.go │ │ │ │ ├── clientconfig.go │ │ │ │ ├── defaults.go │ │ │ │ ├── dns.go │ │ │ │ ├── dnssec.go │ │ │ │ ├── dnssec_keygen.go │ │ │ │ ├── dnssec_keyscan.go │ │ │ │ ├── dnssec_privkey.go │ │ │ │ ├── doc.go │ │ │ │ ├── edns.go │ │ │ │ ├── format.go │ │ │ │ ├── labels.go │ │ │ │ ├── msg.go │ │ │ │ ├── nsecx.go │ │ │ │ ├── privaterr.go │ │ │ │ ├── rawmsg.go │ │ │ │ ├── sanitize.go │ │ │ │ ├── scanner.go │ │ │ │ ├── server.go │ │ │ │ ├── sig0.go │ │ │ │ ├── singleinflight.go │ │ │ │ ├── tlsa.go │ │ │ │ ├── tsig.go │ │ │ │ ├── types.go │ │ │ │ ├── udp.go │ │ │ │ ├── udp_linux.go │ │ │ │ ├── udp_other.go │ │ │ │ ├── udp_windows.go │ │ │ │ ├── update.go │ │ │ │ ├── xfr.go │ │ │ │ ├── zgenerate.go │ │ │ │ ├── zscan.go │ │ │ │ ├── zscan_rr.go │ │ │ │ └── ztypes.go │ │ ├── mistifyio │ │ │ └── go-zfs │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── error.go │ │ │ │ ├── utils.go │ │ │ │ ├── utils_notsolaris.go │ │ │ │ ├── utils_solaris.go │ │ │ │ ├── zfs.go │ │ │ │ └── zpool.go │ │ ├── moby │ │ │ └── buildkit │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── session │ │ │ │ ├── context.go │ │ │ │ ├── filesync │ │ │ │ │ ├── diffcopy.go │ │ │ │ │ ├── filesync.go │ │ │ │ │ ├── filesync.pb.go │ │ │ │ │ ├── filesync.proto │ │ │ │ │ └── generate.go │ │ │ │ ├── grpc.go │ │ │ │ ├── manager.go │ │ │ │ └── session.go │ │ │ │ └── vendor.conf │ │ ├── opencontainers │ │ │ ├── go-digest │ │ │ │ ├── LICENSE.code │ │ │ │ ├── LICENSE.docs │ │ │ │ ├── README.md │ │ │ │ ├── algorithm.go │ │ │ │ ├── digest.go │ │ │ │ ├── digester.go │ │ │ │ ├── doc.go │ │ │ │ └── verifiers.go │ │ │ ├── image-spec │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── identity │ │ │ │ │ ├── chainid.go │ │ │ │ │ └── helpers.go │ │ │ │ └── specs-go │ │ │ │ │ ├── v1 │ │ │ │ │ ├── annotations.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── descriptor.go │ │ │ │ │ ├── index.go │ │ │ │ │ ├── layout.go │ │ │ │ │ ├── manifest.go │ │ │ │ │ └── mediatype.go │ │ │ │ │ ├── version.go │ │ │ │ │ └── versioned.go │ │ │ ├── runc │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ ├── README.md │ │ │ │ ├── libcontainer │ │ │ │ │ ├── README.md │ │ │ │ │ ├── apparmor │ │ │ │ │ │ ├── apparmor.go │ │ │ │ │ │ └── apparmor_disabled.go │ │ │ │ │ ├── cgroups │ │ │ │ │ │ ├── cgroups.go │ │ │ │ │ │ ├── cgroups_unsupported.go │ │ │ │ │ │ ├── stats.go │ │ │ │ │ │ └── utils.go │ │ │ │ │ ├── configs │ │ │ │ │ │ ├── blkio_device.go │ │ │ │ │ │ ├── cgroup_linux.go │ │ │ │ │ │ ├── cgroup_unsupported.go │ │ │ │ │ │ ├── cgroup_windows.go │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ ├── config_linux.go │ │ │ │ │ │ ├── device.go │ │ │ │ │ │ ├── device_defaults.go │ │ │ │ │ │ ├── hugepage_limit.go │ │ │ │ │ │ ├── intelrdt.go │ │ │ │ │ │ ├── interface_priority_map.go │ │ │ │ │ │ ├── mount.go │ │ │ │ │ │ ├── namespaces.go │ │ │ │ │ │ ├── namespaces_linux.go │ │ │ │ │ │ ├── namespaces_syscall.go │ │ │ │ │ │ ├── namespaces_syscall_unsupported.go │ │ │ │ │ │ ├── namespaces_unsupported.go │ │ │ │ │ │ └── network.go │ │ │ │ │ ├── devices │ │ │ │ │ │ ├── devices_linux.go │ │ │ │ │ │ └── devices_unsupported.go │ │ │ │ │ ├── nsenter │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── namespace.h │ │ │ │ │ │ ├── nsenter.go │ │ │ │ │ │ ├── nsenter_gccgo.go │ │ │ │ │ │ ├── nsenter_unsupported.go │ │ │ │ │ │ └── nsexec.c │ │ │ │ │ ├── system │ │ │ │ │ │ ├── linux.go │ │ │ │ │ │ ├── proc.go │ │ │ │ │ │ ├── syscall_linux_32.go │ │ │ │ │ │ ├── syscall_linux_64.go │ │ │ │ │ │ ├── sysconfig.go │ │ │ │ │ │ ├── sysconfig_notcgo.go │ │ │ │ │ │ ├── unsupported.go │ │ │ │ │ │ └── xattrs_linux.go │ │ │ │ │ └── user │ │ │ │ │ │ ├── lookup.go │ │ │ │ │ │ ├── lookup_unix.go │ │ │ │ │ │ ├── lookup_unsupported.go │ │ │ │ │ │ └── user.go │ │ │ │ └── vendor.conf │ │ │ ├── runtime-spec │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── specs-go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── state.go │ │ │ │ │ └── version.go │ │ │ └── selinux │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── go-selinux │ │ │ │ ├── label │ │ │ │ ├── label.go │ │ │ │ └── label_selinux.go │ │ │ │ ├── selinux.go │ │ │ │ └── xattrs.go │ │ ├── pborman │ │ │ └── uuid │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dce.go │ │ │ │ ├── doc.go │ │ │ │ ├── hash.go │ │ │ │ ├── json.go │ │ │ │ ├── node.go │ │ │ │ ├── sql.go │ │ │ │ ├── time.go │ │ │ │ ├── util.go │ │ │ │ ├── uuid.go │ │ │ │ ├── version1.go │ │ │ │ └── version4.go │ │ ├── philhofer │ │ │ └── fwd │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── reader.go │ │ │ │ ├── writer.go │ │ │ │ ├── writer_appengine.go │ │ │ │ └── writer_unsafe.go │ │ ├── pivotal-golang │ │ │ └── clock │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── clock.go │ │ │ │ ├── ticker.go │ │ │ │ └── timer.go │ │ ├── pkg │ │ │ └── errors │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── errors.go │ │ │ │ └── stack.go │ │ ├── pmezard │ │ │ └── go-difflib │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── difflib │ │ │ │ └── difflib.go │ │ ├── prometheus │ │ │ ├── client_golang │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ ├── README.md │ │ │ │ └── prometheus │ │ │ │ │ ├── README.md │ │ │ │ │ ├── collector.go │ │ │ │ │ ├── counter.go │ │ │ │ │ ├── desc.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── expvar.go │ │ │ │ │ ├── fnv.go │ │ │ │ │ ├── gauge.go │ │ │ │ │ ├── go_collector.go │ │ │ │ │ ├── histogram.go │ │ │ │ │ ├── http.go │ │ │ │ │ ├── metric.go │ │ │ │ │ ├── process_collector.go │ │ │ │ │ ├── push.go │ │ │ │ │ ├── registry.go │ │ │ │ │ ├── summary.go │ │ │ │ │ ├── untyped.go │ │ │ │ │ ├── value.go │ │ │ │ │ └── vec.go │ │ │ ├── client_model │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ ├── README.md │ │ │ │ └── go │ │ │ │ │ └── metrics.pb.go │ │ │ ├── common │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ ├── README.md │ │ │ │ ├── expfmt │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── expfmt.go │ │ │ │ │ ├── fuzz.go │ │ │ │ │ ├── text_create.go │ │ │ │ │ └── text_parse.go │ │ │ │ ├── internal │ │ │ │ │ └── bitbucket.org │ │ │ │ │ │ └── ww │ │ │ │ │ │ └── goautoneg │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ └── autoneg.go │ │ │ │ └── model │ │ │ │ │ ├── alert.go │ │ │ │ │ ├── fingerprinting.go │ │ │ │ │ ├── fnv.go │ │ │ │ │ ├── labels.go │ │ │ │ │ ├── labelset.go │ │ │ │ │ ├── metric.go │ │ │ │ │ ├── model.go │ │ │ │ │ ├── signature.go │ │ │ │ │ ├── silence.go │ │ │ │ │ ├── time.go │ │ │ │ │ └── value.go │ │ │ └── procfs │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── fs.go │ │ │ │ ├── ipvs.go │ │ │ │ ├── mdstat.go │ │ │ │ ├── proc.go │ │ │ │ ├── proc_io.go │ │ │ │ ├── proc_limits.go │ │ │ │ ├── proc_stat.go │ │ │ │ └── stat.go │ │ ├── samuel │ │ │ └── go-zookeeper │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── zk │ │ │ │ ├── conn.go │ │ │ │ ├── constants.go │ │ │ │ ├── flw.go │ │ │ │ ├── lock.go │ │ │ │ ├── server_help.go │ │ │ │ ├── server_java.go │ │ │ │ ├── structs.go │ │ │ │ ├── tracer.go │ │ │ │ └── util.go │ │ ├── sean- │ │ │ └── seed │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── init.go │ │ ├── seccomp │ │ │ └── libseccomp-golang │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── seccomp.go │ │ │ │ └── seccomp_internal.go │ │ ├── sirupsen │ │ │ └── logrus │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── alt_exit.go │ │ │ │ ├── doc.go │ │ │ │ ├── entry.go │ │ │ │ ├── exported.go │ │ │ │ ├── formatter.go │ │ │ │ ├── hooks.go │ │ │ │ ├── json_formatter.go │ │ │ │ ├── logger.go │ │ │ │ ├── logrus.go │ │ │ │ ├── terminal_bsd.go │ │ │ │ ├── terminal_linux.go │ │ │ │ ├── text_formatter.go │ │ │ │ └── writer.go │ │ ├── spf13 │ │ │ ├── cobra │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── args.go │ │ │ │ ├── bash_completions.go │ │ │ │ ├── cobra.go │ │ │ │ ├── command.go │ │ │ │ ├── command_notwin.go │ │ │ │ └── command_win.go │ │ │ └── pflag │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bool.go │ │ │ │ ├── bool_slice.go │ │ │ │ ├── count.go │ │ │ │ ├── duration.go │ │ │ │ ├── flag.go │ │ │ │ ├── float32.go │ │ │ │ ├── float64.go │ │ │ │ ├── golangflag.go │ │ │ │ ├── int.go │ │ │ │ ├── int32.go │ │ │ │ ├── int64.go │ │ │ │ ├── int8.go │ │ │ │ ├── int_slice.go │ │ │ │ ├── ip.go │ │ │ │ ├── ip_slice.go │ │ │ │ ├── ipmask.go │ │ │ │ ├── ipnet.go │ │ │ │ ├── string.go │ │ │ │ ├── string_array.go │ │ │ │ ├── string_slice.go │ │ │ │ ├── uint.go │ │ │ │ ├── uint16.go │ │ │ │ ├── uint32.go │ │ │ │ ├── uint64.go │ │ │ │ ├── uint8.go │ │ │ │ └── uint_slice.go │ │ ├── stevvooe │ │ │ └── ttrpc │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── channel.go │ │ │ │ ├── client.go │ │ │ │ ├── codec.go │ │ │ │ ├── config.go │ │ │ │ ├── handshake.go │ │ │ │ ├── server.go │ │ │ │ ├── services.go │ │ │ │ ├── types.go │ │ │ │ └── unixcreds_linux.go │ │ ├── stretchr │ │ │ └── testify │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── assert │ │ │ │ ├── assertion_forward.go │ │ │ │ ├── assertions.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── forward_assertions.go │ │ │ │ └── http_assertions.go │ │ │ │ └── require │ │ │ │ ├── doc.go │ │ │ │ ├── forward_requirements.go │ │ │ │ ├── require.go │ │ │ │ ├── require_forward.go │ │ │ │ └── requirements.go │ │ ├── syndtr │ │ │ └── gocapability │ │ │ │ ├── LICENSE │ │ │ │ └── capability │ │ │ │ ├── capability.go │ │ │ │ ├── capability_linux.go │ │ │ │ ├── capability_noop.go │ │ │ │ ├── enum.go │ │ │ │ ├── enum_gen.go │ │ │ │ └── syscall_linux.go │ │ ├── tchap │ │ │ └── go-patricia │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── patricia │ │ │ │ ├── children.go │ │ │ │ └── patricia.go │ │ ├── tinylib │ │ │ └── msgp │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── msgp │ │ │ │ ├── advise_linux.go │ │ │ │ ├── advise_other.go │ │ │ │ ├── appengine.go │ │ │ │ ├── circular.go │ │ │ │ ├── defs.go │ │ │ │ ├── edit.go │ │ │ │ ├── elsize.go │ │ │ │ ├── errors.go │ │ │ │ ├── extension.go │ │ │ │ ├── file.go │ │ │ │ ├── file_port.go │ │ │ │ ├── integers.go │ │ │ │ ├── json.go │ │ │ │ ├── json_bytes.go │ │ │ │ ├── number.go │ │ │ │ ├── read.go │ │ │ │ ├── read_bytes.go │ │ │ │ ├── size.go │ │ │ │ ├── unsafe.go │ │ │ │ ├── write.go │ │ │ │ └── write_bytes.go │ │ ├── tonistiigi │ │ │ └── fsutil │ │ │ │ ├── LICENSE │ │ │ │ ├── diff.go │ │ │ │ ├── diff_containerd.go │ │ │ │ ├── diff_containerd_linux.go │ │ │ │ ├── diskwriter.go │ │ │ │ ├── diskwriter_darwin.go │ │ │ │ ├── diskwriter_linux.go │ │ │ │ ├── diskwriter_unix.go │ │ │ │ ├── diskwriter_windows.go │ │ │ │ ├── generate.go │ │ │ │ ├── hardlinks.go │ │ │ │ ├── readme.md │ │ │ │ ├── receive.go │ │ │ │ ├── send.go │ │ │ │ ├── stat.pb.go │ │ │ │ ├── stat.proto │ │ │ │ ├── validator.go │ │ │ │ ├── walker.go │ │ │ │ ├── walker_unix.go │ │ │ │ ├── walker_windows.go │ │ │ │ ├── wire.pb.go │ │ │ │ └── wire.proto │ │ ├── ugorji │ │ │ └── go │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── codec │ │ │ │ ├── 0doc.go │ │ │ │ ├── README.md │ │ │ │ ├── binc.go │ │ │ │ ├── cbor.go │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ ├── fast-path.generated.go │ │ │ │ ├── fast-path.not.go │ │ │ │ ├── gen-helper.generated.go │ │ │ │ ├── gen.generated.go │ │ │ │ ├── gen.go │ │ │ │ ├── helper.go │ │ │ │ ├── helper_internal.go │ │ │ │ ├── helper_not_unsafe.go │ │ │ │ ├── helper_unsafe.go │ │ │ │ ├── json.go │ │ │ │ ├── msgpack.go │ │ │ │ ├── noop.go │ │ │ │ ├── prebuild.go │ │ │ │ ├── rpc.go │ │ │ │ ├── simple.go │ │ │ │ └── time.go │ │ ├── vbatts │ │ │ └── tar-split │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── archive │ │ │ │ └── tar │ │ │ │ │ ├── common.go │ │ │ │ │ ├── reader.go │ │ │ │ │ ├── stat_atim.go │ │ │ │ │ ├── stat_atimespec.go │ │ │ │ │ ├── stat_unix.go │ │ │ │ │ └── writer.go │ │ │ │ └── tar │ │ │ │ ├── asm │ │ │ │ ├── README.md │ │ │ │ ├── assemble.go │ │ │ │ ├── disassemble.go │ │ │ │ └── doc.go │ │ │ │ └── storage │ │ │ │ ├── doc.go │ │ │ │ ├── entry.go │ │ │ │ ├── getter.go │ │ │ │ └── packer.go │ │ ├── vdemeester │ │ │ └── shakers │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bool.go │ │ │ │ ├── common.go │ │ │ │ ├── string.go │ │ │ │ └── time.go │ │ └── vishvananda │ │ │ ├── netlink │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── addr.go │ │ │ ├── addr_linux.go │ │ │ ├── bpf_linux.go │ │ │ ├── bridge_linux.go │ │ │ ├── class.go │ │ │ ├── class_linux.go │ │ │ ├── conntrack_linux.go │ │ │ ├── conntrack_unspecified.go │ │ │ ├── filter.go │ │ │ ├── filter_linux.go │ │ │ ├── genetlink_linux.go │ │ │ ├── genetlink_unspecified.go │ │ │ ├── gtp_linux.go │ │ │ ├── handle_linux.go │ │ │ ├── handle_unspecified.go │ │ │ ├── link.go │ │ │ ├── link_linux.go │ │ │ ├── link_tuntap_linux.go │ │ │ ├── neigh.go │ │ │ ├── neigh_linux.go │ │ │ ├── netlink.go │ │ │ ├── netlink_linux.go │ │ │ ├── netlink_unspecified.go │ │ │ ├── nl │ │ │ │ ├── addr_linux.go │ │ │ │ ├── bridge_linux.go │ │ │ │ ├── conntrack_linux.go │ │ │ │ ├── genetlink_linux.go │ │ │ │ ├── link_linux.go │ │ │ │ ├── mpls_linux.go │ │ │ │ ├── nl_linux.go │ │ │ │ ├── nl_unspecified.go │ │ │ │ ├── route_linux.go │ │ │ │ ├── syscall.go │ │ │ │ ├── tc_linux.go │ │ │ │ ├── xfrm_linux.go │ │ │ │ ├── xfrm_monitor_linux.go │ │ │ │ ├── xfrm_policy_linux.go │ │ │ │ └── xfrm_state_linux.go │ │ │ ├── order.go │ │ │ ├── protinfo.go │ │ │ ├── protinfo_linux.go │ │ │ ├── qdisc.go │ │ │ ├── qdisc_linux.go │ │ │ ├── route.go │ │ │ ├── route_linux.go │ │ │ ├── route_unspecified.go │ │ │ ├── rule.go │ │ │ ├── rule_linux.go │ │ │ ├── socket.go │ │ │ ├── socket_linux.go │ │ │ ├── xfrm.go │ │ │ ├── xfrm_monitor_linux.go │ │ │ ├── xfrm_policy.go │ │ │ ├── xfrm_policy_linux.go │ │ │ ├── xfrm_state.go │ │ │ └── xfrm_state_linux.go │ │ │ └── netns │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── netns.go │ │ │ ├── netns_linux.go │ │ │ ├── netns_linux_386.go │ │ │ ├── netns_linux_amd64.go │ │ │ ├── netns_linux_arm.go │ │ │ ├── netns_linux_arm64.go │ │ │ ├── netns_linux_ppc64le.go │ │ │ ├── netns_linux_s390x.go │ │ │ └── netns_unspecified.go │ │ ├── golang.org │ │ └── x │ │ │ ├── crypto │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── README.md │ │ │ ├── curve25519 │ │ │ │ ├── const_amd64.h │ │ │ │ ├── const_amd64.s │ │ │ │ ├── cswap_amd64.s │ │ │ │ ├── curve25519.go │ │ │ │ ├── doc.go │ │ │ │ ├── freeze_amd64.s │ │ │ │ ├── ladderstep_amd64.s │ │ │ │ ├── mont25519_amd64.go │ │ │ │ ├── mul_amd64.s │ │ │ │ └── square_amd64.s │ │ │ ├── nacl │ │ │ │ └── secretbox │ │ │ │ │ └── secretbox.go │ │ │ ├── pkcs12 │ │ │ │ ├── bmp-string.go │ │ │ │ ├── crypto.go │ │ │ │ ├── errors.go │ │ │ │ ├── internal │ │ │ │ │ └── rc2 │ │ │ │ │ │ └── rc2.go │ │ │ │ ├── mac.go │ │ │ │ ├── pbkdf.go │ │ │ │ ├── pkcs12.go │ │ │ │ └── safebags.go │ │ │ ├── poly1305 │ │ │ │ ├── poly1305.go │ │ │ │ ├── sum_amd64.go │ │ │ │ ├── sum_amd64.s │ │ │ │ ├── sum_arm.go │ │ │ │ ├── sum_arm.s │ │ │ │ └── sum_ref.go │ │ │ ├── salsa20 │ │ │ │ └── salsa │ │ │ │ │ ├── hsalsa20.go │ │ │ │ │ ├── salsa2020_amd64.s │ │ │ │ │ ├── salsa208.go │ │ │ │ │ ├── salsa20_amd64.go │ │ │ │ │ └── salsa20_ref.go │ │ │ └── ssh │ │ │ │ └── terminal │ │ │ │ ├── terminal.go │ │ │ │ ├── util.go │ │ │ │ ├── util_bsd.go │ │ │ │ ├── util_linux.go │ │ │ │ ├── util_plan9.go │ │ │ │ ├── util_solaris.go │ │ │ │ └── util_windows.go │ │ │ ├── net │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── README │ │ │ ├── context │ │ │ │ ├── context.go │ │ │ │ ├── ctxhttp │ │ │ │ │ ├── ctxhttp.go │ │ │ │ │ └── ctxhttp_pre17.go │ │ │ │ ├── go17.go │ │ │ │ └── pre_go17.go │ │ │ ├── http2 │ │ │ │ ├── README │ │ │ │ ├── ciphers.go │ │ │ │ ├── client_conn_pool.go │ │ │ │ ├── configure_transport.go │ │ │ │ ├── databuffer.go │ │ │ │ ├── errors.go │ │ │ │ ├── flow.go │ │ │ │ ├── frame.go │ │ │ │ ├── go16.go │ │ │ │ ├── go17.go │ │ │ │ ├── go17_not18.go │ │ │ │ ├── go18.go │ │ │ │ ├── go19.go │ │ │ │ ├── gotrack.go │ │ │ │ ├── headermap.go │ │ │ │ ├── hpack │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── hpack.go │ │ │ │ │ ├── huffman.go │ │ │ │ │ └── tables.go │ │ │ │ ├── http2.go │ │ │ │ ├── not_go16.go │ │ │ │ ├── not_go17.go │ │ │ │ ├── not_go18.go │ │ │ │ ├── not_go19.go │ │ │ │ ├── pipe.go │ │ │ │ ├── server.go │ │ │ │ ├── transport.go │ │ │ │ ├── write.go │ │ │ │ ├── writesched.go │ │ │ │ ├── writesched_priority.go │ │ │ │ └── writesched_random.go │ │ │ ├── idna │ │ │ │ ├── idna.go │ │ │ │ ├── punycode.go │ │ │ │ ├── tables.go │ │ │ │ ├── trie.go │ │ │ │ └── trieval.go │ │ │ ├── internal │ │ │ │ └── timeseries │ │ │ │ │ └── timeseries.go │ │ │ ├── lex │ │ │ │ └── httplex │ │ │ │ │ └── httplex.go │ │ │ ├── proxy │ │ │ │ ├── direct.go │ │ │ │ ├── per_host.go │ │ │ │ ├── proxy.go │ │ │ │ └── socks5.go │ │ │ ├── trace │ │ │ │ ├── events.go │ │ │ │ ├── histogram.go │ │ │ │ ├── trace.go │ │ │ │ ├── trace_go16.go │ │ │ │ └── trace_go17.go │ │ │ └── websocket │ │ │ │ ├── client.go │ │ │ │ ├── dial.go │ │ │ │ ├── hybi.go │ │ │ │ ├── server.go │ │ │ │ └── websocket.go │ │ │ ├── oauth2 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── client_appengine.go │ │ │ ├── google │ │ │ │ ├── appengine.go │ │ │ │ ├── appengine_hook.go │ │ │ │ ├── appenginevm_hook.go │ │ │ │ ├── default.go │ │ │ │ ├── google.go │ │ │ │ ├── jwt.go │ │ │ │ └── sdk.go │ │ │ ├── internal │ │ │ │ ├── oauth2.go │ │ │ │ ├── token.go │ │ │ │ └── transport.go │ │ │ ├── jws │ │ │ │ └── jws.go │ │ │ ├── jwt │ │ │ │ └── jwt.go │ │ │ ├── oauth2.go │ │ │ ├── token.go │ │ │ └── transport.go │ │ │ ├── sync │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── README │ │ │ ├── errgroup │ │ │ │ └── errgroup.go │ │ │ ├── singleflight │ │ │ │ └── singleflight.go │ │ │ └── syncmap │ │ │ │ └── map.go │ │ │ ├── sys │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── README.md │ │ │ ├── unix │ │ │ │ ├── README.md │ │ │ │ ├── asm_darwin_386.s │ │ │ │ ├── asm_darwin_amd64.s │ │ │ │ ├── asm_darwin_arm.s │ │ │ │ ├── asm_darwin_arm64.s │ │ │ │ ├── asm_dragonfly_amd64.s │ │ │ │ ├── asm_freebsd_386.s │ │ │ │ ├── asm_freebsd_amd64.s │ │ │ │ ├── asm_freebsd_arm.s │ │ │ │ ├── asm_linux_386.s │ │ │ │ ├── asm_linux_amd64.s │ │ │ │ ├── asm_linux_arm.s │ │ │ │ ├── asm_linux_arm64.s │ │ │ │ ├── asm_linux_mips64x.s │ │ │ │ ├── asm_linux_mipsx.s │ │ │ │ ├── asm_linux_ppc64x.s │ │ │ │ ├── asm_linux_s390x.s │ │ │ │ ├── asm_netbsd_386.s │ │ │ │ ├── asm_netbsd_amd64.s │ │ │ │ ├── asm_netbsd_arm.s │ │ │ │ ├── asm_openbsd_386.s │ │ │ │ ├── asm_openbsd_amd64.s │ │ │ │ ├── asm_openbsd_arm.s │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ ├── bluetooth_linux.go │ │ │ │ ├── cap_freebsd.go │ │ │ │ ├── constants.go │ │ │ │ ├── dev_darwin.go │ │ │ │ ├── dev_dragonfly.go │ │ │ │ ├── dev_freebsd.go │ │ │ │ ├── dev_linux.go │ │ │ │ ├── dev_netbsd.go │ │ │ │ ├── dev_openbsd.go │ │ │ │ ├── dirent.go │ │ │ │ ├── endian_big.go │ │ │ │ ├── endian_little.go │ │ │ │ ├── env_unix.go │ │ │ │ ├── env_unset.go │ │ │ │ ├── errors_freebsd_386.go │ │ │ │ ├── errors_freebsd_amd64.go │ │ │ │ ├── errors_freebsd_arm.go │ │ │ │ ├── file_unix.go │ │ │ │ ├── flock.go │ │ │ │ ├── flock_linux_32bit.go │ │ │ │ ├── gccgo.go │ │ │ │ ├── gccgo_c.c │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ ├── openbsd_pledge.go │ │ │ │ ├── pagesize_unix.go │ │ │ │ ├── race.go │ │ │ │ ├── race0.go │ │ │ │ ├── sockcmsg_linux.go │ │ │ │ ├── sockcmsg_unix.go │ │ │ │ ├── str.go │ │ │ │ ├── syscall.go │ │ │ │ ├── syscall_bsd.go │ │ │ │ ├── syscall_darwin.go │ │ │ │ ├── syscall_darwin_386.go │ │ │ │ ├── syscall_darwin_amd64.go │ │ │ │ ├── syscall_darwin_arm.go │ │ │ │ ├── syscall_darwin_arm64.go │ │ │ │ ├── syscall_dragonfly.go │ │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ │ ├── syscall_freebsd.go │ │ │ │ ├── syscall_freebsd_386.go │ │ │ │ ├── syscall_freebsd_amd64.go │ │ │ │ ├── syscall_freebsd_arm.go │ │ │ │ ├── syscall_linux.go │ │ │ │ ├── syscall_linux_386.go │ │ │ │ ├── syscall_linux_amd64.go │ │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ │ ├── syscall_linux_arm.go │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ ├── syscall_linux_mips64x.go │ │ │ │ ├── syscall_linux_mipsx.go │ │ │ │ ├── syscall_linux_ppc64x.go │ │ │ │ ├── syscall_linux_s390x.go │ │ │ │ ├── syscall_linux_sparc64.go │ │ │ │ ├── syscall_netbsd.go │ │ │ │ ├── syscall_netbsd_386.go │ │ │ │ ├── syscall_netbsd_amd64.go │ │ │ │ ├── syscall_netbsd_arm.go │ │ │ │ ├── syscall_no_getwd.go │ │ │ │ ├── syscall_openbsd.go │ │ │ │ ├── syscall_openbsd_386.go │ │ │ │ ├── syscall_openbsd_amd64.go │ │ │ │ ├── syscall_openbsd_arm.go │ │ │ │ ├── syscall_solaris.go │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ ├── syscall_unix.go │ │ │ │ ├── syscall_unix_gc.go │ │ │ │ ├── timestruct.go │ │ │ │ ├── zerrors_darwin_386.go │ │ │ │ ├── zerrors_darwin_amd64.go │ │ │ │ ├── zerrors_darwin_arm.go │ │ │ │ ├── zerrors_darwin_arm64.go │ │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ │ ├── zerrors_freebsd_386.go │ │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ │ ├── zerrors_freebsd_arm.go │ │ │ │ ├── zerrors_linux_386.go │ │ │ │ ├── zerrors_linux_amd64.go │ │ │ │ ├── zerrors_linux_arm.go │ │ │ │ ├── zerrors_linux_arm64.go │ │ │ │ ├── zerrors_linux_mips.go │ │ │ │ ├── zerrors_linux_mips64.go │ │ │ │ ├── zerrors_linux_mips64le.go │ │ │ │ ├── zerrors_linux_mipsle.go │ │ │ │ ├── zerrors_linux_ppc64.go │ │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ │ ├── zerrors_linux_s390x.go │ │ │ │ ├── zerrors_linux_sparc64.go │ │ │ │ ├── zerrors_netbsd_386.go │ │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ │ ├── zerrors_netbsd_arm.go │ │ │ │ ├── zerrors_openbsd_386.go │ │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ │ ├── zerrors_openbsd_arm.go │ │ │ │ ├── zerrors_solaris_amd64.go │ │ │ │ ├── zptrace386_linux.go │ │ │ │ ├── zptracearm_linux.go │ │ │ │ ├── zptracemips_linux.go │ │ │ │ ├── zptracemipsle_linux.go │ │ │ │ ├── zsyscall_darwin_386.go │ │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ │ ├── zsyscall_darwin_arm.go │ │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ │ ├── zsyscall_freebsd_386.go │ │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ │ ├── zsyscall_linux_386.go │ │ │ │ ├── zsyscall_linux_amd64.go │ │ │ │ ├── zsyscall_linux_arm.go │ │ │ │ ├── zsyscall_linux_arm64.go │ │ │ │ ├── zsyscall_linux_mips.go │ │ │ │ ├── zsyscall_linux_mips64.go │ │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ │ ├── zsyscall_linux_s390x.go │ │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ │ ├── zsyscall_netbsd_386.go │ │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ │ ├── zsyscall_openbsd_386.go │ │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ │ ├── zsysctl_openbsd_386.go │ │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ │ ├── zsysnum_darwin_386.go │ │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ │ ├── zsysnum_darwin_arm.go │ │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ │ ├── zsysnum_freebsd_386.go │ │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ │ ├── zsysnum_linux_386.go │ │ │ │ ├── zsysnum_linux_amd64.go │ │ │ │ ├── zsysnum_linux_arm.go │ │ │ │ ├── zsysnum_linux_arm64.go │ │ │ │ ├── zsysnum_linux_mips.go │ │ │ │ ├── zsysnum_linux_mips64.go │ │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ │ ├── zsysnum_linux_s390x.go │ │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ │ ├── zsysnum_netbsd_386.go │ │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ │ ├── zsysnum_openbsd_386.go │ │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ │ ├── zsysnum_solaris_amd64.go │ │ │ │ ├── ztypes_darwin_386.go │ │ │ │ ├── ztypes_darwin_amd64.go │ │ │ │ ├── ztypes_darwin_arm.go │ │ │ │ ├── ztypes_darwin_arm64.go │ │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ │ ├── ztypes_freebsd_386.go │ │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ │ ├── ztypes_freebsd_arm.go │ │ │ │ ├── ztypes_linux_386.go │ │ │ │ ├── ztypes_linux_amd64.go │ │ │ │ ├── ztypes_linux_arm.go │ │ │ │ ├── ztypes_linux_arm64.go │ │ │ │ ├── ztypes_linux_mips.go │ │ │ │ ├── ztypes_linux_mips64.go │ │ │ │ ├── ztypes_linux_mips64le.go │ │ │ │ ├── ztypes_linux_mipsle.go │ │ │ │ ├── ztypes_linux_ppc64.go │ │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ │ ├── ztypes_linux_s390x.go │ │ │ │ ├── ztypes_linux_sparc64.go │ │ │ │ ├── ztypes_netbsd_386.go │ │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ │ ├── ztypes_netbsd_arm.go │ │ │ │ ├── ztypes_openbsd_386.go │ │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ │ ├── ztypes_openbsd_arm.go │ │ │ │ └── ztypes_solaris_amd64.go │ │ │ └── windows │ │ │ │ ├── asm_windows_386.s │ │ │ │ ├── asm_windows_amd64.s │ │ │ │ ├── dll_windows.go │ │ │ │ ├── env_unset.go │ │ │ │ ├── env_windows.go │ │ │ │ ├── eventlog.go │ │ │ │ ├── exec_windows.go │ │ │ │ ├── memory_windows.go │ │ │ │ ├── mksyscall.go │ │ │ │ ├── race.go │ │ │ │ ├── race0.go │ │ │ │ ├── registry │ │ │ │ ├── key.go │ │ │ │ ├── mksyscall.go │ │ │ │ ├── syscall.go │ │ │ │ ├── value.go │ │ │ │ └── zsyscall_windows.go │ │ │ │ ├── security_windows.go │ │ │ │ ├── service.go │ │ │ │ ├── str.go │ │ │ │ ├── svc │ │ │ │ ├── debug │ │ │ │ │ ├── log.go │ │ │ │ │ └── service.go │ │ │ │ ├── event.go │ │ │ │ ├── eventlog │ │ │ │ │ ├── install.go │ │ │ │ │ └── log.go │ │ │ │ ├── go12.c │ │ │ │ ├── go12.go │ │ │ │ ├── go13.go │ │ │ │ ├── mgr │ │ │ │ │ ├── config.go │ │ │ │ │ ├── mgr.go │ │ │ │ │ └── service.go │ │ │ │ ├── security.go │ │ │ │ ├── service.go │ │ │ │ ├── sys_386.s │ │ │ │ └── sys_amd64.s │ │ │ │ ├── syscall.go │ │ │ │ ├── syscall_windows.go │ │ │ │ ├── types_windows.go │ │ │ │ ├── types_windows_386.go │ │ │ │ ├── types_windows_amd64.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── text │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── README │ │ │ ├── secure │ │ │ │ └── bidirule │ │ │ │ │ └── bidirule.go │ │ │ ├── transform │ │ │ │ └── transform.go │ │ │ └── unicode │ │ │ │ ├── bidi │ │ │ │ ├── bidi.go │ │ │ │ ├── bracket.go │ │ │ │ ├── core.go │ │ │ │ ├── prop.go │ │ │ │ ├── tables.go │ │ │ │ └── trieval.go │ │ │ │ └── norm │ │ │ │ ├── composition.go │ │ │ │ ├── forminfo.go │ │ │ │ ├── input.go │ │ │ │ ├── iter.go │ │ │ │ ├── normalize.go │ │ │ │ ├── readwriter.go │ │ │ │ ├── tables.go │ │ │ │ ├── transform.go │ │ │ │ └── trie.go │ │ │ └── time │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── README │ │ │ └── rate │ │ │ └── rate.go │ │ └── google.golang.org │ │ ├── api │ │ ├── LICENSE │ │ ├── README.md │ │ ├── googleapi │ │ │ └── transport │ │ │ │ └── apikey.go │ │ ├── internal │ │ │ ├── pool.go │ │ │ └── settings.go │ │ ├── iterator │ │ │ └── iterator.go │ │ ├── option │ │ │ └── option.go │ │ ├── support │ │ │ └── bundler │ │ │ │ └── bundler.go │ │ └── transport │ │ │ ├── dial.go │ │ │ └── dial_appengine.go │ │ ├── genproto │ │ ├── LICENSE │ │ ├── README.md │ │ └── googleapis │ │ │ ├── api │ │ │ ├── annotations │ │ │ │ ├── annotations.pb.go │ │ │ │ └── http.pb.go │ │ │ ├── distribution │ │ │ │ └── distribution.pb.go │ │ │ ├── label │ │ │ │ └── label.pb.go │ │ │ ├── metric │ │ │ │ └── metric.pb.go │ │ │ └── monitoredres │ │ │ │ └── monitored_resource.pb.go │ │ │ ├── logging │ │ │ ├── type │ │ │ │ ├── http_request.pb.go │ │ │ │ └── log_severity.pb.go │ │ │ └── v2 │ │ │ │ ├── log_entry.pb.go │ │ │ │ ├── logging.pb.go │ │ │ │ ├── logging_config.pb.go │ │ │ │ └── logging_metrics.pb.go │ │ │ └── rpc │ │ │ └── status │ │ │ └── status.pb.go │ │ └── grpc │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── backoff.go │ │ ├── balancer.go │ │ ├── call.go │ │ ├── clientconn.go │ │ ├── codec.go │ │ ├── codes │ │ ├── code_string.go │ │ └── codes.go │ │ ├── credentials │ │ ├── credentials.go │ │ ├── credentials_util_go17.go │ │ ├── credentials_util_go18.go │ │ ├── credentials_util_pre_go17.go │ │ └── oauth │ │ │ └── oauth.go │ │ ├── doc.go │ │ ├── go16.go │ │ ├── go17.go │ │ ├── grpclb.go │ │ ├── grpclb │ │ └── grpc_lb_v1 │ │ │ ├── grpclb.pb.go │ │ │ └── grpclb.proto │ │ ├── grpclog │ │ └── logger.go │ │ ├── health │ │ ├── grpc_health_v1 │ │ │ ├── health.pb.go │ │ │ └── health.proto │ │ └── health.go │ │ ├── interceptor.go │ │ ├── internal │ │ └── internal.go │ │ ├── keepalive │ │ └── keepalive.go │ │ ├── metadata │ │ └── metadata.go │ │ ├── naming │ │ └── naming.go │ │ ├── peer │ │ └── peer.go │ │ ├── proxy.go │ │ ├── rpc_util.go │ │ ├── server.go │ │ ├── stats │ │ ├── handlers.go │ │ └── stats.go │ │ ├── status │ │ └── status.go │ │ ├── stream.go │ │ ├── tap │ │ └── tap.go │ │ ├── trace.go │ │ └── transport │ │ ├── control.go │ │ ├── go16.go │ │ ├── go17.go │ │ ├── handler_server.go │ │ ├── http2_client.go │ │ ├── http2_server.go │ │ ├── http_util.go │ │ └── transport.go └── src3 │ └── src │ ├── github.com │ ├── bosh-tools │ │ └── bosh-cron │ │ │ ├── bin │ │ │ ├── cron │ │ │ └── test │ │ │ ├── config.go │ │ │ ├── director │ │ │ ├── config.go │ │ │ ├── cron_item.go │ │ │ ├── cron_item_status.go │ │ │ ├── cron_status.go │ │ │ ├── director_cron_item_status.go │ │ │ ├── director_cron_items.go │ │ │ ├── director_cron_status.go │ │ │ ├── director_jobs.go │ │ │ ├── factory.go │ │ │ └── interfaces.go │ │ │ ├── job │ │ │ ├── cleanup_job.go │ │ │ ├── errand_job.go │ │ │ ├── interfaces.go │ │ │ ├── run_once_job.go │ │ │ └── status_wrapper.go │ │ │ ├── main.go │ │ │ └── scheduler.go │ └── cloudfoundry │ │ ├── bosh-cli │ │ ├── .gitignore │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── acceptance │ │ │ ├── acceptance_suite_test.go │ │ │ ├── assets │ │ │ │ ├── certs │ │ │ │ │ ├── custom_ca.pem │ │ │ │ │ ├── custom_cert.pem │ │ │ │ │ ├── custom_key.pem │ │ │ │ │ └── readme.md │ │ │ │ ├── dummy-release.tgz │ │ │ │ ├── dummy-too-boshrelease │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── config │ │ │ │ │ │ ├── blobs.yml │ │ │ │ │ │ └── final.yml │ │ │ │ │ ├── jobs │ │ │ │ │ │ └── dummyToo │ │ │ │ │ │ │ ├── monit │ │ │ │ │ │ │ ├── spec │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── ctl.erb │ │ │ │ │ ├── packages │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ └── src │ │ │ │ │ │ └── .gitkeep │ │ │ │ ├── dummy-too-release.tgz │ │ │ │ ├── invalid_manifest.yml │ │ │ │ ├── manifest.yml │ │ │ │ ├── manifest_with_all_network_types.yml │ │ │ │ ├── manifest_without_registry.yml │ │ │ │ ├── modified_disk_manifest.yml │ │ │ │ ├── modified_manifest.yml │ │ │ │ ├── sample-release-compiled-manifest-with-ca-cert.yml │ │ │ │ ├── sample-release-compiled-manifest.yml │ │ │ │ ├── sample-release-compiled.tgz │ │ │ │ └── sample-release │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── config │ │ │ │ │ ├── dev.yml │ │ │ │ │ └── final.yml │ │ │ │ │ ├── jobs │ │ │ │ │ └── sample-job │ │ │ │ │ │ ├── monit │ │ │ │ │ │ ├── spec │ │ │ │ │ │ └── templates │ │ │ │ │ │ └── ctl.erb │ │ │ │ │ ├── packages │ │ │ │ │ └── sample-pkg │ │ │ │ │ │ ├── packaging │ │ │ │ │ │ └── spec │ │ │ │ │ └── src │ │ │ │ │ └── sample-pkg │ │ │ │ │ └── file.txt │ │ │ ├── cmd_runner.go │ │ │ ├── config.go │ │ │ ├── instance_ssh.go │ │ │ ├── lifecycle_test.go │ │ │ └── test_environment.go │ │ ├── agentclient │ │ │ └── mocks │ │ │ │ └── mocks.go │ │ ├── bin │ │ │ ├── build │ │ │ ├── build-linux-amd64 │ │ │ ├── clean │ │ │ ├── env │ │ │ ├── gen-fakes │ │ │ ├── go │ │ │ ├── gocyclo │ │ │ ├── godirs │ │ │ ├── gofiles │ │ │ ├── govet │ │ │ ├── install-ginkgo │ │ │ ├── mockgen │ │ │ ├── require-ci-golang-version │ │ │ ├── test │ │ │ ├── test-acceptance │ │ │ ├── test-acceptance-with-garden │ │ │ ├── test-integration │ │ │ ├── test-prepare │ │ │ ├── test-unhandled-errors │ │ │ └── test-unit │ │ ├── blobstore │ │ │ ├── blobstore.go │ │ │ ├── blobstore_factory.go │ │ │ ├── blobstore_factory_test.go │ │ │ ├── blobstore_suite_test.go │ │ │ ├── blobstore_test.go │ │ │ ├── fakes │ │ │ │ ├── fake_blobstore.go │ │ │ │ └── fake_blobstore_factory.go │ │ │ ├── local_blob.go │ │ │ ├── local_blob_test.go │ │ │ └── mocks │ │ │ │ └── mocks.go │ │ ├── ci │ │ │ ├── README.md │ │ │ ├── Vagrantfile │ │ │ ├── configure.sh │ │ │ ├── docker-images.yml │ │ │ ├── docker │ │ │ │ ├── Dockerfile │ │ │ │ ├── README.md │ │ │ │ ├── Vagrantfile │ │ │ │ ├── build-docker-image.sh │ │ │ │ ├── deps-golang-1.7.1 │ │ │ │ ├── deps-golang-1.8.1 │ │ │ │ ├── deps-golang-from-docker-files │ │ │ │ ├── install-go.sh │ │ │ │ ├── install-ruby.sh │ │ │ │ ├── write-metadata-file.sh │ │ │ │ └── write-metadata-file.yml │ │ │ ├── pipeline.yml │ │ │ ├── run-acceptance-with-vm-in-container.sh │ │ │ ├── tasks │ │ │ │ ├── build-darwin.yml │ │ │ │ ├── build-linux.yml │ │ │ │ ├── build-windows.yml │ │ │ │ ├── build.sh │ │ │ │ ├── test-acceptance.sh │ │ │ │ ├── test-acceptance.yml │ │ │ │ ├── test-integration-windows.yml │ │ │ │ ├── test-integration.ps1 │ │ │ │ ├── test-integration.sh │ │ │ │ ├── test-integration.yml │ │ │ │ ├── test-unit-windows.yml │ │ │ │ ├── test-unit.ps1 │ │ │ │ ├── test-unit.sh │ │ │ │ ├── test-unit.yml │ │ │ │ ├── update-homebrew-formula.sh │ │ │ │ └── update-homebrew-formula.yml │ │ │ └── test.sh │ │ ├── cloud │ │ │ ├── cloud.go │ │ │ ├── cloud_test.go │ │ │ ├── cpi.go │ │ │ ├── cpi_cmd_runner.go │ │ │ ├── cpi_cmd_runner_test.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── factory.go │ │ │ ├── fakes │ │ │ │ ├── fake_cloud.go │ │ │ │ └── fake_cpi_cmd_runner.go │ │ │ ├── mocks │ │ │ │ └── mocks.go │ │ │ └── suite_test.go │ │ ├── cmd │ │ │ ├── add_blob.go │ │ │ ├── add_blob_test.go │ │ │ ├── alias_env.go │ │ │ ├── alias_env_test.go │ │ │ ├── attach_disk.go │ │ │ ├── attach_disk_test.go │ │ │ ├── basic_deps.go │ │ │ ├── basic_login_strategy.go │ │ │ ├── basic_login_strategy_test.go │ │ │ ├── blobs.go │ │ │ ├── blobs_test.go │ │ │ ├── bool_arg.go │ │ │ ├── bool_arg_test.go │ │ │ ├── ca_cert_arg.go │ │ │ ├── ca_cert_arg_test.go │ │ │ ├── cancel_task.go │ │ │ ├── cancel_task_test.go │ │ │ ├── clean_up.go │ │ │ ├── clean_up_test.go │ │ │ ├── cloud_check.go │ │ │ ├── cloud_check_test.go │ │ │ ├── cloud_config.go │ │ │ ├── cloud_config_test.go │ │ │ ├── cmd.go │ │ │ ├── cmd_test.go │ │ │ ├── cmdfakes │ │ │ │ ├── fake_downloader.go │ │ │ │ ├── fake_installation.go │ │ │ │ ├── fake_login_strategy.go │ │ │ │ ├── fake_release_creating_cmd.go │ │ │ │ ├── fake_release_uploader.go │ │ │ │ ├── fake_release_uploading_cmd.go │ │ │ │ ├── fake_session.go │ │ │ │ └── fake_session_context.go │ │ │ ├── column_opt.go │ │ │ ├── column_opt_test.go │ │ │ ├── config.go │ │ │ ├── config │ │ │ │ ├── configfakes │ │ │ │ │ ├── fake_config.go │ │ │ │ │ └── fake_config2.go │ │ │ │ ├── creds.go │ │ │ │ ├── creds_test.go │ │ │ │ ├── fs_config.go │ │ │ │ ├── fs_config_test.go │ │ │ │ ├── interfaces.go │ │ │ │ └── suite_test.go │ │ │ ├── config_test.go │ │ │ ├── configs.go │ │ │ ├── configs_test.go │ │ │ ├── cpi_config.go │ │ │ ├── cpi_config_test.go │ │ │ ├── create_env.go │ │ │ ├── create_env_test.go │ │ │ ├── create_release.go │ │ │ ├── create_release_test.go │ │ │ ├── delete_cmd.go │ │ │ ├── delete_cmd_test.go │ │ │ ├── delete_config.go │ │ │ ├── delete_config_test.go │ │ │ ├── delete_deployment.go │ │ │ ├── delete_deployment_test.go │ │ │ ├── delete_disk.go │ │ │ ├── delete_disk_test.go │ │ │ ├── delete_release.go │ │ │ ├── delete_release_test.go │ │ │ ├── delete_snapshot.go │ │ │ ├── delete_snapshot_test.go │ │ │ ├── delete_snapshots.go │ │ │ ├── delete_snapshots_test.go │ │ │ ├── delete_stemcell.go │ │ │ ├── delete_stemcell_test.go │ │ │ ├── delete_vm.go │ │ │ ├── delete_vm_test.go │ │ │ ├── deploy.go │ │ │ ├── deploy_test.go │ │ │ ├── deployment.go │ │ │ ├── deployment_deleter.go │ │ │ ├── deployment_deleteter_test.go │ │ │ ├── deployment_manifest_parser.go │ │ │ ├── deployment_preparer.go │ │ │ ├── deployment_test.go │ │ │ ├── deployments.go │ │ │ ├── deployments_table.go │ │ │ ├── deployments_test.go │ │ │ ├── diff_config.go │ │ │ ├── diff_config_test.go │ │ │ ├── dir_arg.go │ │ │ ├── dir_arg_test.go │ │ │ ├── disks.go │ │ │ ├── disks_test.go │ │ │ ├── downloader.go │ │ │ ├── downloader_test.go │ │ │ ├── env_factory.go │ │ │ ├── environment.go │ │ │ ├── environment_test.go │ │ │ ├── environments.go │ │ │ ├── environments_test.go │ │ │ ├── errands.go │ │ │ ├── errands_test.go │ │ │ ├── event.go │ │ │ ├── event_table.go │ │ │ ├── event_test.go │ │ │ ├── events.go │ │ │ ├── events_test.go │ │ │ ├── export_release.go │ │ │ ├── export_release_test.go │ │ │ ├── factory.go │ │ │ ├── factory_test.go │ │ │ ├── file_arg.go │ │ │ ├── file_arg_test.go │ │ │ ├── file_bytes_arg.go │ │ │ ├── file_bytes_arg_test.go │ │ │ ├── file_bytes_with_path_arg.go │ │ │ ├── file_bytes_with_path_arg_test.go │ │ │ ├── finalize_release.go │ │ │ ├── finalize_release_test.go │ │ │ ├── gateway_flags.go │ │ │ ├── generate_job.go │ │ │ ├── generate_job_test.go │ │ │ ├── generate_package.go │ │ │ ├── generate_package_test.go │ │ │ ├── ignore.go │ │ │ ├── ignore_test.go │ │ │ ├── info_table.go │ │ │ ├── info_table_test.go │ │ │ ├── init_release.go │ │ │ ├── init_release_test.go │ │ │ ├── inspect_release.go │ │ │ ├── inspect_release_test.go │ │ │ ├── instance_table.go │ │ │ ├── instance_table_test.go │ │ │ ├── instance_values.go │ │ │ ├── instance_values_test.go │ │ │ ├── instances.go │ │ │ ├── instances_test.go │ │ │ ├── interpolate.go │ │ │ ├── interpolate_test.go │ │ │ ├── locks.go │ │ │ ├── locks_test.go │ │ │ ├── log_in.go │ │ │ ├── log_in_test.go │ │ │ ├── log_out.go │ │ │ ├── log_out_test.go │ │ │ ├── logs.go │ │ │ ├── logs_test.go │ │ │ ├── manifest.go │ │ │ ├── manifest_test.go │ │ │ ├── mocks │ │ │ │ └── mocks.go │ │ │ ├── ops_file_arg.go │ │ │ ├── ops_file_arg_test.go │ │ │ ├── ops_flags.go │ │ │ ├── ops_flags_test.go │ │ │ ├── opts.go │ │ │ ├── opts_test.go │ │ │ ├── orphan_disk.go │ │ │ ├── orphan_disk_test.go │ │ │ ├── print_diff.go │ │ │ ├── recreate.go │ │ │ ├── recreate_test.go │ │ │ ├── redigest_release.go │ │ │ ├── redigest_release_test.go │ │ │ ├── release_manager.go │ │ │ ├── release_manager_test.go │ │ │ ├── release_set_and_installation_manifest_parser.go │ │ │ ├── release_tables.go │ │ │ ├── release_tables_test.go │ │ │ ├── releases.go │ │ │ ├── releases_test.go │ │ │ ├── remove_blob.go │ │ │ ├── remove_blob_test.go │ │ │ ├── repack_stemcell.go │ │ │ ├── repack_stemcell_test.go │ │ │ ├── reset_release.go │ │ │ ├── reset_release_test.go │ │ │ ├── restart.go │ │ │ ├── restart_test.go │ │ │ ├── run_errand.go │ │ │ ├── run_errand_test.go │ │ │ ├── runtime_config.go │ │ │ ├── runtime_config_test.go │ │ │ ├── scp.go │ │ │ ├── scp_test.go │ │ │ ├── session.go │ │ │ ├── session_context.go │ │ │ ├── session_context_test.go │ │ │ ├── session_factory.go │ │ │ ├── session_helpers_test.go │ │ │ ├── session_interface.go │ │ │ ├── session_test.go │ │ │ ├── snapshots.go │ │ │ ├── snapshots_test.go │ │ │ ├── ssh.go │ │ │ ├── ssh_test.go │ │ │ ├── start.go │ │ │ ├── start_test.go │ │ │ ├── stemcells.go │ │ │ ├── stemcells_test.go │ │ │ ├── stop.go │ │ │ ├── stop_test.go │ │ │ ├── suite_test.go │ │ │ ├── sync_blobs.go │ │ │ ├── sync_blobs_test.go │ │ │ ├── take_snapshot.go │ │ │ ├── take_snapshot_test.go │ │ │ ├── task.go │ │ │ ├── task_test.go │ │ │ ├── tasks.go │ │ │ ├── tasks_test.go │ │ │ ├── temp_root_configurator.go │ │ │ ├── temp_root_configurator_test.go │ │ │ ├── trimmed_space_args.go │ │ │ ├── trimmed_space_args_test.go │ │ │ ├── uaa_login_strategy.go │ │ │ ├── uaa_login_strategy_test.go │ │ │ ├── unignore.go │ │ │ ├── unignore_test.go │ │ │ ├── update_cloud_config.go │ │ │ ├── update_cloud_config_test.go │ │ │ ├── update_config.go │ │ │ ├── update_config_test.go │ │ │ ├── update_cpi_config.go │ │ │ ├── update_cpi_config_test.go │ │ │ ├── update_resurrection.go │ │ │ ├── update_resurrection_test.go │ │ │ ├── update_runtime_config.go │ │ │ ├── update_runtime_config_test.go │ │ │ ├── upload_blobs.go │ │ │ ├── upload_blobs_test.go │ │ │ ├── upload_release.go │ │ │ ├── upload_release_test.go │ │ │ ├── upload_stemcell.go │ │ │ ├── upload_stemcell_test.go │ │ │ ├── url_arg.go │ │ │ ├── url_arg_test.go │ │ │ ├── var_flags.go │ │ │ ├── var_flags_test.go │ │ │ ├── variables.go │ │ │ ├── variables_test.go │ │ │ ├── vars_cert_loader.go │ │ │ ├── vars_cert_loader_test.go │ │ │ ├── vars_fs_store.go │ │ │ ├── vars_fs_store_test.go │ │ │ ├── vendor_package.go │ │ │ ├── vendor_package_test.go │ │ │ ├── version.go │ │ │ ├── version_arg.go │ │ │ ├── version_arg_test.go │ │ │ ├── vms.go │ │ │ └── vms_test.go │ │ ├── common │ │ │ ├── net │ │ │ │ ├── ip_helper.go │ │ │ │ ├── ip_helper_test.go │ │ │ │ └── net_suite_test.go │ │ │ └── util │ │ │ │ ├── file_helper.go │ │ │ │ ├── file_helper_test.go │ │ │ │ └── util_suite_test.go │ │ ├── config │ │ │ ├── config_suite_test.go │ │ │ ├── deployment_repo.go │ │ │ ├── deployment_repo_test.go │ │ │ ├── deployment_state_service.go │ │ │ ├── disk_repo.go │ │ │ ├── disk_repo_test.go │ │ │ ├── fakes │ │ │ │ ├── fake_deployment_repo.go │ │ │ │ ├── fake_disk_repo.go │ │ │ │ ├── fake_release_repo.go │ │ │ │ ├── fake_stemcell_repo.go │ │ │ │ └── fake_vm_repo.go │ │ │ ├── file_system_deployment_state_service.go │ │ │ ├── file_system_deployment_state_service_test.go │ │ │ ├── legacy_deployment_state_migrator.go │ │ │ ├── legacy_deployment_state_migrator_test.go │ │ │ ├── mocks │ │ │ │ └── mocks.go │ │ │ ├── release_repo.go │ │ │ ├── release_repo_test.go │ │ │ ├── stemcell_repo.go │ │ │ ├── stemcell_repo_test.go │ │ │ ├── vm_repo.go │ │ │ └── vm_repo_test.go │ │ ├── cpi │ │ │ └── release │ │ │ │ ├── installer.go │ │ │ │ ├── installer_test.go │ │ │ │ ├── mocks │ │ │ │ └── mocks.go │ │ │ │ ├── release_suite_test.go │ │ │ │ ├── validator.go │ │ │ │ └── validator_test.go │ │ ├── crypto │ │ │ ├── crypto_suite_test.go │ │ │ ├── digest_calculator.go │ │ │ ├── digest_calculator_test.go │ │ │ └── fakes │ │ │ │ └── fake_digest_calculator.go │ │ ├── deployment │ │ │ ├── deployer.go │ │ │ ├── deployer_test.go │ │ │ ├── deployment.go │ │ │ ├── deployment_suite_test.go │ │ │ ├── deployment_test.go │ │ │ ├── disk │ │ │ │ ├── disk.go │ │ │ │ ├── disk_suite_test.go │ │ │ │ ├── disk_test.go │ │ │ │ ├── fakes │ │ │ │ │ ├── fake_disk.go │ │ │ │ │ ├── fake_manager.go │ │ │ │ │ └── fake_manager_factory.go │ │ │ │ ├── manager.go │ │ │ │ ├── manager_factory.go │ │ │ │ ├── manager_test.go │ │ │ │ └── mocks │ │ │ │ │ └── mocks.go │ │ │ ├── factory.go │ │ │ ├── fakes │ │ │ │ └── fake_vm_deployer.go │ │ │ ├── instance │ │ │ │ ├── factory.go │ │ │ │ ├── instance.go │ │ │ │ ├── instance_suite_test.go │ │ │ │ ├── instance_test.go │ │ │ │ ├── manager.go │ │ │ │ ├── manager_factory.go │ │ │ │ ├── manager_test.go │ │ │ │ ├── mocks │ │ │ │ │ └── mocks.go │ │ │ │ └── state │ │ │ │ │ ├── builder.go │ │ │ │ │ ├── builder_factory.go │ │ │ │ │ ├── builder_test.go │ │ │ │ │ ├── mocks │ │ │ │ │ └── mocks.go │ │ │ │ │ ├── remote_package_compiler.go │ │ │ │ │ ├── remote_package_compiler_test.go │ │ │ │ │ ├── state.go │ │ │ │ │ ├── state_suite_test.go │ │ │ │ │ └── state_test.go │ │ │ ├── manager.go │ │ │ ├── manager_factory.go │ │ │ ├── manager_test.go │ │ │ ├── manifest │ │ │ │ ├── deployment_suite_test.go │ │ │ │ ├── disk_pool.go │ │ │ │ ├── job.go │ │ │ │ ├── manifest.go │ │ │ │ ├── manifest_test.go │ │ │ │ ├── manifestfakes │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ ├── fake_parser.go │ │ │ │ │ └── fake_validator.go │ │ │ │ ├── network.go │ │ │ │ ├── network_test.go │ │ │ │ ├── parser.go │ │ │ │ ├── parser_test.go │ │ │ │ ├── resource_pool.go │ │ │ │ ├── validator.go │ │ │ │ ├── validator_test.go │ │ │ │ ├── watch_time.go │ │ │ │ └── watch_time_test.go │ │ │ ├── mocks │ │ │ │ └── mocks.go │ │ │ ├── record.go │ │ │ ├── record_test.go │ │ │ ├── release │ │ │ │ ├── job_resolver.go │ │ │ │ ├── job_resolver_test.go │ │ │ │ ├── mocks │ │ │ │ │ └── mocks.go │ │ │ │ └── release_suite_test.go │ │ │ ├── sshtunnel │ │ │ │ ├── fakes │ │ │ │ │ ├── fake_ssh_tunnel.go │ │ │ │ │ └── fake_ssh_tunnel_factory.go │ │ │ │ ├── ssh_tunnel.go │ │ │ │ └── ssh_tunnel_factory.go │ │ │ ├── template │ │ │ │ ├── deployment_template.go │ │ │ │ ├── deployment_template_factory.go │ │ │ │ ├── deployment_template_factory_test.go │ │ │ │ ├── deployment_template_test.go │ │ │ │ ├── interpolated_template.go │ │ │ │ ├── suite_test.go │ │ │ │ └── templatefakes │ │ │ │ │ └── fake_deployment_template_factory.go │ │ │ └── vm │ │ │ │ ├── disk_deployer.go │ │ │ │ ├── disk_deployer_test.go │ │ │ │ ├── fakes │ │ │ │ ├── fake_disk_deployer.go │ │ │ │ ├── fake_manager.go │ │ │ │ ├── fake_manager_factory.go │ │ │ │ └── fake_vm.go │ │ │ │ ├── manager.go │ │ │ │ ├── manager_factory.go │ │ │ │ ├── manager_test.go │ │ │ │ ├── mocks │ │ │ │ └── mocks.go │ │ │ │ ├── vm.go │ │ │ │ ├── vm_suite_test.go │ │ │ │ └── vm_test.go │ │ ├── director │ │ │ ├── adjustable_client.go │ │ │ ├── adjustable_client_test.go │ │ │ ├── all_or_pool_or_instance_slug.go │ │ │ ├── all_or_pool_or_instance_slug_test.go │ │ │ ├── archive_with_metadata.go │ │ │ ├── archive_with_metadata_test.go │ │ │ ├── auth_request_adjustment.go │ │ │ ├── auth_request_adjustment_test.go │ │ │ ├── client.go │ │ │ ├── client_request.go │ │ │ ├── client_request_test.go │ │ │ ├── cloud_configs.go │ │ │ ├── cloud_configs_test.go │ │ │ ├── config_diff.go │ │ │ ├── configs.go │ │ │ ├── configs_test.go │ │ │ ├── cpi_configs.go │ │ │ ├── cpi_configs_test.go │ │ │ ├── curl.go │ │ │ ├── deployment.go │ │ │ ├── deployment_test.go │ │ │ ├── deployments.go │ │ │ ├── deployments_test.go │ │ │ ├── diff.go │ │ │ ├── diff_config.go │ │ │ ├── diff_config_test.go │ │ │ ├── diff_test.go │ │ │ ├── director.go │ │ │ ├── director_test.go │ │ │ ├── directorfakes │ │ │ │ ├── fake_adjusted_client.go │ │ │ │ ├── fake_adjustment.go │ │ │ │ ├── fake_bosh_logger.go │ │ │ │ ├── fake_deployment.go │ │ │ │ ├── fake_director.go │ │ │ │ ├── fake_event.go │ │ │ │ ├── fake_file_reporter.go │ │ │ │ ├── fake_orphan_disk.go │ │ │ │ ├── fake_release.go │ │ │ │ ├── fake_release_archive.go │ │ │ │ ├── fake_release_series.go │ │ │ │ ├── fake_stemcell.go │ │ │ │ ├── fake_stemcell_archive.go │ │ │ │ ├── fake_task.go │ │ │ │ └── fake_task_reporter.go │ │ │ ├── errands.go │ │ │ ├── errands_test.go │ │ │ ├── events.go │ │ │ ├── events_test.go │ │ │ ├── factory.go │ │ │ ├── factory_config.go │ │ │ ├── factory_config_test.go │ │ │ ├── factory_helpers_test.go │ │ │ ├── factory_test.go │ │ │ ├── info.go │ │ │ ├── info_test.go │ │ │ ├── instance_slug.go │ │ │ ├── instance_slug_test.go │ │ │ ├── instances.go │ │ │ ├── instances_test.go │ │ │ ├── interfaces.go │ │ │ ├── locks.go │ │ │ ├── locks_test.go │ │ │ ├── manifest.go │ │ │ ├── manifest_test.go │ │ │ ├── noop_reporters.go │ │ │ ├── orphan_disks.go │ │ │ ├── orphan_disks_test.go │ │ │ ├── os_version_slug.go │ │ │ ├── os_version_slug_test.go │ │ │ ├── packages.go │ │ │ ├── packages_test.go │ │ │ ├── pool_or_instance_slug.go │ │ │ ├── pool_or_instance_slug_test.go │ │ │ ├── pool_slug.go │ │ │ ├── pool_slug_test.go │ │ │ ├── problems.go │ │ │ ├── problems_test.go │ │ │ ├── release_or_series_slug.go │ │ │ ├── release_or_series_slug_test.go │ │ │ ├── release_series.go │ │ │ ├── release_series_slug.go │ │ │ ├── release_series_slug_test.go │ │ │ ├── release_series_test.go │ │ │ ├── release_slug.go │ │ │ ├── release_slug_test.go │ │ │ ├── releases.go │ │ │ ├── releases_test.go │ │ │ ├── request_sanitizer.go │ │ │ ├── request_sanitizer_test.go │ │ │ ├── runtime_configs.go │ │ │ ├── runtime_configs_test.go │ │ │ ├── skip_drain.go │ │ │ ├── skip_drain_test.go │ │ │ ├── snapshots.go │ │ │ ├── snapshots_test.go │ │ │ ├── ssh.go │ │ │ ├── ssh_opts.go │ │ │ ├── ssh_opts_test.go │ │ │ ├── ssh_test.go │ │ │ ├── stemcell_slug.go │ │ │ ├── stemcell_slug_test.go │ │ │ ├── stemcells.go │ │ │ ├── stemcells_test.go │ │ │ ├── suite_test.go │ │ │ ├── task_client_request.go │ │ │ ├── task_client_request_test.go │ │ │ ├── task_helpers_test.go │ │ │ ├── tasks.go │ │ │ ├── tasks_test.go │ │ │ ├── template │ │ │ │ ├── multi_vars.go │ │ │ │ ├── multi_vars_test.go │ │ │ │ ├── static_vars.go │ │ │ │ ├── static_vars_test.go │ │ │ │ ├── suite_test.go │ │ │ │ ├── template.go │ │ │ │ ├── template_test.go │ │ │ │ ├── var_file_arg.go │ │ │ │ ├── var_file_arg_test.go │ │ │ │ ├── var_kv.go │ │ │ │ ├── var_kv_test.go │ │ │ │ ├── variables.go │ │ │ │ ├── vars_env_arg.go │ │ │ │ ├── vars_env_arg_test.go │ │ │ │ ├── vars_file_arg.go │ │ │ │ └── vars_file_arg_test.go │ │ │ ├── time_parser.go │ │ │ ├── time_parser_test.go │ │ │ ├── vm.go │ │ │ ├── vm_test.go │ │ │ ├── vms.go │ │ │ └── vms_test.go │ │ ├── docs │ │ │ ├── architecture.md │ │ │ ├── bosh-init-delete-flow.graffle │ │ │ ├── bosh-init-delete-flow.png │ │ │ ├── bosh-init-deploy-flow.graffle │ │ │ ├── bosh-init-deploy-flow.png │ │ │ ├── bosh-init-packages.graffle │ │ │ ├── bosh-init-packages.png │ │ │ ├── build.md │ │ │ ├── cli_workflow.md │ │ │ ├── example.go │ │ │ ├── init-cli-flow.graffle │ │ │ ├── init-cli-flow.png │ │ │ └── test.md │ │ ├── index │ │ │ ├── file_index.go │ │ │ ├── file_index_test.go │ │ │ ├── in_memory_index.go │ │ │ ├── in_memory_index_test.go │ │ │ ├── index_interface.go │ │ │ ├── index_suite_test.go │ │ │ └── test_helpers_test.go │ │ ├── installation │ │ │ ├── blobextract │ │ │ │ ├── extractor.go │ │ │ │ ├── extractor_test.go │ │ │ │ ├── fakeblobextract │ │ │ │ │ └── fake_extractor.go │ │ │ │ └── suite_test.go │ │ │ ├── installation.go │ │ │ ├── installation_test.go │ │ │ ├── installer.go │ │ │ ├── installer_factory.go │ │ │ ├── installer_test.go │ │ │ ├── job_renderer.go │ │ │ ├── job_renderer_test.go │ │ │ ├── job_resolver.go │ │ │ ├── job_resolver_test.go │ │ │ ├── manifest │ │ │ │ ├── fakes │ │ │ │ │ ├── fake_parser.go │ │ │ │ │ └── fake_validator.go │ │ │ │ ├── manifest.go │ │ │ │ ├── parser.go │ │ │ │ ├── parser_test.go │ │ │ │ ├── suite_test.go │ │ │ │ ├── validator.go │ │ │ │ └── validator_test.go │ │ │ ├── mocks │ │ │ │ └── mocks.go │ │ │ ├── package_compiler.go │ │ │ ├── package_compiler_test.go │ │ │ ├── release_fetcher.go │ │ │ ├── release_manager.go │ │ │ ├── release_manager_test.go │ │ │ ├── suite_test.go │ │ │ ├── tarball │ │ │ │ ├── cache.go │ │ │ │ ├── cache_test.go │ │ │ │ ├── mocks │ │ │ │ │ └── mocks.go │ │ │ │ ├── provider.go │ │ │ │ ├── provider_test.go │ │ │ │ └── suite_test.go │ │ │ ├── target.go │ │ │ ├── target_provider.go │ │ │ ├── target_provider_test.go │ │ │ ├── target_test.go │ │ │ ├── uninstaller.go │ │ │ └── uninstaller_test.go │ │ ├── integration │ │ │ ├── assets │ │ │ │ ├── small-sha128-compiled-release.tgz │ │ │ │ ├── small-sha128-release.tgz │ │ │ │ ├── small-sha256-compiled-release.tgz │ │ │ │ └── small-sha256-release.tgz │ │ │ ├── create_env_test.go │ │ │ ├── create_release_test.go │ │ │ ├── https_helpers_test.go │ │ │ ├── interpolate_test.go │ │ │ ├── sha1ify_release_test.go │ │ │ ├── sha2ify_release_test.go │ │ │ ├── suite_test.go │ │ │ ├── task_test.go │ │ │ ├── upload_release_test.go │ │ │ └── vendor_package_test.go │ │ ├── logger │ │ │ ├── signalable_logger.go │ │ │ ├── signalable_logger_test.go │ │ │ └── suite_test.go │ │ ├── main.go │ │ ├── registry │ │ │ ├── instance_handler.go │ │ │ ├── mocks │ │ │ │ └── mocks.go │ │ │ ├── registry.go │ │ │ ├── registry_suite_test.go │ │ │ ├── server.go │ │ │ └── server_test.go │ │ ├── release │ │ │ ├── archive_reader.go │ │ │ ├── archive_reader_test.go │ │ │ ├── archive_writer.go │ │ │ ├── archive_writer_test.go │ │ │ ├── built_reader.go │ │ │ ├── built_reader_test.go │ │ │ ├── dir_reader.go │ │ │ ├── dir_reader_test.go │ │ │ ├── interfaces.go │ │ │ ├── job │ │ │ │ ├── archive_reader.go │ │ │ │ ├── archive_reader_test.go │ │ │ │ ├── dir_reader.go │ │ │ │ ├── dir_reader_test.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── job.go │ │ │ │ ├── job_test.go │ │ │ │ ├── jobfakes │ │ │ │ │ ├── fake_archive_reader.go │ │ │ │ │ └── fake_dir_reader.go │ │ │ │ ├── manifest │ │ │ │ │ ├── manifest.go │ │ │ │ │ ├── manifest_test.go │ │ │ │ │ └── suite_test.go │ │ │ │ └── suite_test.go │ │ │ ├── license │ │ │ │ ├── dir_reader.go │ │ │ │ ├── dir_reader_test.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── license.go │ │ │ │ ├── license_test.go │ │ │ │ ├── licensefakes │ │ │ │ │ └── fake_dir_reader.go │ │ │ │ └── suite_test.go │ │ │ ├── manifest │ │ │ │ ├── release.go │ │ │ │ ├── release_ref.go │ │ │ │ ├── release_test.go │ │ │ │ └── suite_test.go │ │ │ ├── manifest_reader.go │ │ │ ├── manifest_reader_test.go │ │ │ ├── mocks │ │ │ │ └── mocks.go │ │ │ ├── multi_reader.go │ │ │ ├── multi_reader_test.go │ │ │ ├── provider.go │ │ │ ├── release.go │ │ │ ├── release_test.go │ │ │ ├── releasefakes │ │ │ │ ├── fake_reader.go │ │ │ │ ├── fake_release.go │ │ │ │ └── fake_writer.go │ │ │ ├── resource │ │ │ │ ├── archive.go │ │ │ │ ├── archive_test.go │ │ │ │ ├── file.go │ │ │ │ ├── file_test.go │ │ │ │ ├── fingerprint.go │ │ │ │ ├── fingerprint_test.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── resource.go │ │ │ │ ├── resource_test.go │ │ │ │ ├── resourcefakes │ │ │ │ │ ├── fake_archive.go │ │ │ │ │ ├── fake_archive_index.go │ │ │ │ │ ├── fake_fingerprinter.go │ │ │ │ │ └── fake_resource.go │ │ │ │ └── suite_test.go │ │ │ ├── set │ │ │ │ └── manifest │ │ │ │ │ ├── fakes │ │ │ │ │ ├── fake_parser.go │ │ │ │ │ └── fake_validator.go │ │ │ │ │ ├── manifest.go │ │ │ │ │ ├── parser.go │ │ │ │ │ ├── parser_test.go │ │ │ │ │ ├── suite_test.go │ │ │ │ │ ├── validator.go │ │ │ │ │ └── validator_test.go │ │ │ └── suite_test.go │ │ ├── releasedir │ │ │ ├── err_blobstore.go │ │ │ ├── err_blobstore_test.go │ │ │ ├── fs_blobs_dir.go │ │ │ ├── fs_blobs_dir_test.go │ │ │ ├── fs_config.go │ │ │ ├── fs_config_test.go │ │ │ ├── fs_generator.go │ │ │ ├── fs_generator_test.go │ │ │ ├── fs_release_dir.go │ │ │ ├── fs_release_dir_test.go │ │ │ ├── fs_release_index.go │ │ │ ├── fs_release_index_test.go │ │ │ ├── gcs_blobstore.go │ │ │ ├── git_repo.go │ │ │ ├── git_repo_test.go │ │ │ ├── index │ │ │ │ ├── fs_index.go │ │ │ │ ├── fs_index_blobs.go │ │ │ │ ├── fs_index_blobs_test.go │ │ │ │ ├── fs_index_test.go │ │ │ │ ├── indexfakes │ │ │ │ │ ├── fake_index.go │ │ │ │ │ ├── fake_index_blobs.go │ │ │ │ │ └── fake_reporter.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── provider.go │ │ │ │ └── suite_test.go │ │ │ ├── interfaces.go │ │ │ ├── provider.go │ │ │ ├── releasedirfakes │ │ │ │ ├── fake_blobs_dir.go │ │ │ │ ├── fake_blobs_dir_reporter.go │ │ │ │ ├── fake_config.go │ │ │ │ ├── fake_digest_blobstore.go │ │ │ │ ├── fake_generator.go │ │ │ │ ├── fake_git_repo.go │ │ │ │ ├── fake_release_dir.go │ │ │ │ ├── fake_release_index.go │ │ │ │ └── fake_release_index_reporter.go │ │ │ ├── s3_blobstore.go │ │ │ └── suite_test.go │ │ ├── repos │ │ │ └── directors.go │ │ ├── ssh │ │ │ ├── client.go │ │ │ ├── client_factory.go │ │ │ ├── client_test.go │ │ │ ├── combo_runner.go │ │ │ ├── combo_runner_test.go │ │ │ ├── interactive.go │ │ │ ├── interfaces.go │ │ │ ├── non_interactive.go │ │ │ ├── printable_host.go │ │ │ ├── provider.go │ │ │ ├── results_writer.go │ │ │ ├── scp.go │ │ │ ├── scp_args.go │ │ │ ├── scp_args_test.go │ │ │ ├── session.go │ │ │ ├── session_test.go │ │ │ ├── ssh_args.go │ │ │ ├── ssh_args_test.go │ │ │ ├── sshfakes │ │ │ │ ├── fake_runner.go │ │ │ │ ├── fake_scprunner.go │ │ │ │ └── fake_session.go │ │ │ ├── streaming_writer.go │ │ │ └── suite_test.go │ │ ├── state │ │ │ └── job │ │ │ │ ├── dependency_compiler.go │ │ │ │ ├── dependency_compiler_test.go │ │ │ │ ├── mocks │ │ │ │ └── mocks.go │ │ │ │ └── suite_test.go │ │ ├── stemcell │ │ │ ├── cloud_stemcell.go │ │ │ ├── cloud_stemcell_test.go │ │ │ ├── extractor.go │ │ │ ├── extractor_test.go │ │ │ ├── fetcher.go │ │ │ ├── manager.go │ │ │ ├── manager_factory.go │ │ │ ├── manager_test.go │ │ │ ├── mocks │ │ │ │ └── mocks.go │ │ │ ├── reader.go │ │ │ ├── reader_test.go │ │ │ ├── stemcell.go │ │ │ ├── stemcell_suite_test.go │ │ │ ├── stemcell_test.go │ │ │ └── stemcellfakes │ │ │ │ ├── fake_cloud_stemcell.go │ │ │ │ ├── fake_extracted_stemcell.go │ │ │ │ ├── fake_extractor.go │ │ │ │ ├── fake_manager.go │ │ │ │ ├── fake_manager_factory.go │ │ │ │ └── fake_reader.go │ │ ├── templatescompiler │ │ │ ├── erbrenderer │ │ │ │ ├── erb_renderer.go │ │ │ │ ├── erb_renderer_test.go │ │ │ │ ├── erbrenderer_suite_test.go │ │ │ │ ├── fakes │ │ │ │ │ ├── fake_erb_renderer.go │ │ │ │ │ └── fake_template_evaluation_context.go │ │ │ │ ├── template_evaluation_context.go │ │ │ │ └── template_evaluation_context_rb.go │ │ │ ├── job_evaluation_context.go │ │ │ ├── job_evaluation_context_test.go │ │ │ ├── job_list_renderer.go │ │ │ ├── job_list_renderer_test.go │ │ │ ├── job_renderer.go │ │ │ ├── job_renderer_test.go │ │ │ ├── mocks │ │ │ │ └── mocks.go │ │ │ ├── rendered_job.go │ │ │ ├── rendered_job_list.go │ │ │ ├── rendered_job_list_archive.go │ │ │ ├── rendered_job_list_archive_test.go │ │ │ ├── rendered_job_list_compressor.go │ │ │ ├── rendered_job_list_compressor_test.go │ │ │ ├── rendered_job_list_test.go │ │ │ ├── rendered_job_test.go │ │ │ └── suite_test.go │ │ ├── test_support │ │ │ ├── mocks │ │ │ │ └── mocks.go │ │ │ └── spy.go │ │ ├── testutils │ │ │ ├── generate.go │ │ │ ├── marshal_to_string.go │ │ │ ├── mocks │ │ │ │ └── mocks.go │ │ │ ├── run.go │ │ │ ├── stemcell_creator.go │ │ │ └── tar_verifier.go │ │ ├── uaa │ │ │ ├── access_token_session.go │ │ │ ├── access_token_session_test.go │ │ │ ├── client.go │ │ │ ├── client_request.go │ │ │ ├── client_request_test.go │ │ │ ├── client_token_session.go │ │ │ ├── client_token_session_test.go │ │ │ ├── factory.go │ │ │ ├── factory_config.go │ │ │ ├── factory_config_test.go │ │ │ ├── factory_helpers_test.go │ │ │ ├── factory_test.go │ │ │ ├── interfaces.go │ │ │ ├── prompts.go │ │ │ ├── prompts_test.go │ │ │ ├── suite_test.go │ │ │ ├── token.go │ │ │ ├── token_test.go │ │ │ ├── uaa.go │ │ │ ├── uaa_test.go │ │ │ └── uaafakes │ │ │ │ ├── fake_access_token.go │ │ │ │ ├── fake_token.go │ │ │ │ └── fake_uaa.go │ │ ├── ui │ │ │ ├── blobs_reporter.go │ │ │ ├── blobs_reporter_test.go │ │ │ ├── color_ui.go │ │ │ ├── combo_writer.go │ │ │ ├── combo_writer_test.go │ │ │ ├── conf_ui.go │ │ │ ├── fakes │ │ │ │ ├── fake_stage.go │ │ │ │ ├── fake_ui.go │ │ │ │ └── matchers.go │ │ │ ├── file_reporter.go │ │ │ ├── file_reporter_test.go │ │ │ ├── fmt │ │ │ │ ├── error.go │ │ │ │ ├── error_test.go │ │ │ │ ├── suite_test.go │ │ │ │ ├── time.go │ │ │ │ └── time_test.go │ │ │ ├── indenting_ui.go │ │ │ ├── indenting_ui_test.go │ │ │ ├── index_reporter.go │ │ │ ├── index_reporter_test.go │ │ │ ├── interfaces.go │ │ │ ├── json_ui.go │ │ │ ├── json_ui_test.go │ │ │ ├── non_interactive.go │ │ │ ├── non_interactive_test.go │ │ │ ├── non_tty_ui.go │ │ │ ├── non_tty_ui_test.go │ │ │ ├── padding_ui.go │ │ │ ├── release_index_reporter.go │ │ │ ├── release_index_reporter_test.go │ │ │ ├── skip_stage_error.go │ │ │ ├── stage.go │ │ │ ├── stage_test.go │ │ │ ├── suite_test.go │ │ │ ├── table │ │ │ │ ├── headers.go │ │ │ │ ├── headers_test.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── sorting.go │ │ │ │ ├── sorting_test.go │ │ │ │ ├── suite_test.go │ │ │ │ ├── table.go │ │ │ │ ├── table_test.go │ │ │ │ ├── values.go │ │ │ │ ├── values_test.go │ │ │ │ ├── writer.go │ │ │ │ └── writer_test.go │ │ │ ├── task │ │ │ │ ├── event.go │ │ │ │ ├── event_test.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── reporter.go │ │ │ │ ├── reporter_test.go │ │ │ │ ├── suite_test.go │ │ │ │ └── taskfakes │ │ │ │ │ └── fake_reporter.go │ │ │ ├── ui.go │ │ │ └── ui_test.go │ │ ├── vendor │ │ │ ├── cloud.google.com │ │ │ │ └── go │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── appveyor.yml │ │ │ │ │ ├── authexample_test.go │ │ │ │ │ ├── cloud.go │ │ │ │ │ ├── compute │ │ │ │ │ └── metadata │ │ │ │ │ │ ├── metadata.go │ │ │ │ │ │ └── metadata_test.go │ │ │ │ │ ├── iam │ │ │ │ │ ├── iam.go │ │ │ │ │ └── iam_test.go │ │ │ │ │ ├── internal │ │ │ │ │ ├── optional │ │ │ │ │ │ ├── optional.go │ │ │ │ │ │ └── optional_test.go │ │ │ │ │ ├── retry.go │ │ │ │ │ ├── retry_test.go │ │ │ │ │ └── version │ │ │ │ │ │ ├── update_version.sh │ │ │ │ │ │ ├── version.go │ │ │ │ │ │ └── version_test.go │ │ │ │ │ ├── key.json.enc │ │ │ │ │ ├── license_test.go │ │ │ │ │ ├── old-news.md │ │ │ │ │ ├── run-tests.sh │ │ │ │ │ └── storage │ │ │ │ │ ├── acl.go │ │ │ │ │ ├── bucket.go │ │ │ │ │ ├── bucket_test.go │ │ │ │ │ ├── copy.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── go17.go │ │ │ │ │ ├── iam.go │ │ │ │ │ ├── integration_test.go │ │ │ │ │ ├── invoke.go │ │ │ │ │ ├── invoke_test.go │ │ │ │ │ ├── not_go17.go │ │ │ │ │ ├── reader.go │ │ │ │ │ ├── storage.go │ │ │ │ │ ├── storage_test.go │ │ │ │ │ ├── writer.go │ │ │ │ │ └── writer_test.go │ │ │ ├── code.cloudfoundry.org │ │ │ │ ├── clock │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── NOTICE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── clock.go │ │ │ │ │ ├── fakeclock │ │ │ │ │ │ ├── fake_clock.go │ │ │ │ │ │ ├── fake_clock_test.go │ │ │ │ │ │ ├── fake_ticker.go │ │ │ │ │ │ ├── fake_ticker_test.go │ │ │ │ │ │ ├── fake_timer.go │ │ │ │ │ │ ├── fake_timer_test.go │ │ │ │ │ │ ├── fakeclock_suite_test.go │ │ │ │ │ │ └── package.go │ │ │ │ │ ├── package.go │ │ │ │ │ ├── ticker.go │ │ │ │ │ └── timer.go │ │ │ │ └── workpool │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── NOTICE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── package.go │ │ │ │ │ ├── throttler.go │ │ │ │ │ ├── throttler_test.go │ │ │ │ │ ├── workpool.go │ │ │ │ │ ├── workpool_suite_test.go │ │ │ │ │ └── workpool_test.go │ │ │ ├── github.com │ │ │ │ ├── armon │ │ │ │ │ └── go-socks5 │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── auth.go │ │ │ │ │ │ ├── auth_test.go │ │ │ │ │ │ ├── credentials.go │ │ │ │ │ │ ├── credentials_test.go │ │ │ │ │ │ ├── request.go │ │ │ │ │ │ ├── request_test.go │ │ │ │ │ │ ├── resolver.go │ │ │ │ │ │ ├── resolver_test.go │ │ │ │ │ │ ├── ruleset.go │ │ │ │ │ │ ├── ruleset_test.go │ │ │ │ │ │ ├── socks5.go │ │ │ │ │ │ └── socks5_test.go │ │ │ │ ├── aws │ │ │ │ │ └── aws-sdk-go │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .godoc_config │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── CHANGELOG_PENDING.md │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── NOTICE.txt │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── aws │ │ │ │ │ │ ├── awserr │ │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── awsutil │ │ │ │ │ │ │ ├── copy.go │ │ │ │ │ │ │ ├── copy_test.go │ │ │ │ │ │ │ ├── equal.go │ │ │ │ │ │ │ ├── equal_test.go │ │ │ │ │ │ │ ├── path_value.go │ │ │ │ │ │ │ ├── path_value_test.go │ │ │ │ │ │ │ ├── prettify.go │ │ │ │ │ │ │ └── string_value.go │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ │ ├── client_test.go │ │ │ │ │ │ │ ├── default_retryer.go │ │ │ │ │ │ │ ├── logger.go │ │ │ │ │ │ │ ├── logger_test.go │ │ │ │ │ │ │ └── metadata │ │ │ │ │ │ │ │ └── client_info.go │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ ├── config_test.go │ │ │ │ │ │ ├── context.go │ │ │ │ │ │ ├── context_1_6.go │ │ │ │ │ │ ├── context_1_7.go │ │ │ │ │ │ ├── context_test.go │ │ │ │ │ │ ├── convert_types.go │ │ │ │ │ │ ├── convert_types_test.go │ │ │ │ │ │ ├── corehandlers │ │ │ │ │ │ │ ├── handlers.go │ │ │ │ │ │ │ ├── handlers_1_8_test.go │ │ │ │ │ │ │ ├── handlers_test.go │ │ │ │ │ │ │ ├── param_validator.go │ │ │ │ │ │ │ └── param_validator_test.go │ │ │ │ │ │ ├── credentials │ │ │ │ │ │ │ ├── chain_provider.go │ │ │ │ │ │ │ ├── chain_provider_test.go │ │ │ │ │ │ │ ├── credentials.go │ │ │ │ │ │ │ ├── credentials_test.go │ │ │ │ │ │ │ ├── ec2rolecreds │ │ │ │ │ │ │ │ ├── ec2_role_provider.go │ │ │ │ │ │ │ │ └── ec2_role_provider_test.go │ │ │ │ │ │ │ ├── endpointcreds │ │ │ │ │ │ │ │ ├── provider.go │ │ │ │ │ │ │ │ └── provider_test.go │ │ │ │ │ │ │ ├── env_provider.go │ │ │ │ │ │ │ ├── env_provider_test.go │ │ │ │ │ │ │ ├── example.ini │ │ │ │ │ │ │ ├── shared_credentials_provider.go │ │ │ │ │ │ │ ├── shared_credentials_provider_test.go │ │ │ │ │ │ │ ├── static_provider.go │ │ │ │ │ │ │ ├── static_provider_test.go │ │ │ │ │ │ │ └── stscreds │ │ │ │ │ │ │ │ ├── assume_role_provider.go │ │ │ │ │ │ │ │ └── assume_role_provider_test.go │ │ │ │ │ │ ├── defaults │ │ │ │ │ │ │ ├── defaults.go │ │ │ │ │ │ │ ├── defaults_test.go │ │ │ │ │ │ │ └── shared_config.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── ec2metadata │ │ │ │ │ │ │ ├── api.go │ │ │ │ │ │ │ ├── api_test.go │ │ │ │ │ │ │ ├── service.go │ │ │ │ │ │ │ └── service_test.go │ │ │ │ │ │ ├── endpoints │ │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ │ ├── decode_test.go │ │ │ │ │ │ │ ├── defaults.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── endpoints.go │ │ │ │ │ │ │ ├── endpoints_test.go │ │ │ │ │ │ │ ├── example_test.go │ │ │ │ │ │ │ ├── v3model.go │ │ │ │ │ │ │ ├── v3model_codegen.go │ │ │ │ │ │ │ └── v3model_test.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── jsonvalue.go │ │ │ │ │ │ ├── logger.go │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ ├── connection_reset_error.go │ │ │ │ │ │ │ ├── connection_reset_error_other.go │ │ │ │ │ │ │ ├── connection_reset_error_other_test.go │ │ │ │ │ │ │ ├── connection_reset_error_test.go │ │ │ │ │ │ │ ├── handlers.go │ │ │ │ │ │ │ ├── handlers_test.go │ │ │ │ │ │ │ ├── http_request.go │ │ │ │ │ │ │ ├── http_request_copy_test.go │ │ │ │ │ │ │ ├── http_request_retry_test.go │ │ │ │ │ │ │ ├── offset_reader.go │ │ │ │ │ │ │ ├── offset_reader_test.go │ │ │ │ │ │ │ ├── request.go │ │ │ │ │ │ │ ├── request_1_5_test.go │ │ │ │ │ │ │ ├── request_1_6_test.go │ │ │ │ │ │ │ ├── request_1_7.go │ │ │ │ │ │ │ ├── request_1_7_test.go │ │ │ │ │ │ │ ├── request_1_8.go │ │ │ │ │ │ │ ├── request_1_8_test.go │ │ │ │ │ │ │ ├── request_context.go │ │ │ │ │ │ │ ├── request_context_1_6.go │ │ │ │ │ │ │ ├── request_context_test.go │ │ │ │ │ │ │ ├── request_internal_test.go │ │ │ │ │ │ │ ├── request_pagination.go │ │ │ │ │ │ │ ├── request_pagination_test.go │ │ │ │ │ │ │ ├── request_resetbody_test.go │ │ │ │ │ │ │ ├── request_test.go │ │ │ │ │ │ │ ├── retryer.go │ │ │ │ │ │ │ ├── retryer_test.go │ │ │ │ │ │ │ ├── timeout_read_closer.go │ │ │ │ │ │ │ ├── timeout_read_closer_benchmark_test.go │ │ │ │ │ │ │ ├── timeout_read_closer_test.go │ │ │ │ │ │ │ ├── validation.go │ │ │ │ │ │ │ ├── waiter.go │ │ │ │ │ │ │ └── waiter_test.go │ │ │ │ │ │ ├── session │ │ │ │ │ │ │ ├── custom_ca_bundle_test.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── env_config.go │ │ │ │ │ │ │ ├── env_config_test.go │ │ │ │ │ │ │ ├── session.go │ │ │ │ │ │ │ ├── session_test.go │ │ │ │ │ │ │ ├── shared_config.go │ │ │ │ │ │ │ └── shared_config_test.go │ │ │ │ │ │ ├── signer │ │ │ │ │ │ │ └── v4 │ │ │ │ │ │ │ │ ├── functional_1_5_test.go │ │ │ │ │ │ │ │ ├── functional_test.go │ │ │ │ │ │ │ │ ├── header_rules.go │ │ │ │ │ │ │ │ ├── header_rules_test.go │ │ │ │ │ │ │ │ ├── options.go │ │ │ │ │ │ │ │ ├── uri_path.go │ │ │ │ │ │ │ │ ├── v4.go │ │ │ │ │ │ │ │ └── v4_test.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── types_test.go │ │ │ │ │ │ ├── url.go │ │ │ │ │ │ ├── url_1_7.go │ │ │ │ │ │ └── version.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── internal │ │ │ │ │ │ └── shareddefaults │ │ │ │ │ │ │ ├── shared_config.go │ │ │ │ │ │ │ ├── shared_config_other_test.go │ │ │ │ │ │ │ └── shared_config_windows_test.go │ │ │ │ │ │ ├── private │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── protocol │ │ │ │ │ │ │ ├── idempotency.go │ │ │ │ │ │ │ ├── idempotency_test.go │ │ │ │ │ │ │ ├── protocol_test.go │ │ │ │ │ │ │ ├── query │ │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ │ ├── build_test.go │ │ │ │ │ │ │ ├── queryutil │ │ │ │ │ │ │ │ └── queryutil.go │ │ │ │ │ │ │ ├── unmarshal.go │ │ │ │ │ │ │ ├── unmarshal_error.go │ │ │ │ │ │ │ └── unmarshal_test.go │ │ │ │ │ │ │ ├── rest │ │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ │ ├── build_test.go │ │ │ │ │ │ │ ├── payload.go │ │ │ │ │ │ │ ├── rest_test.go │ │ │ │ │ │ │ └── unmarshal.go │ │ │ │ │ │ │ ├── restxml │ │ │ │ │ │ │ ├── build_bench_test.go │ │ │ │ │ │ │ ├── build_test.go │ │ │ │ │ │ │ ├── restxml.go │ │ │ │ │ │ │ └── unmarshal_test.go │ │ │ │ │ │ │ ├── unmarshal.go │ │ │ │ │ │ │ ├── unmarshal_test.go │ │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ └── xmlutil │ │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ │ ├── unmarshal.go │ │ │ │ │ │ │ ├── unmarshal_test.go │ │ │ │ │ │ │ ├── xml_to_struct.go │ │ │ │ │ │ │ └── xml_to_struct_test.go │ │ │ │ │ │ └── service │ │ │ │ │ │ ├── generate.go │ │ │ │ │ │ ├── s3 │ │ │ │ │ │ ├── api.go │ │ │ │ │ │ ├── bucket_location.go │ │ │ │ │ │ ├── bucket_location_test.go │ │ │ │ │ │ ├── content_md5.go │ │ │ │ │ │ ├── customizations.go │ │ │ │ │ │ ├── customizations_test.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── doc_custom.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── examples_test.go │ │ │ │ │ │ ├── host_style_bucket.go │ │ │ │ │ │ ├── host_style_bucket_test.go │ │ │ │ │ │ ├── platform_handlers.go │ │ │ │ │ │ ├── platform_handlers_go1.6.go │ │ │ │ │ │ ├── platform_handlers_go1.6_test.go │ │ │ │ │ │ ├── s3iface │ │ │ │ │ │ │ └── interface.go │ │ │ │ │ │ ├── s3manager │ │ │ │ │ │ │ ├── batch.go │ │ │ │ │ │ │ ├── batch_test.go │ │ │ │ │ │ │ ├── bucket_region.go │ │ │ │ │ │ │ ├── bucket_region_test.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── download.go │ │ │ │ │ │ │ ├── download_test.go │ │ │ │ │ │ │ ├── shared_test.go │ │ │ │ │ │ │ ├── upload.go │ │ │ │ │ │ │ └── upload_test.go │ │ │ │ │ │ ├── service.go │ │ │ │ │ │ ├── sse.go │ │ │ │ │ │ ├── sse_test.go │ │ │ │ │ │ ├── statusok_error.go │ │ │ │ │ │ ├── statusok_error_test.go │ │ │ │ │ │ ├── unmarshal_error.go │ │ │ │ │ │ ├── unmarshal_error_leak_test.go │ │ │ │ │ │ ├── unmarshal_error_test.go │ │ │ │ │ │ └── waiters.go │ │ │ │ │ │ └── sts │ │ │ │ │ │ ├── api.go │ │ │ │ │ │ ├── customizations.go │ │ │ │ │ │ ├── customizations_test.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── examples_test.go │ │ │ │ │ │ └── service.go │ │ │ │ ├── bmatcuk │ │ │ │ │ └── doublestar │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── doublestar.go │ │ │ │ │ │ └── doublestar_test.go │ │ │ │ ├── charlievieth │ │ │ │ │ └── fs │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── fs.go │ │ │ │ │ │ ├── fs_test.go │ │ │ │ │ │ ├── fs_unix.go │ │ │ │ │ │ ├── fs_windows.go │ │ │ │ │ │ └── fs_windows_test.go │ │ │ │ ├── cheggaaa │ │ │ │ │ └── pb │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── example_copy_test.go │ │ │ │ │ │ ├── example_multiple_test.go │ │ │ │ │ │ ├── example_test.go │ │ │ │ │ │ ├── format.go │ │ │ │ │ │ ├── format_test.go │ │ │ │ │ │ ├── pb.go │ │ │ │ │ │ ├── pb_appengine.go │ │ │ │ │ │ ├── pb_nix.go │ │ │ │ │ │ ├── pb_solaris.go │ │ │ │ │ │ ├── pb_test.go │ │ │ │ │ │ ├── pb_win.go │ │ │ │ │ │ ├── pb_x.go │ │ │ │ │ │ ├── pool.go │ │ │ │ │ │ ├── pool_win.go │ │ │ │ │ │ ├── pool_x.go │ │ │ │ │ │ ├── reader.go │ │ │ │ │ │ ├── runecount.go │ │ │ │ │ │ ├── runecount_test.go │ │ │ │ │ │ ├── termios_bsd.go │ │ │ │ │ │ └── termios_nix.go │ │ │ │ ├── cloudfoundry │ │ │ │ │ ├── bosh-agent │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Gopkg.lock │ │ │ │ │ │ ├── Gopkg.toml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── NOTICE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── Vagrantfile │ │ │ │ │ │ ├── agent │ │ │ │ │ │ │ ├── action_dispatcher.go │ │ │ │ │ │ │ ├── action_dispatcher_test.go │ │ │ │ │ │ │ ├── agent.go │ │ │ │ │ │ │ ├── agent_suite_test.go │ │ │ │ │ │ │ ├── agent_test.go │ │ │ │ │ │ │ ├── bootstrap.go │ │ │ │ │ │ │ ├── bootstrap_test.go │ │ │ │ │ │ │ ├── heartbeat.go │ │ │ │ │ │ │ └── heartbeat_test.go │ │ │ │ │ │ └── agentclient │ │ │ │ │ │ │ ├── agent_client_interface.go │ │ │ │ │ │ │ ├── agentclient_suite_test.go │ │ │ │ │ │ │ ├── applyspec │ │ │ │ │ │ │ ├── apply_spec.go │ │ │ │ │ │ │ ├── apply_spec_test.go │ │ │ │ │ │ │ └── applyspec_suite_test.go │ │ │ │ │ │ │ ├── fakes │ │ │ │ │ │ │ └── fake_agent_client.go │ │ │ │ │ │ │ ├── get_state_retryable.go │ │ │ │ │ │ │ ├── get_state_retryable_test.go │ │ │ │ │ │ │ ├── http │ │ │ │ │ │ │ ├── agent_client.go │ │ │ │ │ │ │ ├── agent_client_factory.go │ │ │ │ │ │ │ ├── agent_client_factory_test.go │ │ │ │ │ │ │ ├── agent_client_test.go │ │ │ │ │ │ │ ├── agent_request.go │ │ │ │ │ │ │ ├── agent_response.go │ │ │ │ │ │ │ ├── agent_response_test.go │ │ │ │ │ │ │ ├── http_suite_test.go │ │ │ │ │ │ │ └── mocks │ │ │ │ │ │ │ │ └── mocks.go │ │ │ │ │ │ │ ├── ping_retryable.go │ │ │ │ │ │ │ └── ping_retryable_test.go │ │ │ │ │ ├── bosh-davcli │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── NOTICE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ │ ├── client_suite_test.go │ │ │ │ │ │ │ ├── client_test.go │ │ │ │ │ │ │ └── fakes │ │ │ │ │ │ │ │ └── fake_client.go │ │ │ │ │ │ └── config │ │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ │ └── config_suite_test.go │ │ │ │ │ ├── bosh-gcscli │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── NOTICE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ │ └── sdk.go │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ │ ├── config_suite_test.go │ │ │ │ │ │ │ ├── config_test.go │ │ │ │ │ │ │ └── regions.go │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── bosh-s3cli │ │ │ │ │ │ ├── .envrc │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── NOTICE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ │ ├── handlers.go │ │ │ │ │ │ │ └── sdk.go │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ │ ├── config_suite_test.go │ │ │ │ │ │ │ ├── config_test.go │ │ │ │ │ │ │ └── endpoints.go │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── bosh-utils │ │ │ │ │ │ ├── .envrc │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Gopkg.lock │ │ │ │ │ │ ├── Gopkg.toml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── NOTICE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── blobstore │ │ │ │ │ │ │ ├── blob_manager.go │ │ │ │ │ │ │ ├── blob_manager_interface.go │ │ │ │ │ │ │ ├── blob_manager_test.go │ │ │ │ │ │ │ ├── blobstore_interface.go │ │ │ │ │ │ │ ├── blobstore_suite_test.go │ │ │ │ │ │ │ ├── digest_blobstore_interface.go │ │ │ │ │ │ │ ├── digest_verifiable_blobstore.go │ │ │ │ │ │ │ ├── digest_verifiable_blobstore_test.go │ │ │ │ │ │ │ ├── dummy_blobstore.go │ │ │ │ │ │ │ ├── external_blobstore.go │ │ │ │ │ │ │ ├── external_blobstore_test.go │ │ │ │ │ │ │ ├── fakes │ │ │ │ │ │ │ │ ├── fake_blob_manager.go │ │ │ │ │ │ │ │ ├── fake_blobstore.go │ │ │ │ │ │ │ │ └── fake_digest_blobstore.go │ │ │ │ │ │ │ ├── local_blobstore.go │ │ │ │ │ │ │ ├── local_blobstore_test.go │ │ │ │ │ │ │ ├── provider.go │ │ │ │ │ │ │ ├── provider_test.go │ │ │ │ │ │ │ ├── retryable_blobstore.go │ │ │ │ │ │ │ └── retryable_blobstore_test.go │ │ │ │ │ │ ├── crypto │ │ │ │ │ │ │ ├── algorithms.go │ │ │ │ │ │ │ ├── algorithms_test.go │ │ │ │ │ │ │ ├── cryptofakes │ │ │ │ │ │ │ │ └── fake_archive_digest_file_path_reader.go │ │ │ │ │ │ │ ├── digest.go │ │ │ │ │ │ │ ├── digest_test.go │ │ │ │ │ │ │ ├── interfaces.go │ │ │ │ │ │ │ ├── multiple_digest.go │ │ │ │ │ │ │ ├── multiple_digest_test.go │ │ │ │ │ │ │ ├── suite_test.go │ │ │ │ │ │ │ ├── x509.go │ │ │ │ │ │ │ └── x509_test.go │ │ │ │ │ │ ├── errors │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ ├── errors_suite_test.go │ │ │ │ │ │ │ ├── errors_test.go │ │ │ │ │ │ │ ├── multi_error.go │ │ │ │ │ │ │ └── multi_error_test.go │ │ │ │ │ │ ├── fileutil │ │ │ │ │ │ │ ├── commands_suite_test.go │ │ │ │ │ │ │ ├── compressor_interface.go │ │ │ │ │ │ │ ├── copier_interface.go │ │ │ │ │ │ │ ├── fakes │ │ │ │ │ │ │ │ ├── fake_compressor.go │ │ │ │ │ │ │ │ ├── fake_copier.go │ │ │ │ │ │ │ │ └── fake_mover.go │ │ │ │ │ │ │ ├── generic_cp_copier.go │ │ │ │ │ │ │ ├── generic_cp_copier_test.go │ │ │ │ │ │ │ ├── mover.go │ │ │ │ │ │ │ ├── mover_interface.go │ │ │ │ │ │ │ ├── mover_test.go │ │ │ │ │ │ │ ├── mover_windows_test.go │ │ │ │ │ │ │ ├── tarball_compressor.go │ │ │ │ │ │ │ └── tarball_compressor_test.go │ │ │ │ │ │ ├── httpclient │ │ │ │ │ │ │ ├── default_http_clients.go │ │ │ │ │ │ │ ├── default_http_clients_test.go │ │ │ │ │ │ │ ├── http_client.go │ │ │ │ │ │ │ ├── http_client_test.go │ │ │ │ │ │ │ ├── httpclient_suite_test.go │ │ │ │ │ │ │ ├── keepalive_syscall_linux_test.go │ │ │ │ │ │ │ ├── mutual_tls_client.go │ │ │ │ │ │ │ ├── mutual_tls_client_test.go │ │ │ │ │ │ │ ├── request_retryable.go │ │ │ │ │ │ │ ├── request_retryable_test.go │ │ │ │ │ │ │ ├── retry_clients.go │ │ │ │ │ │ │ ├── retry_clients_test.go │ │ │ │ │ │ │ ├── socksify.go │ │ │ │ │ │ │ └── socksify_test.go │ │ │ │ │ │ ├── logger │ │ │ │ │ │ │ ├── async.go │ │ │ │ │ │ │ ├── async_test.go │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ │ ├── file_logger.go │ │ │ │ │ │ │ │ ├── file_suite_test.go │ │ │ │ │ │ │ │ └── file_test.go │ │ │ │ │ │ │ ├── logger.go │ │ │ │ │ │ │ ├── logger_suite_test.go │ │ │ │ │ │ │ ├── logger_test.go │ │ │ │ │ │ │ └── loggerfakes │ │ │ │ │ │ │ │ └── fake_logger.go │ │ │ │ │ │ ├── property │ │ │ │ │ │ │ ├── builders.go │ │ │ │ │ │ │ ├── list.go │ │ │ │ │ │ │ ├── map.go │ │ │ │ │ │ │ └── property.go │ │ │ │ │ │ ├── retrystrategy │ │ │ │ │ │ │ ├── attempt_retry_strategy.go │ │ │ │ │ │ │ ├── attempt_retry_strategy_test.go │ │ │ │ │ │ │ ├── retry_strategy.go │ │ │ │ │ │ │ ├── retrystrategy_suite_test.go │ │ │ │ │ │ │ ├── timeout_retry_strategy.go │ │ │ │ │ │ │ ├── timeout_retry_strategy_test.go │ │ │ │ │ │ │ ├── unlimited_retry_strategy.go │ │ │ │ │ │ │ └── unlimited_retry_strategy_test.go │ │ │ │ │ │ ├── system │ │ │ │ │ │ │ ├── cmd_runner_interface.go │ │ │ │ │ │ │ ├── exec_cmd_runner.go │ │ │ │ │ │ │ ├── exec_cmd_runner_test.go │ │ │ │ │ │ │ ├── exec_cmd_runner_unix.go │ │ │ │ │ │ │ ├── exec_cmd_runner_windows.go │ │ │ │ │ │ │ ├── exec_error.go │ │ │ │ │ │ │ ├── exec_error_test.go │ │ │ │ │ │ │ ├── exec_process.go │ │ │ │ │ │ │ ├── exec_process_test.go │ │ │ │ │ │ │ ├── exec_process_unix.go │ │ │ │ │ │ │ ├── exec_process_unix_test.go │ │ │ │ │ │ │ ├── exec_process_windows.go │ │ │ │ │ │ │ ├── exec_process_windows_test.go │ │ │ │ │ │ │ ├── fakes │ │ │ │ │ │ │ │ ├── fake_cmd_runner.go │ │ │ │ │ │ │ │ ├── fake_cmd_runner_test.go │ │ │ │ │ │ │ │ ├── fake_file_system.go │ │ │ │ │ │ │ │ ├── fake_file_system_test.go │ │ │ │ │ │ │ │ └── fakes_suite_test.go │ │ │ │ │ │ │ ├── file_system_interface.go │ │ │ │ │ │ │ ├── ip_helper.go │ │ │ │ │ │ │ ├── ip_helper_test.go │ │ │ │ │ │ │ ├── os_file_system.go │ │ │ │ │ │ │ ├── os_file_system_test.go │ │ │ │ │ │ │ ├── os_file_system_unix.go │ │ │ │ │ │ │ ├── os_file_system_unix_test.go │ │ │ │ │ │ │ ├── os_file_system_windows.go │ │ │ │ │ │ │ ├── os_file_system_windows_test.go │ │ │ │ │ │ │ ├── os_long_path_test.go │ │ │ │ │ │ │ └── system_suite_test.go │ │ │ │ │ │ └── uuid │ │ │ │ │ │ │ ├── fakes │ │ │ │ │ │ │ └── fake_generator.go │ │ │ │ │ │ │ ├── generator_interface.go │ │ │ │ │ │ │ ├── uuid_suite_test.go │ │ │ │ │ │ │ ├── uuid_v4_generator.go │ │ │ │ │ │ │ └── uuid_v4_generator_test.go │ │ │ │ │ ├── config-server │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .gitmodules │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── NOTICE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── certificate_generator.go │ │ │ │ │ │ │ ├── certificate_generator_test.go │ │ │ │ │ │ │ ├── certs_loader_interface.go │ │ │ │ │ │ │ ├── password_generator.go │ │ │ │ │ │ │ ├── password_generator_test.go │ │ │ │ │ │ │ ├── rsa_key_generator.go │ │ │ │ │ │ │ ├── rsa_key_generator_test.go │ │ │ │ │ │ │ ├── ssh_key_generator.go │ │ │ │ │ │ │ ├── ssh_key_generator_test.go │ │ │ │ │ │ │ ├── types_suite_test.go │ │ │ │ │ │ │ ├── typesfakes │ │ │ │ │ │ │ ├── fake_certs_loader.go │ │ │ │ │ │ │ ├── fake_value_generator.go │ │ │ │ │ │ │ └── fake_value_generator_factory.go │ │ │ │ │ │ │ ├── value_generator.go │ │ │ │ │ │ │ ├── value_generator_factory.go │ │ │ │ │ │ │ ├── value_generator_factory_concrete.go │ │ │ │ │ │ │ └── value_generator_factory_concrete_test.go │ │ │ │ │ └── socks5-proxy │ │ │ │ │ │ ├── Gopkg.lock │ │ │ │ │ │ ├── Gopkg.toml │ │ │ │ │ │ ├── exports_test.go │ │ │ │ │ │ ├── host_key_getter.go │ │ │ │ │ │ ├── host_key_getter_test.go │ │ │ │ │ │ ├── init_test.go │ │ │ │ │ │ ├── socks5_proxy.go │ │ │ │ │ │ └── socks5_proxy_test.go │ │ │ │ ├── cppforlife │ │ │ │ │ ├── go-patch │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── patch │ │ │ │ │ │ │ ├── array_index.go │ │ │ │ │ │ │ ├── array_index_test.go │ │ │ │ │ │ │ ├── array_insertion.go │ │ │ │ │ │ │ ├── array_insertion_test.go │ │ │ │ │ │ │ ├── descriptive_op.go │ │ │ │ │ │ │ ├── err_op.go │ │ │ │ │ │ │ ├── errs.go │ │ │ │ │ │ │ ├── find_op.go │ │ │ │ │ │ │ ├── find_op_test.go │ │ │ │ │ │ │ ├── integration_test.go │ │ │ │ │ │ │ ├── op_definition.go │ │ │ │ │ │ │ ├── op_definition_test.go │ │ │ │ │ │ │ ├── ops.go │ │ │ │ │ │ │ ├── ops_test.go │ │ │ │ │ │ │ ├── pointer.go │ │ │ │ │ │ │ ├── pointer_test.go │ │ │ │ │ │ │ ├── remove_op.go │ │ │ │ │ │ │ ├── remove_op_test.go │ │ │ │ │ │ │ ├── replace_op.go │ │ │ │ │ │ │ ├── replace_op_test.go │ │ │ │ │ │ │ ├── suite_test.go │ │ │ │ │ │ │ ├── tokens.go │ │ │ │ │ │ │ ├── tokens_impl.go │ │ │ │ │ │ │ └── yaml_compat_test.go │ │ │ │ │ └── go-semi-semantic │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── version │ │ │ │ │ │ ├── ver_seg_comp_int.go │ │ │ │ │ │ ├── ver_seg_comp_str.go │ │ │ │ │ │ ├── version.go │ │ │ │ │ │ ├── version_segment.go │ │ │ │ │ │ ├── version_segment_test.go │ │ │ │ │ │ ├── version_sort.go │ │ │ │ │ │ ├── version_sort_test.go │ │ │ │ │ │ ├── version_suite_test.go │ │ │ │ │ │ └── version_test.go │ │ │ │ ├── dustin │ │ │ │ │ └── go-humanize │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.markdown │ │ │ │ │ │ ├── big.go │ │ │ │ │ │ ├── bigbytes.go │ │ │ │ │ │ ├── bigbytes_test.go │ │ │ │ │ │ ├── bytes.go │ │ │ │ │ │ ├── bytes_test.go │ │ │ │ │ │ ├── comma.go │ │ │ │ │ │ ├── comma_test.go │ │ │ │ │ │ ├── common_test.go │ │ │ │ │ │ ├── ftoa.go │ │ │ │ │ │ ├── ftoa_test.go │ │ │ │ │ │ ├── humanize.go │ │ │ │ │ │ ├── number.go │ │ │ │ │ │ ├── number_test.go │ │ │ │ │ │ ├── ordinals.go │ │ │ │ │ │ ├── ordinals_test.go │ │ │ │ │ │ ├── si.go │ │ │ │ │ │ ├── si_test.go │ │ │ │ │ │ ├── times.go │ │ │ │ │ │ └── times_test.go │ │ │ │ ├── fatih │ │ │ │ │ └── color │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── color.go │ │ │ │ │ │ ├── color_test.go │ │ │ │ │ │ └── doc.go │ │ │ │ ├── go-ini │ │ │ │ │ └── ini │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── README_ZH.md │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ ├── ini.go │ │ │ │ │ │ ├── ini_test.go │ │ │ │ │ │ ├── key.go │ │ │ │ │ │ ├── key_test.go │ │ │ │ │ │ ├── parser.go │ │ │ │ │ │ ├── parser_test.go │ │ │ │ │ │ ├── section.go │ │ │ │ │ │ ├── section_test.go │ │ │ │ │ │ ├── struct.go │ │ │ │ │ │ └── struct_test.go │ │ │ │ ├── golang │ │ │ │ │ ├── mock │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── AUTHORS │ │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── gomock │ │ │ │ │ │ │ ├── call.go │ │ │ │ │ │ │ ├── call_test.go │ │ │ │ │ │ │ ├── callset.go │ │ │ │ │ │ │ ├── controller.go │ │ │ │ │ │ │ ├── controller_test.go │ │ │ │ │ │ │ ├── matchers.go │ │ │ │ │ │ │ └── matchers_test.go │ │ │ │ │ └── protobuf │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── AUTHORS │ │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Make.protobuf │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── map_test.go │ │ │ │ │ │ ├── message_set.go │ │ │ │ │ │ ├── message_set_test.go │ │ │ │ │ │ ├── pointer_reflect.go │ │ │ │ │ │ ├── pointer_unsafe.go │ │ │ │ │ │ ├── properties.go │ │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ │ ├── size2_test.go │ │ │ │ │ │ ├── size_test.go │ │ │ │ │ │ ├── text.go │ │ │ │ │ │ ├── text_parser.go │ │ │ │ │ │ ├── text_parser_test.go │ │ │ │ │ │ └── text_test.go │ │ │ │ │ │ ├── protoc-gen-go │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── descriptor │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ └── descriptor.pb.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── link_grpc.go │ │ │ │ │ │ └── main.go │ │ │ │ │ │ └── ptypes │ │ │ │ │ │ ├── any.go │ │ │ │ │ │ ├── any │ │ │ │ │ │ ├── any.pb.go │ │ │ │ │ │ └── any.proto │ │ │ │ │ │ ├── any_test.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── duration.go │ │ │ │ │ │ ├── duration_test.go │ │ │ │ │ │ ├── regen.sh │ │ │ │ │ │ ├── timestamp.go │ │ │ │ │ │ └── timestamp_test.go │ │ │ │ ├── googleapis │ │ │ │ │ └── gax-go │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── call_option.go │ │ │ │ │ │ ├── call_option_test.go │ │ │ │ │ │ ├── gax.go │ │ │ │ │ │ ├── header.go │ │ │ │ │ │ ├── header_test.go │ │ │ │ │ │ ├── invoke.go │ │ │ │ │ │ ├── invoke_test.go │ │ │ │ │ │ ├── path_template.go │ │ │ │ │ │ ├── path_template_parser.go │ │ │ │ │ │ └── path_template_test.go │ │ │ │ ├── hashicorp │ │ │ │ │ ├── errwrap │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── errwrap.go │ │ │ │ │ │ └── errwrap_test.go │ │ │ │ │ └── go-multierror │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── append.go │ │ │ │ │ │ ├── append_test.go │ │ │ │ │ │ ├── flatten.go │ │ │ │ │ │ ├── flatten_test.go │ │ │ │ │ │ ├── format.go │ │ │ │ │ │ ├── format_test.go │ │ │ │ │ │ ├── multierror.go │ │ │ │ │ │ ├── multierror_test.go │ │ │ │ │ │ ├── prefix.go │ │ │ │ │ │ └── prefix_test.go │ │ │ │ ├── jessevdk │ │ │ │ │ └── go-flags │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── arg.go │ │ │ │ │ │ ├── arg_test.go │ │ │ │ │ │ ├── assert_test.go │ │ │ │ │ │ ├── check_crosscompile.sh │ │ │ │ │ │ ├── closest.go │ │ │ │ │ │ ├── command.go │ │ │ │ │ │ ├── command_test.go │ │ │ │ │ │ ├── completion.go │ │ │ │ │ │ ├── completion_test.go │ │ │ │ │ │ ├── convert.go │ │ │ │ │ │ ├── convert_test.go │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ ├── example_test.go │ │ │ │ │ │ ├── flags.go │ │ │ │ │ │ ├── group.go │ │ │ │ │ │ ├── group_test.go │ │ │ │ │ │ ├── help.go │ │ │ │ │ │ ├── help_test.go │ │ │ │ │ │ ├── ini.go │ │ │ │ │ │ ├── ini_test.go │ │ │ │ │ │ ├── long_test.go │ │ │ │ │ │ ├── man.go │ │ │ │ │ │ ├── marshal_test.go │ │ │ │ │ │ ├── multitag.go │ │ │ │ │ │ ├── option.go │ │ │ │ │ │ ├── options_test.go │ │ │ │ │ │ ├── optstyle_other.go │ │ │ │ │ │ ├── optstyle_windows.go │ │ │ │ │ │ ├── parser.go │ │ │ │ │ │ ├── parser_test.go │ │ │ │ │ │ ├── pointer_test.go │ │ │ │ │ │ ├── short_test.go │ │ │ │ │ │ ├── tag_test.go │ │ │ │ │ │ ├── termsize.go │ │ │ │ │ │ ├── termsize_linux.go │ │ │ │ │ │ ├── termsize_nosysioctl.go │ │ │ │ │ │ ├── termsize_other.go │ │ │ │ │ │ ├── termsize_unix.go │ │ │ │ │ │ └── unknown_test.go │ │ │ │ ├── jmespath │ │ │ │ │ └── go-jmespath │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── api.go │ │ │ │ │ │ ├── astnodetype_string.go │ │ │ │ │ │ ├── compliance_test.go │ │ │ │ │ │ ├── functions.go │ │ │ │ │ │ ├── interpreter.go │ │ │ │ │ │ ├── interpreter_test.go │ │ │ │ │ │ ├── lexer.go │ │ │ │ │ │ ├── lexer_test.go │ │ │ │ │ │ ├── parser.go │ │ │ │ │ │ ├── parser_test.go │ │ │ │ │ │ ├── toktype_string.go │ │ │ │ │ │ ├── util.go │ │ │ │ │ │ └── util_test.go │ │ │ │ ├── mattn │ │ │ │ │ ├── go-colorable │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── colorable_appengine.go │ │ │ │ │ │ ├── colorable_others.go │ │ │ │ │ │ ├── colorable_test.go │ │ │ │ │ │ ├── colorable_windows.go │ │ │ │ │ │ └── noncolorable.go │ │ │ │ │ └── go-isatty │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── isatty_appengine.go │ │ │ │ │ │ ├── isatty_bsd.go │ │ │ │ │ │ ├── isatty_linux.go │ │ │ │ │ │ ├── isatty_solaris.go │ │ │ │ │ │ └── isatty_windows.go │ │ │ │ ├── maxbrunsfeld │ │ │ │ │ └── counterfeiter │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── arguments │ │ │ │ │ │ ├── arguments_suite_test.go │ │ │ │ │ │ ├── files.go │ │ │ │ │ │ ├── flags.go │ │ │ │ │ │ ├── parser.go │ │ │ │ │ │ └── parser_test.go │ │ │ │ │ │ ├── astutil │ │ │ │ │ │ └── mutator.go │ │ │ │ │ │ ├── counterfeiter_suite_test.go │ │ │ │ │ │ ├── counterfeiter_test.go │ │ │ │ │ │ ├── generator │ │ │ │ │ │ ├── generator.go │ │ │ │ │ │ ├── generator_suite_test.go │ │ │ │ │ │ ├── generator_test.go │ │ │ │ │ │ ├── interface_generator.go │ │ │ │ │ │ ├── interface_generator_test.go │ │ │ │ │ │ ├── real_generator.go │ │ │ │ │ │ └── real_generator_test.go │ │ │ │ │ │ ├── locator │ │ │ │ │ │ ├── locate_function.go │ │ │ │ │ │ ├── locate_interface.go │ │ │ │ │ │ ├── locator.go │ │ │ │ │ │ ├── locator_suite_test.go │ │ │ │ │ │ ├── locator_test.go │ │ │ │ │ │ ├── package_locator.go │ │ │ │ │ │ └── package_locator_test.go │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ ├── model │ │ │ │ │ │ └── model.go │ │ │ │ │ │ └── terminal │ │ │ │ │ │ └── ui.go │ │ │ │ ├── nu7hatch │ │ │ │ │ └── gouuid │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── COPYING │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── example_test.go │ │ │ │ │ │ ├── uuid.go │ │ │ │ │ │ └── uuid_test.go │ │ │ │ ├── onsi │ │ │ │ │ ├── ginkgo │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── config.go │ │ │ │ │ │ ├── ginkgo │ │ │ │ │ │ │ ├── bootstrap_command.go │ │ │ │ │ │ │ ├── build_command.go │ │ │ │ │ │ │ ├── convert │ │ │ │ │ │ │ │ ├── ginkgo_ast_nodes.go │ │ │ │ │ │ │ │ ├── import.go │ │ │ │ │ │ │ │ ├── package_rewriter.go │ │ │ │ │ │ │ │ ├── test_finder.go │ │ │ │ │ │ │ │ ├── testfile_rewriter.go │ │ │ │ │ │ │ │ └── testing_t_rewriter.go │ │ │ │ │ │ │ ├── convert_command.go │ │ │ │ │ │ │ ├── generate_command.go │ │ │ │ │ │ │ ├── help_command.go │ │ │ │ │ │ │ ├── interrupthandler │ │ │ │ │ │ │ │ ├── interrupt_handler.go │ │ │ │ │ │ │ │ ├── sigquit_swallower_unix.go │ │ │ │ │ │ │ │ └── sigquit_swallower_windows.go │ │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ │ ├── nodot │ │ │ │ │ │ │ │ ├── nodot.go │ │ │ │ │ │ │ │ ├── nodot_suite_test.go │ │ │ │ │ │ │ │ └── nodot_test.go │ │ │ │ │ │ │ ├── nodot_command.go │ │ │ │ │ │ │ ├── notifications.go │ │ │ │ │ │ │ ├── run_command.go │ │ │ │ │ │ │ ├── run_watch_and_build_command_flags.go │ │ │ │ │ │ │ ├── suite_runner.go │ │ │ │ │ │ │ ├── testrunner │ │ │ │ │ │ │ │ ├── log_writer.go │ │ │ │ │ │ │ │ ├── run_result.go │ │ │ │ │ │ │ │ ├── test_runner.go │ │ │ │ │ │ │ │ └── test_runner_test.go │ │ │ │ │ │ │ ├── testsuite │ │ │ │ │ │ │ │ ├── test_suite.go │ │ │ │ │ │ │ │ ├── testsuite_suite_test.go │ │ │ │ │ │ │ │ ├── testsuite_test.go │ │ │ │ │ │ │ │ ├── vendor_check_go15.go │ │ │ │ │ │ │ │ ├── vendor_check_go15_test.go │ │ │ │ │ │ │ │ └── vendor_check_go16.go │ │ │ │ │ │ │ ├── unfocus_command.go │ │ │ │ │ │ │ ├── version_command.go │ │ │ │ │ │ │ ├── watch │ │ │ │ │ │ │ │ ├── delta.go │ │ │ │ │ │ │ │ ├── delta_tracker.go │ │ │ │ │ │ │ │ ├── dependencies.go │ │ │ │ │ │ │ │ ├── package_hash.go │ │ │ │ │ │ │ │ ├── package_hashes.go │ │ │ │ │ │ │ │ └── suite.go │ │ │ │ │ │ │ └── watch_command.go │ │ │ │ │ │ ├── ginkgo_dsl.go │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── codelocation │ │ │ │ │ │ │ │ ├── code_location.go │ │ │ │ │ │ │ │ ├── code_location_suite_test.go │ │ │ │ │ │ │ │ └── code_location_test.go │ │ │ │ │ │ │ ├── containernode │ │ │ │ │ │ │ │ ├── container_node.go │ │ │ │ │ │ │ │ ├── container_node_suite_test.go │ │ │ │ │ │ │ │ └── container_node_test.go │ │ │ │ │ │ │ ├── failer │ │ │ │ │ │ │ │ ├── failer.go │ │ │ │ │ │ │ │ ├── failer_suite_test.go │ │ │ │ │ │ │ │ └── failer_test.go │ │ │ │ │ │ │ ├── leafnodes │ │ │ │ │ │ │ │ ├── benchmarker.go │ │ │ │ │ │ │ │ ├── interfaces.go │ │ │ │ │ │ │ │ ├── it_node.go │ │ │ │ │ │ │ │ ├── it_node_test.go │ │ │ │ │ │ │ │ ├── leaf_node_suite_test.go │ │ │ │ │ │ │ │ ├── measure_node.go │ │ │ │ │ │ │ │ ├── measure_node_test.go │ │ │ │ │ │ │ │ ├── runner.go │ │ │ │ │ │ │ │ ├── setup_nodes.go │ │ │ │ │ │ │ │ ├── setup_nodes_test.go │ │ │ │ │ │ │ │ ├── shared_runner_test.go │ │ │ │ │ │ │ │ ├── suite_nodes.go │ │ │ │ │ │ │ │ ├── suite_nodes_test.go │ │ │ │ │ │ │ │ ├── synchronized_after_suite_node.go │ │ │ │ │ │ │ │ ├── synchronized_after_suite_node_test.go │ │ │ │ │ │ │ │ ├── synchronized_before_suite_node.go │ │ │ │ │ │ │ │ └── synchronized_before_suite_node_test.go │ │ │ │ │ │ │ ├── remote │ │ │ │ │ │ │ │ ├── aggregator.go │ │ │ │ │ │ │ │ ├── aggregator_test.go │ │ │ │ │ │ │ │ ├── fake_output_interceptor_test.go │ │ │ │ │ │ │ │ ├── fake_poster_test.go │ │ │ │ │ │ │ │ ├── forwarding_reporter.go │ │ │ │ │ │ │ │ ├── forwarding_reporter_test.go │ │ │ │ │ │ │ │ ├── output_interceptor.go │ │ │ │ │ │ │ │ ├── output_interceptor_unix.go │ │ │ │ │ │ │ │ ├── output_interceptor_win.go │ │ │ │ │ │ │ │ ├── remote_suite_test.go │ │ │ │ │ │ │ │ ├── server.go │ │ │ │ │ │ │ │ ├── server_test.go │ │ │ │ │ │ │ │ ├── syscall_dup_linux_arm64.go │ │ │ │ │ │ │ │ ├── syscall_dup_solaris.go │ │ │ │ │ │ │ │ └── syscall_dup_unix.go │ │ │ │ │ │ │ ├── spec │ │ │ │ │ │ │ │ ├── spec.go │ │ │ │ │ │ │ │ ├── spec_suite_test.go │ │ │ │ │ │ │ │ ├── spec_test.go │ │ │ │ │ │ │ │ ├── specs.go │ │ │ │ │ │ │ │ └── specs_test.go │ │ │ │ │ │ │ ├── spec_iterator │ │ │ │ │ │ │ │ ├── index_computer.go │ │ │ │ │ │ │ │ ├── index_computer_test.go │ │ │ │ │ │ │ │ ├── parallel_spec_iterator.go │ │ │ │ │ │ │ │ ├── parallel_spec_iterator_test.go │ │ │ │ │ │ │ │ ├── serial_spec_iterator.go │ │ │ │ │ │ │ │ ├── serial_spec_iterator_test.go │ │ │ │ │ │ │ │ ├── sharded_parallel_spec_iterator.go │ │ │ │ │ │ │ │ ├── sharded_parallel_spec_iterator_test.go │ │ │ │ │ │ │ │ ├── spec_iterator.go │ │ │ │ │ │ │ │ └── spec_iterator_suite_test.go │ │ │ │ │ │ │ ├── specrunner │ │ │ │ │ │ │ │ ├── random_id.go │ │ │ │ │ │ │ │ ├── spec_runner.go │ │ │ │ │ │ │ │ ├── spec_runner_suite_test.go │ │ │ │ │ │ │ │ └── spec_runner_test.go │ │ │ │ │ │ │ ├── suite │ │ │ │ │ │ │ │ ├── suite.go │ │ │ │ │ │ │ │ ├── suite_suite_test.go │ │ │ │ │ │ │ │ └── suite_test.go │ │ │ │ │ │ │ ├── testingtproxy │ │ │ │ │ │ │ │ └── testing_t_proxy.go │ │ │ │ │ │ │ └── writer │ │ │ │ │ │ │ │ ├── fake_writer.go │ │ │ │ │ │ │ │ ├── writer.go │ │ │ │ │ │ │ │ ├── writer_suite_test.go │ │ │ │ │ │ │ │ └── writer_test.go │ │ │ │ │ │ ├── reporters │ │ │ │ │ │ │ ├── default_reporter.go │ │ │ │ │ │ │ ├── default_reporter_test.go │ │ │ │ │ │ │ ├── fake_reporter.go │ │ │ │ │ │ │ ├── junit_reporter.go │ │ │ │ │ │ │ ├── junit_reporter_test.go │ │ │ │ │ │ │ ├── reporter.go │ │ │ │ │ │ │ ├── reporters_suite_test.go │ │ │ │ │ │ │ ├── stenographer │ │ │ │ │ │ │ │ ├── console_logging.go │ │ │ │ │ │ │ │ ├── fake_stenographer.go │ │ │ │ │ │ │ │ ├── stenographer.go │ │ │ │ │ │ │ │ └── support │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── go-colorable │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── colorable_others.go │ │ │ │ │ │ │ │ │ ├── colorable_windows.go │ │ │ │ │ │ │ │ │ └── noncolorable.go │ │ │ │ │ │ │ │ │ └── go-isatty │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ │ ├── isatty_appengine.go │ │ │ │ │ │ │ │ │ ├── isatty_bsd.go │ │ │ │ │ │ │ │ │ ├── isatty_linux.go │ │ │ │ │ │ │ │ │ ├── isatty_solaris.go │ │ │ │ │ │ │ │ │ └── isatty_windows.go │ │ │ │ │ │ │ ├── teamcity_reporter.go │ │ │ │ │ │ │ └── teamcity_reporter_test.go │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── code_location.go │ │ │ │ │ │ │ ├── synchronization.go │ │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ │ ├── types_suite_test.go │ │ │ │ │ │ │ └── types_test.go │ │ │ │ │ └── gomega │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── format │ │ │ │ │ │ ├── format.go │ │ │ │ │ │ ├── format_suite_test.go │ │ │ │ │ │ └── format_test.go │ │ │ │ │ │ ├── gbytes │ │ │ │ │ │ ├── buffer.go │ │ │ │ │ │ ├── buffer_test.go │ │ │ │ │ │ ├── gbuffer_suite_test.go │ │ │ │ │ │ ├── say_matcher.go │ │ │ │ │ │ └── say_matcher_test.go │ │ │ │ │ │ ├── gexec │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ ├── build_test.go │ │ │ │ │ │ ├── exit_matcher.go │ │ │ │ │ │ ├── exit_matcher_test.go │ │ │ │ │ │ ├── gexec_suite_test.go │ │ │ │ │ │ ├── prefixed_writer.go │ │ │ │ │ │ ├── prefixed_writer_test.go │ │ │ │ │ │ ├── session.go │ │ │ │ │ │ └── session_test.go │ │ │ │ │ │ ├── ghttp │ │ │ │ │ │ ├── handlers.go │ │ │ │ │ │ ├── test_server.go │ │ │ │ │ │ ├── test_server_suite_test.go │ │ │ │ │ │ └── test_server_test.go │ │ │ │ │ │ ├── gomega_dsl.go │ │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── assertion │ │ │ │ │ │ │ ├── assertion.go │ │ │ │ │ │ │ ├── assertion_suite_test.go │ │ │ │ │ │ │ └── assertion_test.go │ │ │ │ │ │ ├── asyncassertion │ │ │ │ │ │ │ ├── async_assertion.go │ │ │ │ │ │ │ ├── async_assertion_suite_test.go │ │ │ │ │ │ │ └── async_assertion_test.go │ │ │ │ │ │ ├── oraclematcher │ │ │ │ │ │ │ └── oracle_matcher.go │ │ │ │ │ │ └── testingtsupport │ │ │ │ │ │ │ ├── testing_t_support.go │ │ │ │ │ │ │ └── testing_t_support_test.go │ │ │ │ │ │ ├── matchers.go │ │ │ │ │ │ ├── matchers │ │ │ │ │ │ ├── and.go │ │ │ │ │ │ ├── and_test.go │ │ │ │ │ │ ├── assignable_to_type_of_matcher.go │ │ │ │ │ │ ├── assignable_to_type_of_matcher_test.go │ │ │ │ │ │ ├── be_a_directory.go │ │ │ │ │ │ ├── be_a_directory_test.go │ │ │ │ │ │ ├── be_a_regular_file.go │ │ │ │ │ │ ├── be_a_regular_file_test.go │ │ │ │ │ │ ├── be_an_existing_file.go │ │ │ │ │ │ ├── be_an_existing_file_test.go │ │ │ │ │ │ ├── be_closed_matcher.go │ │ │ │ │ │ ├── be_closed_matcher_test.go │ │ │ │ │ │ ├── be_empty_matcher.go │ │ │ │ │ │ ├── be_empty_matcher_test.go │ │ │ │ │ │ ├── be_equivalent_to_matcher.go │ │ │ │ │ │ ├── be_equivalent_to_matcher_test.go │ │ │ │ │ │ ├── be_false_matcher.go │ │ │ │ │ │ ├── be_false_matcher_test.go │ │ │ │ │ │ ├── be_identical_to.go │ │ │ │ │ │ ├── be_identical_to_test.go │ │ │ │ │ │ ├── be_nil_matcher.go │ │ │ │ │ │ ├── be_nil_matcher_test.go │ │ │ │ │ │ ├── be_numerically_matcher.go │ │ │ │ │ │ ├── be_numerically_matcher_test.go │ │ │ │ │ │ ├── be_sent_matcher.go │ │ │ │ │ │ ├── be_sent_matcher_test.go │ │ │ │ │ │ ├── be_temporally_matcher.go │ │ │ │ │ │ ├── be_temporally_matcher_test.go │ │ │ │ │ │ ├── be_true_matcher.go │ │ │ │ │ │ ├── be_true_matcher_test.go │ │ │ │ │ │ ├── be_zero_matcher.go │ │ │ │ │ │ ├── be_zero_matcher_test.go │ │ │ │ │ │ ├── consist_of.go │ │ │ │ │ │ ├── consist_of_test.go │ │ │ │ │ │ ├── contain_element_matcher.go │ │ │ │ │ │ ├── contain_element_matcher_test.go │ │ │ │ │ │ ├── contain_substring_matcher.go │ │ │ │ │ │ ├── contain_substring_matcher_test.go │ │ │ │ │ │ ├── equal_matcher.go │ │ │ │ │ │ ├── equal_matcher_test.go │ │ │ │ │ │ ├── have_cap_matcher.go │ │ │ │ │ │ ├── have_cap_matcher_test.go │ │ │ │ │ │ ├── have_key_matcher.go │ │ │ │ │ │ ├── have_key_matcher_test.go │ │ │ │ │ │ ├── have_key_with_value_matcher.go │ │ │ │ │ │ ├── have_key_with_value_matcher_test.go │ │ │ │ │ │ ├── have_len_matcher.go │ │ │ │ │ │ ├── have_len_matcher_test.go │ │ │ │ │ │ ├── have_occurred_matcher.go │ │ │ │ │ │ ├── have_occurred_matcher_test.go │ │ │ │ │ │ ├── have_prefix_matcher.go │ │ │ │ │ │ ├── have_prefix_matcher_test.go │ │ │ │ │ │ ├── have_suffix_matcher.go │ │ │ │ │ │ ├── have_suffix_matcher_test.go │ │ │ │ │ │ ├── match_error_matcher.go │ │ │ │ │ │ ├── match_error_matcher_test.go │ │ │ │ │ │ ├── match_json_matcher.go │ │ │ │ │ │ ├── match_json_matcher_test.go │ │ │ │ │ │ ├── match_regexp_matcher.go │ │ │ │ │ │ ├── match_regexp_matcher_test.go │ │ │ │ │ │ ├── match_yaml_matcher.go │ │ │ │ │ │ ├── match_yaml_matcher_test.go │ │ │ │ │ │ ├── matcher_tests_suite_test.go │ │ │ │ │ │ ├── not.go │ │ │ │ │ │ ├── not_test.go │ │ │ │ │ │ ├── or.go │ │ │ │ │ │ ├── or_test.go │ │ │ │ │ │ ├── panic_matcher.go │ │ │ │ │ │ ├── panic_matcher_test.go │ │ │ │ │ │ ├── receive_matcher.go │ │ │ │ │ │ ├── receive_matcher_test.go │ │ │ │ │ │ ├── succeed_matcher.go │ │ │ │ │ │ ├── succeed_matcher_test.go │ │ │ │ │ │ ├── support │ │ │ │ │ │ │ └── goraph │ │ │ │ │ │ │ │ ├── MIT.LICENSE │ │ │ │ │ │ │ │ ├── bipartitegraph │ │ │ │ │ │ │ │ ├── bipartitegraph.go │ │ │ │ │ │ │ │ └── bipartitegraphmatching.go │ │ │ │ │ │ │ │ ├── edge │ │ │ │ │ │ │ │ └── edge.go │ │ │ │ │ │ │ │ ├── node │ │ │ │ │ │ │ │ └── node.go │ │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ └── util.go │ │ │ │ │ │ ├── type_support.go │ │ │ │ │ │ ├── with_transform.go │ │ │ │ │ │ └── with_transform_test.go │ │ │ │ │ │ └── types │ │ │ │ │ │ └── types.go │ │ │ │ ├── pivotal-cf │ │ │ │ │ └── paraphernalia │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── WORKSPACE │ │ │ │ │ │ └── secure │ │ │ │ │ │ └── tlsconfig │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ ├── config_test.go │ │ │ │ │ │ └── tlsconfig_suite_test.go │ │ │ │ └── vito │ │ │ │ │ └── go-interact │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ └── interact │ │ │ │ │ ├── bools_test.go │ │ │ │ │ ├── choice.go │ │ │ │ │ ├── choices_test.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── interaction.go │ │ │ │ │ ├── ints_test.go │ │ │ │ │ ├── password.go │ │ │ │ │ ├── passwords_test.go │ │ │ │ │ ├── required.go │ │ │ │ │ ├── strings_test.go │ │ │ │ │ ├── suite_test.go │ │ │ │ │ ├── terminal │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── PATENTS │ │ │ │ │ ├── README │ │ │ │ │ ├── terminal.go │ │ │ │ │ ├── terminal_test.go │ │ │ │ │ ├── util.go │ │ │ │ │ ├── util_bsd.go │ │ │ │ │ ├── util_linux.go │ │ │ │ │ ├── util_plan9.go │ │ │ │ │ ├── util_solaris.go │ │ │ │ │ └── util_windows.go │ │ │ │ │ ├── userio.go │ │ │ │ │ └── userio_test.go │ │ │ ├── golang.org │ │ │ │ └── x │ │ │ │ │ ├── crypto │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── PATENTS │ │ │ │ │ ├── README.md │ │ │ │ │ ├── codereview.cfg │ │ │ │ │ ├── curve25519 │ │ │ │ │ │ ├── const_amd64.h │ │ │ │ │ │ ├── const_amd64.s │ │ │ │ │ │ ├── cswap_amd64.s │ │ │ │ │ │ ├── curve25519.go │ │ │ │ │ │ ├── curve25519_test.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── freeze_amd64.s │ │ │ │ │ │ ├── ladderstep_amd64.s │ │ │ │ │ │ ├── mont25519_amd64.go │ │ │ │ │ │ ├── mul_amd64.s │ │ │ │ │ │ └── square_amd64.s │ │ │ │ │ ├── ed25519 │ │ │ │ │ │ ├── ed25519.go │ │ │ │ │ │ ├── ed25519_test.go │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ └── edwards25519 │ │ │ │ │ │ │ ├── const.go │ │ │ │ │ │ │ └── edwards25519.go │ │ │ │ │ └── ssh │ │ │ │ │ │ ├── benchmark_test.go │ │ │ │ │ │ ├── buffer.go │ │ │ │ │ │ ├── buffer_test.go │ │ │ │ │ │ ├── certs.go │ │ │ │ │ │ ├── certs_test.go │ │ │ │ │ │ ├── channel.go │ │ │ │ │ │ ├── cipher.go │ │ │ │ │ │ ├── cipher_test.go │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── client_auth.go │ │ │ │ │ │ ├── client_auth_test.go │ │ │ │ │ │ ├── client_test.go │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ ├── connection.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── example_test.go │ │ │ │ │ │ ├── handshake.go │ │ │ │ │ │ ├── handshake_test.go │ │ │ │ │ │ ├── kex.go │ │ │ │ │ │ ├── kex_test.go │ │ │ │ │ │ ├── keys.go │ │ │ │ │ │ ├── keys_test.go │ │ │ │ │ │ ├── mac.go │ │ │ │ │ │ ├── mempipe_test.go │ │ │ │ │ │ ├── messages.go │ │ │ │ │ │ ├── messages_test.go │ │ │ │ │ │ ├── mux.go │ │ │ │ │ │ ├── mux_test.go │ │ │ │ │ │ ├── server.go │ │ │ │ │ │ ├── session.go │ │ │ │ │ │ ├── session_test.go │ │ │ │ │ │ ├── streamlocal.go │ │ │ │ │ │ ├── tcpip.go │ │ │ │ │ │ ├── tcpip_test.go │ │ │ │ │ │ ├── terminal │ │ │ │ │ │ ├── terminal.go │ │ │ │ │ │ ├── terminal_test.go │ │ │ │ │ │ ├── util.go │ │ │ │ │ │ ├── util_bsd.go │ │ │ │ │ │ ├── util_linux.go │ │ │ │ │ │ ├── util_plan9.go │ │ │ │ │ │ ├── util_solaris.go │ │ │ │ │ │ └── util_windows.go │ │ │ │ │ │ ├── testdata_test.go │ │ │ │ │ │ ├── transport.go │ │ │ │ │ │ └── transport_test.go │ │ │ │ │ ├── net │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── PATENTS │ │ │ │ │ ├── README │ │ │ │ │ ├── codereview.cfg │ │ │ │ │ ├── context │ │ │ │ │ │ ├── context.go │ │ │ │ │ │ ├── context_test.go │ │ │ │ │ │ ├── ctxhttp │ │ │ │ │ │ │ ├── ctxhttp.go │ │ │ │ │ │ │ ├── ctxhttp_17_test.go │ │ │ │ │ │ │ ├── ctxhttp_pre17.go │ │ │ │ │ │ │ ├── ctxhttp_pre17_test.go │ │ │ │ │ │ │ └── ctxhttp_test.go │ │ │ │ │ │ ├── go17.go │ │ │ │ │ │ ├── pre_go17.go │ │ │ │ │ │ └── withtimeout_test.go │ │ │ │ │ ├── http2 │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── ciphers.go │ │ │ │ │ │ ├── ciphers_test.go │ │ │ │ │ │ ├── client_conn_pool.go │ │ │ │ │ │ ├── configure_transport.go │ │ │ │ │ │ ├── databuffer.go │ │ │ │ │ │ ├── databuffer_test.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── errors_test.go │ │ │ │ │ │ ├── flow.go │ │ │ │ │ │ ├── flow_test.go │ │ │ │ │ │ ├── frame.go │ │ │ │ │ │ ├── frame_test.go │ │ │ │ │ │ ├── go16.go │ │ │ │ │ │ ├── go17.go │ │ │ │ │ │ ├── go17_not18.go │ │ │ │ │ │ ├── go18.go │ │ │ │ │ │ ├── go18_test.go │ │ │ │ │ │ ├── go19.go │ │ │ │ │ │ ├── go19_test.go │ │ │ │ │ │ ├── gotrack.go │ │ │ │ │ │ ├── gotrack_test.go │ │ │ │ │ │ ├── headermap.go │ │ │ │ │ │ ├── hpack │ │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ │ ├── encode_test.go │ │ │ │ │ │ │ ├── hpack.go │ │ │ │ │ │ │ ├── hpack_test.go │ │ │ │ │ │ │ ├── huffman.go │ │ │ │ │ │ │ ├── tables.go │ │ │ │ │ │ │ └── tables_test.go │ │ │ │ │ │ ├── http2.go │ │ │ │ │ │ ├── http2_test.go │ │ │ │ │ │ ├── not_go16.go │ │ │ │ │ │ ├── not_go17.go │ │ │ │ │ │ ├── not_go18.go │ │ │ │ │ │ ├── not_go19.go │ │ │ │ │ │ ├── pipe.go │ │ │ │ │ │ ├── pipe_test.go │ │ │ │ │ │ ├── server.go │ │ │ │ │ │ ├── server_push_test.go │ │ │ │ │ │ ├── server_test.go │ │ │ │ │ │ ├── transport.go │ │ │ │ │ │ ├── transport_test.go │ │ │ │ │ │ ├── write.go │ │ │ │ │ │ ├── writesched.go │ │ │ │ │ │ ├── writesched_priority.go │ │ │ │ │ │ ├── writesched_priority_test.go │ │ │ │ │ │ ├── writesched_random.go │ │ │ │ │ │ ├── writesched_random_test.go │ │ │ │ │ │ ├── writesched_test.go │ │ │ │ │ │ └── z_spec_test.go │ │ │ │ │ ├── idna │ │ │ │ │ │ ├── example_test.go │ │ │ │ │ │ ├── idna.go │ │ │ │ │ │ ├── idna_test.go │ │ │ │ │ │ ├── punycode.go │ │ │ │ │ │ ├── punycode_test.go │ │ │ │ │ │ ├── tables.go │ │ │ │ │ │ ├── trie.go │ │ │ │ │ │ └── trieval.go │ │ │ │ │ ├── internal │ │ │ │ │ │ └── timeseries │ │ │ │ │ │ │ ├── timeseries.go │ │ │ │ │ │ │ └── timeseries_test.go │ │ │ │ │ ├── lex │ │ │ │ │ │ └── httplex │ │ │ │ │ │ │ ├── httplex.go │ │ │ │ │ │ │ └── httplex_test.go │ │ │ │ │ ├── proxy │ │ │ │ │ │ ├── direct.go │ │ │ │ │ │ ├── per_host.go │ │ │ │ │ │ ├── per_host_test.go │ │ │ │ │ │ ├── proxy.go │ │ │ │ │ │ ├── proxy_test.go │ │ │ │ │ │ └── socks5.go │ │ │ │ │ └── trace │ │ │ │ │ │ ├── events.go │ │ │ │ │ │ ├── histogram.go │ │ │ │ │ │ ├── histogram_test.go │ │ │ │ │ │ ├── trace.go │ │ │ │ │ │ ├── trace_go16.go │ │ │ │ │ │ ├── trace_go17.go │ │ │ │ │ │ └── trace_test.go │ │ │ │ │ ├── oauth2 │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── client_appengine.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── google │ │ │ │ │ │ ├── appengine.go │ │ │ │ │ │ ├── appengine_hook.go │ │ │ │ │ │ ├── appengineflex_hook.go │ │ │ │ │ │ ├── default.go │ │ │ │ │ │ ├── example_test.go │ │ │ │ │ │ ├── google.go │ │ │ │ │ │ ├── google_test.go │ │ │ │ │ │ ├── jwt.go │ │ │ │ │ │ ├── jwt_test.go │ │ │ │ │ │ ├── sdk.go │ │ │ │ │ │ └── sdk_test.go │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── oauth2.go │ │ │ │ │ │ ├── oauth2_test.go │ │ │ │ │ │ ├── token.go │ │ │ │ │ │ ├── token_test.go │ │ │ │ │ │ ├── transport.go │ │ │ │ │ │ └── transport_test.go │ │ │ │ │ ├── jws │ │ │ │ │ │ ├── jws.go │ │ │ │ │ │ └── jws_test.go │ │ │ │ │ ├── jwt │ │ │ │ │ │ ├── example_test.go │ │ │ │ │ │ ├── jwt.go │ │ │ │ │ │ └── jwt_test.go │ │ │ │ │ ├── oauth2.go │ │ │ │ │ ├── oauth2_test.go │ │ │ │ │ ├── token.go │ │ │ │ │ ├── token_test.go │ │ │ │ │ ├── transport.go │ │ │ │ │ └── transport_test.go │ │ │ │ │ ├── sys │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── PATENTS │ │ │ │ │ ├── README.md │ │ │ │ │ ├── codereview.cfg │ │ │ │ │ ├── unix │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── asm_darwin_386.s │ │ │ │ │ │ ├── asm_darwin_amd64.s │ │ │ │ │ │ ├── asm_darwin_arm.s │ │ │ │ │ │ ├── asm_darwin_arm64.s │ │ │ │ │ │ ├── asm_dragonfly_amd64.s │ │ │ │ │ │ ├── asm_freebsd_386.s │ │ │ │ │ │ ├── asm_freebsd_amd64.s │ │ │ │ │ │ ├── asm_freebsd_arm.s │ │ │ │ │ │ ├── asm_linux_386.s │ │ │ │ │ │ ├── asm_linux_amd64.s │ │ │ │ │ │ ├── asm_linux_arm.s │ │ │ │ │ │ ├── asm_linux_arm64.s │ │ │ │ │ │ ├── asm_linux_mips64x.s │ │ │ │ │ │ ├── asm_linux_mipsx.s │ │ │ │ │ │ ├── asm_linux_ppc64x.s │ │ │ │ │ │ ├── asm_linux_s390x.s │ │ │ │ │ │ ├── asm_netbsd_386.s │ │ │ │ │ │ ├── asm_netbsd_amd64.s │ │ │ │ │ │ ├── asm_netbsd_arm.s │ │ │ │ │ │ ├── asm_openbsd_386.s │ │ │ │ │ │ ├── asm_openbsd_amd64.s │ │ │ │ │ │ ├── asm_openbsd_arm.s │ │ │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ │ │ ├── bluetooth_linux.go │ │ │ │ │ │ ├── cap_freebsd.go │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ ├── creds_test.go │ │ │ │ │ │ ├── dev_darwin.go │ │ │ │ │ │ ├── dev_darwin_test.go │ │ │ │ │ │ ├── dev_dragonfly.go │ │ │ │ │ │ ├── dev_dragonfly_test.go │ │ │ │ │ │ ├── dev_freebsd.go │ │ │ │ │ │ ├── dev_linux.go │ │ │ │ │ │ ├── dev_linux_test.go │ │ │ │ │ │ ├── dev_netbsd.go │ │ │ │ │ │ ├── dev_netbsd_test.go │ │ │ │ │ │ ├── dev_openbsd.go │ │ │ │ │ │ ├── dev_openbsd_test.go │ │ │ │ │ │ ├── dev_solaris_test.go │ │ │ │ │ │ ├── dirent.go │ │ │ │ │ │ ├── endian_big.go │ │ │ │ │ │ ├── endian_little.go │ │ │ │ │ │ ├── env_unix.go │ │ │ │ │ │ ├── env_unset.go │ │ │ │ │ │ ├── errors_freebsd_386.go │ │ │ │ │ │ ├── errors_freebsd_amd64.go │ │ │ │ │ │ ├── errors_freebsd_arm.go │ │ │ │ │ │ ├── export_test.go │ │ │ │ │ │ ├── flock.go │ │ │ │ │ │ ├── flock_linux_32bit.go │ │ │ │ │ │ ├── gccgo.go │ │ │ │ │ │ ├── gccgo_c.c │ │ │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ │ │ ├── mkall.sh │ │ │ │ │ │ ├── mkerrors.sh │ │ │ │ │ │ ├── mkpost.go │ │ │ │ │ │ ├── mksyscall.pl │ │ │ │ │ │ ├── mksyscall_solaris.pl │ │ │ │ │ │ ├── mksysctl_openbsd.pl │ │ │ │ │ │ ├── mksysnum_darwin.pl │ │ │ │ │ │ ├── mksysnum_dragonfly.pl │ │ │ │ │ │ ├── mksysnum_freebsd.pl │ │ │ │ │ │ ├── mksysnum_netbsd.pl │ │ │ │ │ │ ├── mksysnum_openbsd.pl │ │ │ │ │ │ ├── mmap_unix_test.go │ │ │ │ │ │ ├── openbsd_pledge.go │ │ │ │ │ │ ├── openbsd_test.go │ │ │ │ │ │ ├── pagesize_unix.go │ │ │ │ │ │ ├── race.go │ │ │ │ │ │ ├── race0.go │ │ │ │ │ │ ├── sockcmsg_linux.go │ │ │ │ │ │ ├── sockcmsg_unix.go │ │ │ │ │ │ ├── str.go │ │ │ │ │ │ ├── syscall.go │ │ │ │ │ │ ├── syscall_bsd.go │ │ │ │ │ │ ├── syscall_bsd_test.go │ │ │ │ │ │ ├── syscall_darwin.go │ │ │ │ │ │ ├── syscall_darwin_386.go │ │ │ │ │ │ ├── syscall_darwin_amd64.go │ │ │ │ │ │ ├── syscall_darwin_arm.go │ │ │ │ │ │ ├── syscall_darwin_arm64.go │ │ │ │ │ │ ├── syscall_dragonfly.go │ │ │ │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ │ │ │ ├── syscall_freebsd.go │ │ │ │ │ │ ├── syscall_freebsd_386.go │ │ │ │ │ │ ├── syscall_freebsd_amd64.go │ │ │ │ │ │ ├── syscall_freebsd_arm.go │ │ │ │ │ │ ├── syscall_freebsd_test.go │ │ │ │ │ │ ├── syscall_linux.go │ │ │ │ │ │ ├── syscall_linux_386.go │ │ │ │ │ │ ├── syscall_linux_amd64.go │ │ │ │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ │ │ │ ├── syscall_linux_arm.go │ │ │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ │ │ ├── syscall_linux_mips64x.go │ │ │ │ │ │ ├── syscall_linux_mipsx.go │ │ │ │ │ │ ├── syscall_linux_ppc64x.go │ │ │ │ │ │ ├── syscall_linux_s390x.go │ │ │ │ │ │ ├── syscall_linux_sparc64.go │ │ │ │ │ │ ├── syscall_linux_test.go │ │ │ │ │ │ ├── syscall_netbsd.go │ │ │ │ │ │ ├── syscall_netbsd_386.go │ │ │ │ │ │ ├── syscall_netbsd_amd64.go │ │ │ │ │ │ ├── syscall_netbsd_arm.go │ │ │ │ │ │ ├── syscall_no_getwd.go │ │ │ │ │ │ ├── syscall_openbsd.go │ │ │ │ │ │ ├── syscall_openbsd_386.go │ │ │ │ │ │ ├── syscall_openbsd_amd64.go │ │ │ │ │ │ ├── syscall_openbsd_arm.go │ │ │ │ │ │ ├── syscall_solaris.go │ │ │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ │ │ ├── syscall_solaris_test.go │ │ │ │ │ │ ├── syscall_test.go │ │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ │ ├── syscall_unix_gc.go │ │ │ │ │ │ ├── syscall_unix_test.go │ │ │ │ │ │ ├── timestruct.go │ │ │ │ │ │ ├── types_darwin.go │ │ │ │ │ │ ├── types_dragonfly.go │ │ │ │ │ │ ├── types_freebsd.go │ │ │ │ │ │ ├── types_netbsd.go │ │ │ │ │ │ ├── types_openbsd.go │ │ │ │ │ │ ├── types_solaris.go │ │ │ │ │ │ ├── zerrors_darwin_386.go │ │ │ │ │ │ ├── zerrors_darwin_amd64.go │ │ │ │ │ │ ├── zerrors_darwin_arm.go │ │ │ │ │ │ ├── zerrors_darwin_arm64.go │ │ │ │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ │ │ │ ├── zerrors_freebsd_386.go │ │ │ │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ │ │ │ ├── zerrors_freebsd_arm.go │ │ │ │ │ │ ├── zerrors_linux_386.go │ │ │ │ │ │ ├── zerrors_linux_amd64.go │ │ │ │ │ │ ├── zerrors_linux_arm.go │ │ │ │ │ │ ├── zerrors_linux_arm64.go │ │ │ │ │ │ ├── zerrors_linux_mips.go │ │ │ │ │ │ ├── zerrors_linux_mips64.go │ │ │ │ │ │ ├── zerrors_linux_mips64le.go │ │ │ │ │ │ ├── zerrors_linux_mipsle.go │ │ │ │ │ │ ├── zerrors_linux_ppc64.go │ │ │ │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ │ │ │ ├── zerrors_linux_s390x.go │ │ │ │ │ │ ├── zerrors_linux_sparc64.go │ │ │ │ │ │ ├── zerrors_netbsd_386.go │ │ │ │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ │ │ │ ├── zerrors_netbsd_arm.go │ │ │ │ │ │ ├── zerrors_openbsd_386.go │ │ │ │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ │ │ │ ├── zerrors_openbsd_arm.go │ │ │ │ │ │ ├── zerrors_solaris_amd64.go │ │ │ │ │ │ ├── zptrace386_linux.go │ │ │ │ │ │ ├── zptracearm_linux.go │ │ │ │ │ │ ├── zptracemips_linux.go │ │ │ │ │ │ ├── zptracemipsle_linux.go │ │ │ │ │ │ ├── zsyscall_darwin_386.go │ │ │ │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ │ │ │ ├── zsyscall_darwin_arm.go │ │ │ │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ │ │ │ ├── zsyscall_freebsd_386.go │ │ │ │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ │ │ │ ├── zsyscall_linux_386.go │ │ │ │ │ │ ├── zsyscall_linux_amd64.go │ │ │ │ │ │ ├── zsyscall_linux_arm.go │ │ │ │ │ │ ├── zsyscall_linux_arm64.go │ │ │ │ │ │ ├── zsyscall_linux_mips.go │ │ │ │ │ │ ├── zsyscall_linux_mips64.go │ │ │ │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ │ │ │ ├── zsyscall_linux_s390x.go │ │ │ │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ │ │ │ ├── zsyscall_netbsd_386.go │ │ │ │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ │ │ │ ├── zsyscall_openbsd_386.go │ │ │ │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ │ │ │ ├── zsysctl_openbsd_386.go │ │ │ │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ │ │ │ ├── zsysnum_darwin_386.go │ │ │ │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ │ │ │ ├── zsysnum_darwin_arm.go │ │ │ │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ │ │ │ ├── zsysnum_freebsd_386.go │ │ │ │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ │ │ │ ├── zsysnum_linux_386.go │ │ │ │ │ │ ├── zsysnum_linux_amd64.go │ │ │ │ │ │ ├── zsysnum_linux_arm.go │ │ │ │ │ │ ├── zsysnum_linux_arm64.go │ │ │ │ │ │ ├── zsysnum_linux_mips.go │ │ │ │ │ │ ├── zsysnum_linux_mips64.go │ │ │ │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ │ │ │ ├── zsysnum_linux_s390x.go │ │ │ │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ │ │ │ ├── zsysnum_netbsd_386.go │ │ │ │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ │ │ │ ├── zsysnum_openbsd_386.go │ │ │ │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ │ │ │ ├── zsysnum_solaris_amd64.go │ │ │ │ │ │ ├── ztypes_darwin_386.go │ │ │ │ │ │ ├── ztypes_darwin_amd64.go │ │ │ │ │ │ ├── ztypes_darwin_arm.go │ │ │ │ │ │ ├── ztypes_darwin_arm64.go │ │ │ │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ │ │ │ ├── ztypes_freebsd_386.go │ │ │ │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ │ │ │ ├── ztypes_freebsd_arm.go │ │ │ │ │ │ ├── ztypes_linux_386.go │ │ │ │ │ │ ├── ztypes_linux_amd64.go │ │ │ │ │ │ ├── ztypes_linux_arm.go │ │ │ │ │ │ ├── ztypes_linux_arm64.go │ │ │ │ │ │ ├── ztypes_linux_mips.go │ │ │ │ │ │ ├── ztypes_linux_mips64.go │ │ │ │ │ │ ├── ztypes_linux_mips64le.go │ │ │ │ │ │ ├── ztypes_linux_mipsle.go │ │ │ │ │ │ ├── ztypes_linux_ppc64.go │ │ │ │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ │ │ │ ├── ztypes_linux_s390x.go │ │ │ │ │ │ ├── ztypes_linux_sparc64.go │ │ │ │ │ │ ├── ztypes_netbsd_386.go │ │ │ │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ │ │ │ ├── ztypes_netbsd_arm.go │ │ │ │ │ │ ├── ztypes_openbsd_386.go │ │ │ │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ │ │ │ ├── ztypes_openbsd_arm.go │ │ │ │ │ │ └── ztypes_solaris_amd64.go │ │ │ │ │ └── windows │ │ │ │ │ │ ├── asm_windows_386.s │ │ │ │ │ │ ├── asm_windows_amd64.s │ │ │ │ │ │ ├── dll_windows.go │ │ │ │ │ │ ├── env_unset.go │ │ │ │ │ │ ├── env_windows.go │ │ │ │ │ │ ├── eventlog.go │ │ │ │ │ │ ├── exec_windows.go │ │ │ │ │ │ ├── memory_windows.go │ │ │ │ │ │ ├── mksyscall.go │ │ │ │ │ │ ├── race.go │ │ │ │ │ │ ├── race0.go │ │ │ │ │ │ ├── security_windows.go │ │ │ │ │ │ ├── service.go │ │ │ │ │ │ ├── str.go │ │ │ │ │ │ ├── syscall.go │ │ │ │ │ │ ├── syscall_test.go │ │ │ │ │ │ ├── syscall_windows.go │ │ │ │ │ │ ├── syscall_windows_test.go │ │ │ │ │ │ ├── types_windows.go │ │ │ │ │ │ ├── types_windows_386.go │ │ │ │ │ │ ├── types_windows_amd64.go │ │ │ │ │ │ └── zsyscall_windows.go │ │ │ │ │ ├── text │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── PATENTS │ │ │ │ │ ├── README │ │ │ │ │ ├── codereview.cfg │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ ├── gen │ │ │ │ │ │ │ ├── code.go │ │ │ │ │ │ │ └── gen.go │ │ │ │ │ │ ├── gen_test.go │ │ │ │ │ │ ├── internal.go │ │ │ │ │ │ ├── internal_test.go │ │ │ │ │ │ ├── match.go │ │ │ │ │ │ ├── match_test.go │ │ │ │ │ │ ├── tables.go │ │ │ │ │ │ ├── triegen │ │ │ │ │ │ │ ├── compact.go │ │ │ │ │ │ │ ├── data_test.go │ │ │ │ │ │ │ ├── example_compact_test.go │ │ │ │ │ │ │ ├── example_test.go │ │ │ │ │ │ │ ├── gen_test.go │ │ │ │ │ │ │ ├── print.go │ │ │ │ │ │ │ └── triegen.go │ │ │ │ │ │ └── ucd │ │ │ │ │ │ │ ├── example_test.go │ │ │ │ │ │ │ ├── ucd.go │ │ │ │ │ │ │ └── ucd_test.go │ │ │ │ │ ├── secure │ │ │ │ │ │ ├── bidirule │ │ │ │ │ │ │ ├── bench_test.go │ │ │ │ │ │ │ ├── bidirule.go │ │ │ │ │ │ │ └── bidirule_test.go │ │ │ │ │ │ └── doc.go │ │ │ │ │ ├── transform │ │ │ │ │ │ ├── examples_test.go │ │ │ │ │ │ ├── transform.go │ │ │ │ │ │ └── transform_test.go │ │ │ │ │ └── unicode │ │ │ │ │ │ ├── bidi │ │ │ │ │ │ ├── bidi.go │ │ │ │ │ │ ├── bracket.go │ │ │ │ │ │ ├── core.go │ │ │ │ │ │ ├── core_test.go │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ ├── gen_ranges.go │ │ │ │ │ │ ├── gen_trieval.go │ │ │ │ │ │ ├── prop.go │ │ │ │ │ │ ├── ranges_test.go │ │ │ │ │ │ ├── tables.go │ │ │ │ │ │ ├── tables_test.go │ │ │ │ │ │ └── trieval.go │ │ │ │ │ │ ├── cldr │ │ │ │ │ │ ├── base.go │ │ │ │ │ │ ├── cldr.go │ │ │ │ │ │ ├── cldr_test.go │ │ │ │ │ │ ├── collate.go │ │ │ │ │ │ ├── collate_test.go │ │ │ │ │ │ ├── data_test.go │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ ├── examples_test.go │ │ │ │ │ │ ├── makexml.go │ │ │ │ │ │ ├── resolve.go │ │ │ │ │ │ ├── resolve_test.go │ │ │ │ │ │ ├── slice.go │ │ │ │ │ │ ├── slice_test.go │ │ │ │ │ │ └── xml.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── norm │ │ │ │ │ │ ├── composition.go │ │ │ │ │ │ ├── composition_test.go │ │ │ │ │ │ ├── example_iter_test.go │ │ │ │ │ │ ├── example_test.go │ │ │ │ │ │ ├── forminfo.go │ │ │ │ │ │ ├── forminfo_test.go │ │ │ │ │ │ ├── input.go │ │ │ │ │ │ ├── iter.go │ │ │ │ │ │ ├── iter_test.go │ │ │ │ │ │ ├── maketables.go │ │ │ │ │ │ ├── norm_test.go │ │ │ │ │ │ ├── normalize.go │ │ │ │ │ │ ├── normalize_test.go │ │ │ │ │ │ ├── readwriter.go │ │ │ │ │ │ ├── readwriter_test.go │ │ │ │ │ │ ├── tables.go │ │ │ │ │ │ ├── transform.go │ │ │ │ │ │ ├── transform_test.go │ │ │ │ │ │ ├── trie.go │ │ │ │ │ │ ├── triegen.go │ │ │ │ │ │ └── ucd_test.go │ │ │ │ │ │ └── rangetable │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ ├── merge.go │ │ │ │ │ │ ├── merge_test.go │ │ │ │ │ │ ├── rangetable.go │ │ │ │ │ │ ├── rangetable_test.go │ │ │ │ │ │ └── tables.go │ │ │ │ │ └── tools │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── PATENTS │ │ │ │ │ ├── README.md │ │ │ │ │ ├── codereview.cfg │ │ │ │ │ ├── go │ │ │ │ │ └── ast │ │ │ │ │ │ └── astutil │ │ │ │ │ │ ├── enclosing.go │ │ │ │ │ │ ├── enclosing_test.go │ │ │ │ │ │ ├── imports.go │ │ │ │ │ │ ├── imports_test.go │ │ │ │ │ │ └── util.go │ │ │ │ │ └── imports │ │ │ │ │ ├── fastwalk.go │ │ │ │ │ ├── fastwalk_dirent_fileno.go │ │ │ │ │ ├── fastwalk_dirent_ino.go │ │ │ │ │ ├── fastwalk_portable.go │ │ │ │ │ ├── fastwalk_test.go │ │ │ │ │ ├── fastwalk_unix.go │ │ │ │ │ ├── fix.go │ │ │ │ │ ├── fix_test.go │ │ │ │ │ ├── imports.go │ │ │ │ │ ├── mkindex.go │ │ │ │ │ ├── mkstdlib.go │ │ │ │ │ ├── sortimports.go │ │ │ │ │ └── zstdlib.go │ │ │ ├── google.golang.org │ │ │ │ ├── api │ │ │ │ │ ├── .hgignore │ │ │ │ │ ├── .hgtags │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── GettingStarted.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── NOTES │ │ │ │ │ ├── README.md │ │ │ │ │ ├── TODO │ │ │ │ │ ├── api-list.json │ │ │ │ │ ├── gensupport │ │ │ │ │ │ ├── backoff.go │ │ │ │ │ │ ├── backoff_test.go │ │ │ │ │ │ ├── buffer.go │ │ │ │ │ │ ├── buffer_test.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── header.go │ │ │ │ │ │ ├── header_test.go │ │ │ │ │ │ ├── json.go │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ ├── jsonfloat.go │ │ │ │ │ │ ├── jsonfloat_test.go │ │ │ │ │ │ ├── media.go │ │ │ │ │ │ ├── media_test.go │ │ │ │ │ │ ├── params.go │ │ │ │ │ │ ├── resumable.go │ │ │ │ │ │ ├── resumable_test.go │ │ │ │ │ │ ├── retry.go │ │ │ │ │ │ ├── retry_test.go │ │ │ │ │ │ ├── send.go │ │ │ │ │ │ └── util_test.go │ │ │ │ │ ├── googleapi │ │ │ │ │ │ ├── googleapi.go │ │ │ │ │ │ ├── googleapi_test.go │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ └── uritemplates │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── uritemplates.go │ │ │ │ │ │ │ │ ├── uritemplates_test.go │ │ │ │ │ │ │ │ └── utils.go │ │ │ │ │ │ ├── transport │ │ │ │ │ │ │ └── apikey.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ └── types_test.go │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── pool.go │ │ │ │ │ │ ├── pool_test.go │ │ │ │ │ │ └── settings.go │ │ │ │ │ ├── iterator │ │ │ │ │ │ ├── examples_test.go │ │ │ │ │ │ ├── iterator.go │ │ │ │ │ │ └── iterator_test.go │ │ │ │ │ ├── key.json.enc │ │ │ │ │ ├── option │ │ │ │ │ │ ├── option.go │ │ │ │ │ │ └── option_test.go │ │ │ │ │ ├── storage │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── storage-api.json │ │ │ │ │ │ │ └── storage-gen.go │ │ │ │ │ └── transport │ │ │ │ │ │ ├── dial.go │ │ │ │ │ │ ├── dial_appengine.go │ │ │ │ │ │ └── dial_test.go │ │ │ │ ├── appengine │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── appengine.go │ │ │ │ │ ├── appengine_test.go │ │ │ │ │ ├── appengine_vm.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── identity.go │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── api.go │ │ │ │ │ │ ├── api_classic.go │ │ │ │ │ │ ├── api_common.go │ │ │ │ │ │ ├── api_race_test.go │ │ │ │ │ │ ├── api_test.go │ │ │ │ │ │ ├── app_id.go │ │ │ │ │ │ ├── app_id_test.go │ │ │ │ │ │ ├── app_identity │ │ │ │ │ │ │ ├── app_identity_service.pb.go │ │ │ │ │ │ │ └── app_identity_service.proto │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ ├── api_base.pb.go │ │ │ │ │ │ │ └── api_base.proto │ │ │ │ │ │ ├── datastore │ │ │ │ │ │ │ ├── datastore_v3.pb.go │ │ │ │ │ │ │ └── datastore_v3.proto │ │ │ │ │ │ ├── identity.go │ │ │ │ │ │ ├── identity_classic.go │ │ │ │ │ │ ├── identity_vm.go │ │ │ │ │ │ ├── internal.go │ │ │ │ │ │ ├── internal_vm_test.go │ │ │ │ │ │ ├── log │ │ │ │ │ │ │ ├── log_service.pb.go │ │ │ │ │ │ │ └── log_service.proto │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ ├── main_vm.go │ │ │ │ │ │ ├── metadata.go │ │ │ │ │ │ ├── modules │ │ │ │ │ │ │ ├── modules_service.pb.go │ │ │ │ │ │ │ └── modules_service.proto │ │ │ │ │ │ ├── net.go │ │ │ │ │ │ ├── net_test.go │ │ │ │ │ │ ├── regen.sh │ │ │ │ │ │ ├── remote_api │ │ │ │ │ │ │ ├── remote_api.pb.go │ │ │ │ │ │ │ └── remote_api.proto │ │ │ │ │ │ ├── socket │ │ │ │ │ │ │ ├── socket_service.pb.go │ │ │ │ │ │ │ └── socket_service.proto │ │ │ │ │ │ ├── transaction.go │ │ │ │ │ │ └── urlfetch │ │ │ │ │ │ │ ├── urlfetch_service.pb.go │ │ │ │ │ │ │ └── urlfetch_service.proto │ │ │ │ │ ├── namespace.go │ │ │ │ │ ├── namespace_test.go │ │ │ │ │ ├── socket │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── socket_classic.go │ │ │ │ │ │ └── socket_vm.go │ │ │ │ │ ├── timeout.go │ │ │ │ │ └── urlfetch │ │ │ │ │ │ └── urlfetch.go │ │ │ │ ├── genproto │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── googleapis │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ ├── annotations │ │ │ │ │ │ │ │ ├── annotations.pb.go │ │ │ │ │ │ │ │ └── http.pb.go │ │ │ │ │ │ │ ├── authorization_config.pb.go │ │ │ │ │ │ │ └── experimental.pb.go │ │ │ │ │ │ ├── iam │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ ├── iam_policy.pb.go │ │ │ │ │ │ │ │ └── policy.pb.go │ │ │ │ │ │ └── rpc │ │ │ │ │ │ │ └── status │ │ │ │ │ │ │ └── status.pb.go │ │ │ │ │ ├── regen.go │ │ │ │ │ └── regen.sh │ │ │ │ └── grpc │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── PATENTS │ │ │ │ │ ├── README.md │ │ │ │ │ ├── backoff.go │ │ │ │ │ ├── backoff_test.go │ │ │ │ │ ├── balancer.go │ │ │ │ │ ├── balancer_test.go │ │ │ │ │ ├── call.go │ │ │ │ │ ├── call_test.go │ │ │ │ │ ├── clientconn.go │ │ │ │ │ ├── clientconn_test.go │ │ │ │ │ ├── codec.go │ │ │ │ │ ├── codec_benchmark_test.go │ │ │ │ │ ├── codec_test.go │ │ │ │ │ ├── codegen.sh │ │ │ │ │ ├── codes │ │ │ │ │ ├── code_string.go │ │ │ │ │ └── codes.go │ │ │ │ │ ├── coverage.sh │ │ │ │ │ ├── credentials │ │ │ │ │ ├── credentials.go │ │ │ │ │ ├── credentials_test.go │ │ │ │ │ ├── credentials_util_go17.go │ │ │ │ │ ├── credentials_util_go18.go │ │ │ │ │ ├── credentials_util_pre_go17.go │ │ │ │ │ └── oauth │ │ │ │ │ │ └── oauth.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── go16.go │ │ │ │ │ ├── go17.go │ │ │ │ │ ├── grpclb.go │ │ │ │ │ ├── grpclb │ │ │ │ │ ├── grpc_lb_v1 │ │ │ │ │ │ ├── grpclb.pb.go │ │ │ │ │ │ └── grpclb.proto │ │ │ │ │ ├── grpclb_server_generated.go │ │ │ │ │ └── grpclb_test.go │ │ │ │ │ ├── grpclog │ │ │ │ │ └── logger.go │ │ │ │ │ ├── interceptor.go │ │ │ │ │ ├── internal │ │ │ │ │ └── internal.go │ │ │ │ │ ├── keepalive │ │ │ │ │ └── keepalive.go │ │ │ │ │ ├── metadata │ │ │ │ │ ├── metadata.go │ │ │ │ │ └── metadata_test.go │ │ │ │ │ ├── naming │ │ │ │ │ └── naming.go │ │ │ │ │ ├── peer │ │ │ │ │ └── peer.go │ │ │ │ │ ├── proxy.go │ │ │ │ │ ├── proxy_test.go │ │ │ │ │ ├── rpc_util.go │ │ │ │ │ ├── rpc_util_test.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── server_test.go │ │ │ │ │ ├── stats │ │ │ │ │ ├── handlers.go │ │ │ │ │ ├── stats.go │ │ │ │ │ └── stats_test.go │ │ │ │ │ ├── status │ │ │ │ │ ├── status.go │ │ │ │ │ └── status_test.go │ │ │ │ │ ├── stream.go │ │ │ │ │ ├── tap │ │ │ │ │ └── tap.go │ │ │ │ │ ├── trace.go │ │ │ │ │ └── transport │ │ │ │ │ ├── control.go │ │ │ │ │ ├── go16.go │ │ │ │ │ ├── go17.go │ │ │ │ │ ├── handler_server.go │ │ │ │ │ ├── handler_server_test.go │ │ │ │ │ ├── http2_client.go │ │ │ │ │ ├── http2_server.go │ │ │ │ │ ├── http_util.go │ │ │ │ │ ├── http_util_test.go │ │ │ │ │ ├── transport.go │ │ │ │ │ └── transport_test.go │ │ │ └── gopkg.in │ │ │ │ └── yaml.v2 │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── LICENSE.libyaml │ │ │ │ ├── README.md │ │ │ │ ├── apic.go │ │ │ │ ├── decode.go │ │ │ │ ├── decode_test.go │ │ │ │ ├── emitterc.go │ │ │ │ ├── encode.go │ │ │ │ ├── encode_test.go │ │ │ │ ├── example_embedded_test.go │ │ │ │ ├── parserc.go │ │ │ │ ├── readerc.go │ │ │ │ ├── resolve.go │ │ │ │ ├── scannerc.go │ │ │ │ ├── sorter.go │ │ │ │ ├── suite_test.go │ │ │ │ ├── writerc.go │ │ │ │ ├── yaml.go │ │ │ │ ├── yamlh.go │ │ │ │ └── yamlprivateh.go │ │ └── work │ │ │ ├── init_test.go │ │ │ ├── pool.go │ │ │ └── pool_test.go │ │ └── bosh-utils │ │ ├── .envrc │ │ ├── .gitignore │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── assert │ │ ├── json_matchers.go │ │ └── path_matchers.go │ │ ├── bin │ │ ├── build │ │ ├── build-linux-amd64 │ │ ├── env │ │ ├── go │ │ ├── install-ginkgo │ │ ├── require-ci-golang-version │ │ ├── test │ │ └── test-unit │ │ ├── blobstore │ │ ├── blob_manager.go │ │ ├── blob_manager_interface.go │ │ ├── blob_manager_test.go │ │ ├── blobstore_interface.go │ │ ├── blobstore_suite_test.go │ │ ├── digest_blobstore_interface.go │ │ ├── digest_verifiable_blobstore.go │ │ ├── digest_verifiable_blobstore_test.go │ │ ├── dummy_blobstore.go │ │ ├── external_blobstore.go │ │ ├── external_blobstore_test.go │ │ ├── fakes │ │ │ ├── fake_blob_manager.go │ │ │ ├── fake_blobstore.go │ │ │ └── fake_digest_blobstore.go │ │ ├── local_blobstore.go │ │ ├── local_blobstore_test.go │ │ ├── provider.go │ │ ├── provider_test.go │ │ ├── retryable_blobstore.go │ │ ├── retryable_blobstore_test.go │ │ └── test_assets │ │ │ └── some.config │ │ ├── ci │ │ ├── README.md │ │ ├── configure.sh │ │ ├── docker │ │ │ ├── bosh-utils │ │ │ │ ├── Dockerfile │ │ │ │ ├── build.sh │ │ │ │ └── install-go.sh │ │ │ └── deps-golang │ │ ├── pipeline.yml │ │ └── tasks │ │ │ ├── build-multidigest-binary.sh │ │ │ ├── build-multidigest-binary.yml │ │ │ ├── test-unit-windows.yml │ │ │ ├── test-unit.ps1 │ │ │ ├── test-unit.sh │ │ │ └── test-unit.yml │ │ ├── crypto │ │ ├── algorithms.go │ │ ├── algorithms_test.go │ │ ├── cryptofakes │ │ │ └── fake_archive_digest_file_path_reader.go │ │ ├── digest.go │ │ ├── digest_test.go │ │ ├── interfaces.go │ │ ├── multiple_digest.go │ │ ├── multiple_digest_test.go │ │ ├── suite_test.go │ │ ├── x509.go │ │ └── x509_test.go │ │ ├── errors │ │ ├── errors.go │ │ ├── errors_suite_test.go │ │ ├── errors_test.go │ │ ├── multi_error.go │ │ └── multi_error_test.go │ │ ├── fileutil │ │ ├── commands_suite_test.go │ │ ├── compressor_interface.go │ │ ├── copier_interface.go │ │ ├── fakes │ │ │ ├── fake_compressor.go │ │ │ ├── fake_copier.go │ │ │ └── fake_mover.go │ │ ├── generic_cp_copier.go │ │ ├── generic_cp_copier_test.go │ │ ├── mover.go │ │ ├── mover_interface.go │ │ ├── mover_test.go │ │ ├── mover_windows_test.go │ │ ├── tarball_compressor.go │ │ ├── tarball_compressor_test.go │ │ └── test_assets │ │ │ ├── compressor-decompress-file-to-dir.tgz │ │ │ ├── symlink_target │ │ │ ├── app.stdout.log │ │ │ └── sub_dir │ │ │ │ └── sub_app.stdout.log │ │ │ └── test_filtered_copy_to_temp │ │ │ ├── app.stderr.log │ │ │ ├── app.stdout.log │ │ │ ├── other_logs │ │ │ ├── more_logs │ │ │ │ └── more.stdout.log │ │ │ ├── other_app.stderr.log │ │ │ └── other_app.stdout.log │ │ │ └── some_directory │ │ │ └── sub_dir │ │ │ └── other_sub_dir │ │ │ └── .keep │ │ ├── httpclient │ │ ├── assets │ │ │ ├── test_ca.pem │ │ │ ├── test_client.key │ │ │ └── test_client.pem │ │ ├── default_http_clients.go │ │ ├── default_http_clients_test.go │ │ ├── http_client.go │ │ ├── http_client_test.go │ │ ├── httpclient_suite_test.go │ │ ├── keepalive_syscall_linux_test.go │ │ ├── mutual_tls_client.go │ │ ├── mutual_tls_client_test.go │ │ ├── request_retryable.go │ │ ├── request_retryable_test.go │ │ ├── retry_clients.go │ │ ├── retry_clients_test.go │ │ ├── socksify.go │ │ └── socksify_test.go │ │ ├── logger │ │ ├── async.go │ │ ├── async_test.go │ │ ├── fakes │ │ │ └── fake_logger.go │ │ ├── file │ │ │ ├── file_logger.go │ │ │ ├── file_suite_test.go │ │ │ └── file_test.go │ │ ├── logger.go │ │ ├── logger_suite_test.go │ │ ├── logger_test.go │ │ └── loggerfakes │ │ │ └── fake_logger.go │ │ ├── main │ │ ├── main_suite_test.go │ │ ├── verify_multidigest.go │ │ ├── verify_multidigest_test.go │ │ └── version.go │ │ ├── property │ │ ├── builders.go │ │ ├── list.go │ │ ├── map.go │ │ ├── map_test.go │ │ ├── property.go │ │ └── suite_test.go │ │ ├── retrystrategy │ │ ├── attempt_retry_strategy.go │ │ ├── attempt_retry_strategy_test.go │ │ ├── fakes │ │ │ └── fake_retry_strategy.go │ │ ├── retry_strategy.go │ │ ├── retrystrategy_suite_test.go │ │ ├── timeout_retry_strategy.go │ │ ├── timeout_retry_strategy_test.go │ │ ├── unlimited_retry_strategy.go │ │ └── unlimited_retry_strategy_test.go │ │ ├── system │ │ ├── cmd_runner_interface.go │ │ ├── exec_cmd_runner.go │ │ ├── exec_cmd_runner_fixtures │ │ │ ├── cat.go │ │ │ ├── child_ignore_term.go │ │ │ ├── child_term.go │ │ │ ├── exe_exits.go │ │ │ ├── false.go │ │ │ ├── parent_ignore_term.go │ │ │ ├── parent_term.go │ │ │ └── windows_exe.go │ │ ├── exec_cmd_runner_test.go │ │ ├── exec_cmd_runner_unix.go │ │ ├── exec_cmd_runner_windows.go │ │ ├── exec_error.go │ │ ├── exec_error_test.go │ │ ├── exec_process.go │ │ ├── exec_process_test.go │ │ ├── exec_process_unix.go │ │ ├── exec_process_unix_test.go │ │ ├── exec_process_windows.go │ │ ├── exec_process_windows_test.go │ │ ├── fakes │ │ │ ├── fake_cmd_runner.go │ │ │ ├── fake_cmd_runner_test.go │ │ │ ├── fake_file_system.go │ │ │ ├── fake_file_system_test.go │ │ │ └── fakes_suite_test.go │ │ ├── file_system_interface.go │ │ ├── ip_helper.go │ │ ├── ip_helper_test.go │ │ ├── os_file_system.go │ │ ├── os_file_system_test.go │ │ ├── os_file_system_unix.go │ │ ├── os_file_system_unix_test.go │ │ ├── os_file_system_windows.go │ │ ├── os_file_system_windows_test.go │ │ ├── os_long_path_test.go │ │ ├── system_suite_test.go │ │ └── test_assets │ │ │ └── test_copy_dir_entries │ │ │ ├── bar │ │ │ ├── bar.txt │ │ │ └── baz │ │ │ │ └── .gitkeep │ │ │ └── foo.txt │ │ ├── uuid │ │ ├── fakes │ │ │ └── fake_generator.go │ │ ├── generator_interface.go │ │ ├── uuid_suite_test.go │ │ ├── uuid_v4_generator.go │ │ └── uuid_v4_generator_test.go │ │ └── vendor │ │ ├── code.cloudfoundry.org │ │ └── clock │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── clock.go │ │ │ ├── fakeclock │ │ │ ├── fake_clock.go │ │ │ ├── fake_clock_test.go │ │ │ ├── fake_ticker.go │ │ │ ├── fake_ticker_test.go │ │ │ ├── fake_timer.go │ │ │ ├── fake_timer_test.go │ │ │ ├── fakeclock_suite_test.go │ │ │ └── package.go │ │ │ ├── package.go │ │ │ ├── ticker.go │ │ │ └── timer.go │ │ ├── github.com │ │ ├── armon │ │ │ └── go-socks5 │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── auth.go │ │ │ │ ├── auth_test.go │ │ │ │ ├── credentials.go │ │ │ │ ├── credentials_test.go │ │ │ │ ├── request.go │ │ │ │ ├── request_test.go │ │ │ │ ├── resolver.go │ │ │ │ ├── resolver_test.go │ │ │ │ ├── ruleset.go │ │ │ │ ├── ruleset_test.go │ │ │ │ ├── socks5.go │ │ │ │ └── socks5_test.go │ │ ├── bmatcuk │ │ │ └── doublestar │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── doublestar.go │ │ │ │ └── doublestar_test.go │ │ ├── charlievieth │ │ │ └── fs │ │ │ │ ├── LICENSE │ │ │ │ ├── fs.go │ │ │ │ ├── fs_test.go │ │ │ │ ├── fs_unix.go │ │ │ │ ├── fs_windows.go │ │ │ │ └── fs_windows_test.go │ │ ├── cloudfoundry │ │ │ └── socks5-proxy │ │ │ │ ├── Gopkg.lock │ │ │ │ ├── Gopkg.toml │ │ │ │ ├── exports_test.go │ │ │ │ ├── host_key_getter.go │ │ │ │ ├── host_key_getter_test.go │ │ │ │ ├── init_test.go │ │ │ │ ├── socks5_proxy.go │ │ │ │ └── socks5_proxy_test.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 │ │ │ │ └── test_coverage.txt │ │ ├── golang │ │ │ └── protobuf │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── Make.protobuf │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ └── 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 │ │ │ │ ├── map_test.go │ │ │ │ ├── message_set.go │ │ │ │ ├── message_set_test.go │ │ │ │ ├── pointer_reflect.go │ │ │ │ ├── pointer_unsafe.go │ │ │ │ ├── properties.go │ │ │ │ ├── proto3_test.go │ │ │ │ ├── size2_test.go │ │ │ │ ├── size_test.go │ │ │ │ ├── text.go │ │ │ │ ├── text_parser.go │ │ │ │ ├── text_parser_test.go │ │ │ │ └── text_test.go │ │ ├── jessevdk │ │ │ └── go-flags │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── arg.go │ │ │ │ ├── arg_test.go │ │ │ │ ├── assert_test.go │ │ │ │ ├── check_crosscompile.sh │ │ │ │ ├── closest.go │ │ │ │ ├── command.go │ │ │ │ ├── command_test.go │ │ │ │ ├── completion.go │ │ │ │ ├── completion_test.go │ │ │ │ ├── convert.go │ │ │ │ ├── convert_test.go │ │ │ │ ├── error.go │ │ │ │ ├── example_test.go │ │ │ │ ├── flags.go │ │ │ │ ├── group.go │ │ │ │ ├── group_test.go │ │ │ │ ├── help.go │ │ │ │ ├── help_test.go │ │ │ │ ├── ini.go │ │ │ │ ├── ini_test.go │ │ │ │ ├── long_test.go │ │ │ │ ├── man.go │ │ │ │ ├── marshal_test.go │ │ │ │ ├── multitag.go │ │ │ │ ├── option.go │ │ │ │ ├── options_test.go │ │ │ │ ├── optstyle_other.go │ │ │ │ ├── optstyle_windows.go │ │ │ │ ├── parser.go │ │ │ │ ├── parser_test.go │ │ │ │ ├── pointer_test.go │ │ │ │ ├── short_test.go │ │ │ │ ├── tag_test.go │ │ │ │ ├── termsize.go │ │ │ │ ├── termsize_linux.go │ │ │ │ ├── termsize_nosysioctl.go │ │ │ │ ├── termsize_other.go │ │ │ │ ├── termsize_unix.go │ │ │ │ └── unknown_test.go │ │ ├── nu7hatch │ │ │ └── gouuid │ │ │ │ ├── .gitignore │ │ │ │ ├── COPYING │ │ │ │ ├── README.md │ │ │ │ ├── example_test.go │ │ │ │ ├── uuid.go │ │ │ │ └── uuid_test.go │ │ ├── onsi │ │ │ ├── ginkgo │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── config │ │ │ │ │ └── config.go │ │ │ │ ├── ginkgo │ │ │ │ │ ├── bootstrap_command.go │ │ │ │ │ ├── build_command.go │ │ │ │ │ ├── convert │ │ │ │ │ │ ├── ginkgo_ast_nodes.go │ │ │ │ │ │ ├── import.go │ │ │ │ │ │ ├── package_rewriter.go │ │ │ │ │ │ ├── test_finder.go │ │ │ │ │ │ ├── testfile_rewriter.go │ │ │ │ │ │ └── testing_t_rewriter.go │ │ │ │ │ ├── convert_command.go │ │ │ │ │ ├── generate_command.go │ │ │ │ │ ├── help_command.go │ │ │ │ │ ├── interrupthandler │ │ │ │ │ │ ├── interrupt_handler.go │ │ │ │ │ │ ├── sigquit_swallower_unix.go │ │ │ │ │ │ └── sigquit_swallower_windows.go │ │ │ │ │ ├── main.go │ │ │ │ │ ├── nodot │ │ │ │ │ │ ├── nodot.go │ │ │ │ │ │ ├── nodot_suite_test.go │ │ │ │ │ │ └── nodot_test.go │ │ │ │ │ ├── nodot_command.go │ │ │ │ │ ├── notifications.go │ │ │ │ │ ├── run_command.go │ │ │ │ │ ├── run_watch_and_build_command_flags.go │ │ │ │ │ ├── suite_runner.go │ │ │ │ │ ├── testrunner │ │ │ │ │ │ ├── log_writer.go │ │ │ │ │ │ ├── run_result.go │ │ │ │ │ │ ├── test_runner.go │ │ │ │ │ │ └── test_runner_test.go │ │ │ │ │ ├── testsuite │ │ │ │ │ │ ├── test_suite.go │ │ │ │ │ │ ├── testsuite_suite_test.go │ │ │ │ │ │ ├── testsuite_test.go │ │ │ │ │ │ ├── vendor_check_go15.go │ │ │ │ │ │ ├── vendor_check_go15_test.go │ │ │ │ │ │ └── vendor_check_go16.go │ │ │ │ │ ├── unfocus_command.go │ │ │ │ │ ├── version_command.go │ │ │ │ │ ├── watch │ │ │ │ │ │ ├── delta.go │ │ │ │ │ │ ├── delta_tracker.go │ │ │ │ │ │ ├── dependencies.go │ │ │ │ │ │ ├── package_hash.go │ │ │ │ │ │ ├── package_hashes.go │ │ │ │ │ │ └── suite.go │ │ │ │ │ └── watch_command.go │ │ │ │ ├── ginkgo_dsl.go │ │ │ │ ├── internal │ │ │ │ │ ├── codelocation │ │ │ │ │ │ ├── code_location.go │ │ │ │ │ │ ├── code_location_suite_test.go │ │ │ │ │ │ └── code_location_test.go │ │ │ │ │ ├── containernode │ │ │ │ │ │ ├── container_node.go │ │ │ │ │ │ ├── container_node_suite_test.go │ │ │ │ │ │ └── container_node_test.go │ │ │ │ │ ├── failer │ │ │ │ │ │ ├── failer.go │ │ │ │ │ │ ├── failer_suite_test.go │ │ │ │ │ │ └── failer_test.go │ │ │ │ │ ├── leafnodes │ │ │ │ │ │ ├── benchmarker.go │ │ │ │ │ │ ├── interfaces.go │ │ │ │ │ │ ├── it_node.go │ │ │ │ │ │ ├── it_node_test.go │ │ │ │ │ │ ├── leaf_node_suite_test.go │ │ │ │ │ │ ├── measure_node.go │ │ │ │ │ │ ├── measure_node_test.go │ │ │ │ │ │ ├── runner.go │ │ │ │ │ │ ├── setup_nodes.go │ │ │ │ │ │ ├── setup_nodes_test.go │ │ │ │ │ │ ├── shared_runner_test.go │ │ │ │ │ │ ├── suite_nodes.go │ │ │ │ │ │ ├── suite_nodes_test.go │ │ │ │ │ │ ├── synchronized_after_suite_node.go │ │ │ │ │ │ ├── synchronized_after_suite_node_test.go │ │ │ │ │ │ ├── synchronized_before_suite_node.go │ │ │ │ │ │ └── synchronized_before_suite_node_test.go │ │ │ │ │ ├── remote │ │ │ │ │ │ ├── aggregator.go │ │ │ │ │ │ ├── aggregator_test.go │ │ │ │ │ │ ├── fake_output_interceptor_test.go │ │ │ │ │ │ ├── fake_poster_test.go │ │ │ │ │ │ ├── forwarding_reporter.go │ │ │ │ │ │ ├── forwarding_reporter_test.go │ │ │ │ │ │ ├── output_interceptor.go │ │ │ │ │ │ ├── output_interceptor_unix.go │ │ │ │ │ │ ├── output_interceptor_win.go │ │ │ │ │ │ ├── remote_suite_test.go │ │ │ │ │ │ ├── server.go │ │ │ │ │ │ ├── server_test.go │ │ │ │ │ │ ├── syscall_dup_linux_arm64.go │ │ │ │ │ │ ├── syscall_dup_solaris.go │ │ │ │ │ │ └── syscall_dup_unix.go │ │ │ │ │ ├── spec │ │ │ │ │ │ ├── spec.go │ │ │ │ │ │ ├── spec_suite_test.go │ │ │ │ │ │ ├── spec_test.go │ │ │ │ │ │ ├── specs.go │ │ │ │ │ │ └── specs_test.go │ │ │ │ │ ├── spec_iterator │ │ │ │ │ │ ├── index_computer.go │ │ │ │ │ │ ├── index_computer_test.go │ │ │ │ │ │ ├── parallel_spec_iterator.go │ │ │ │ │ │ ├── parallel_spec_iterator_test.go │ │ │ │ │ │ ├── serial_spec_iterator.go │ │ │ │ │ │ ├── serial_spec_iterator_test.go │ │ │ │ │ │ ├── sharded_parallel_spec_iterator.go │ │ │ │ │ │ ├── sharded_parallel_spec_iterator_test.go │ │ │ │ │ │ ├── spec_iterator.go │ │ │ │ │ │ └── spec_iterator_suite_test.go │ │ │ │ │ ├── specrunner │ │ │ │ │ │ ├── random_id.go │ │ │ │ │ │ ├── spec_runner.go │ │ │ │ │ │ ├── spec_runner_suite_test.go │ │ │ │ │ │ └── spec_runner_test.go │ │ │ │ │ ├── suite │ │ │ │ │ │ ├── suite.go │ │ │ │ │ │ ├── suite_suite_test.go │ │ │ │ │ │ └── suite_test.go │ │ │ │ │ ├── testingtproxy │ │ │ │ │ │ └── testing_t_proxy.go │ │ │ │ │ └── writer │ │ │ │ │ │ ├── fake_writer.go │ │ │ │ │ │ ├── writer.go │ │ │ │ │ │ ├── writer_suite_test.go │ │ │ │ │ │ └── writer_test.go │ │ │ │ ├── reporters │ │ │ │ │ ├── default_reporter.go │ │ │ │ │ ├── default_reporter_test.go │ │ │ │ │ ├── fake_reporter.go │ │ │ │ │ ├── junit_reporter.go │ │ │ │ │ ├── junit_reporter_test.go │ │ │ │ │ ├── reporter.go │ │ │ │ │ ├── reporters_suite_test.go │ │ │ │ │ ├── stenographer │ │ │ │ │ │ ├── console_logging.go │ │ │ │ │ │ ├── fake_stenographer.go │ │ │ │ │ │ ├── stenographer.go │ │ │ │ │ │ └── support │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── go-colorable │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── colorable_others.go │ │ │ │ │ │ │ ├── colorable_windows.go │ │ │ │ │ │ │ └── noncolorable.go │ │ │ │ │ │ │ └── go-isatty │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── isatty_appengine.go │ │ │ │ │ │ │ ├── isatty_bsd.go │ │ │ │ │ │ │ ├── isatty_linux.go │ │ │ │ │ │ │ ├── isatty_solaris.go │ │ │ │ │ │ │ └── isatty_windows.go │ │ │ │ │ ├── teamcity_reporter.go │ │ │ │ │ └── teamcity_reporter_test.go │ │ │ │ └── types │ │ │ │ │ ├── code_location.go │ │ │ │ │ ├── synchronization.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_suite_test.go │ │ │ │ │ └── types_test.go │ │ │ └── gomega │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── format │ │ │ │ ├── format.go │ │ │ │ ├── format_suite_test.go │ │ │ │ └── format_test.go │ │ │ │ ├── gbytes │ │ │ │ ├── buffer.go │ │ │ │ ├── buffer_test.go │ │ │ │ ├── gbuffer_suite_test.go │ │ │ │ ├── io_wrappers.go │ │ │ │ ├── io_wrappers_test.go │ │ │ │ ├── say_matcher.go │ │ │ │ └── say_matcher_test.go │ │ │ │ ├── gexec │ │ │ │ ├── build.go │ │ │ │ ├── build_test.go │ │ │ │ ├── exit_matcher.go │ │ │ │ ├── exit_matcher_test.go │ │ │ │ ├── gexec_suite_test.go │ │ │ │ ├── prefixed_writer.go │ │ │ │ ├── prefixed_writer_test.go │ │ │ │ ├── session.go │ │ │ │ └── session_test.go │ │ │ │ ├── ghttp │ │ │ │ ├── handlers.go │ │ │ │ ├── test_server.go │ │ │ │ ├── test_server_suite_test.go │ │ │ │ └── test_server_test.go │ │ │ │ ├── gomega_dsl.go │ │ │ │ ├── internal │ │ │ │ ├── assertion │ │ │ │ │ ├── assertion.go │ │ │ │ │ ├── assertion_suite_test.go │ │ │ │ │ └── assertion_test.go │ │ │ │ ├── asyncassertion │ │ │ │ │ ├── async_assertion.go │ │ │ │ │ ├── async_assertion_suite_test.go │ │ │ │ │ └── async_assertion_test.go │ │ │ │ ├── oraclematcher │ │ │ │ │ └── oracle_matcher.go │ │ │ │ └── testingtsupport │ │ │ │ │ ├── testing_t_support.go │ │ │ │ │ └── testing_t_support_test.go │ │ │ │ ├── matchers.go │ │ │ │ ├── matchers │ │ │ │ ├── and.go │ │ │ │ ├── and_test.go │ │ │ │ ├── assignable_to_type_of_matcher.go │ │ │ │ ├── assignable_to_type_of_matcher_test.go │ │ │ │ ├── be_a_directory.go │ │ │ │ ├── be_a_directory_test.go │ │ │ │ ├── be_a_regular_file.go │ │ │ │ ├── be_a_regular_file_test.go │ │ │ │ ├── be_an_existing_file.go │ │ │ │ ├── be_an_existing_file_test.go │ │ │ │ ├── be_closed_matcher.go │ │ │ │ ├── be_closed_matcher_test.go │ │ │ │ ├── be_empty_matcher.go │ │ │ │ ├── be_empty_matcher_test.go │ │ │ │ ├── be_equivalent_to_matcher.go │ │ │ │ ├── be_equivalent_to_matcher_test.go │ │ │ │ ├── be_false_matcher.go │ │ │ │ ├── be_false_matcher_test.go │ │ │ │ ├── be_identical_to.go │ │ │ │ ├── be_identical_to_test.go │ │ │ │ ├── be_nil_matcher.go │ │ │ │ ├── be_nil_matcher_test.go │ │ │ │ ├── be_numerically_matcher.go │ │ │ │ ├── be_numerically_matcher_test.go │ │ │ │ ├── be_sent_matcher.go │ │ │ │ ├── be_sent_matcher_test.go │ │ │ │ ├── be_temporally_matcher.go │ │ │ │ ├── be_temporally_matcher_test.go │ │ │ │ ├── be_true_matcher.go │ │ │ │ ├── be_true_matcher_test.go │ │ │ │ ├── be_zero_matcher.go │ │ │ │ ├── be_zero_matcher_test.go │ │ │ │ ├── consist_of.go │ │ │ │ ├── consist_of_test.go │ │ │ │ ├── contain_element_matcher.go │ │ │ │ ├── contain_element_matcher_test.go │ │ │ │ ├── contain_substring_matcher.go │ │ │ │ ├── contain_substring_matcher_test.go │ │ │ │ ├── equal_matcher.go │ │ │ │ ├── equal_matcher_test.go │ │ │ │ ├── have_cap_matcher.go │ │ │ │ ├── have_cap_matcher_test.go │ │ │ │ ├── have_key_matcher.go │ │ │ │ ├── have_key_matcher_test.go │ │ │ │ ├── have_key_with_value_matcher.go │ │ │ │ ├── have_key_with_value_matcher_test.go │ │ │ │ ├── have_len_matcher.go │ │ │ │ ├── have_len_matcher_test.go │ │ │ │ ├── have_occurred_matcher.go │ │ │ │ ├── have_occurred_matcher_test.go │ │ │ │ ├── have_prefix_matcher.go │ │ │ │ ├── have_prefix_matcher_test.go │ │ │ │ ├── have_suffix_matcher.go │ │ │ │ ├── have_suffix_matcher_test.go │ │ │ │ ├── match_error_matcher.go │ │ │ │ ├── match_error_matcher_test.go │ │ │ │ ├── match_json_matcher.go │ │ │ │ ├── match_json_matcher_test.go │ │ │ │ ├── match_regexp_matcher.go │ │ │ │ ├── match_regexp_matcher_test.go │ │ │ │ ├── match_xml_matcher.go │ │ │ │ ├── match_xml_matcher_test.go │ │ │ │ ├── match_yaml_matcher.go │ │ │ │ ├── match_yaml_matcher_test.go │ │ │ │ ├── matcher_tests_suite_test.go │ │ │ │ ├── not.go │ │ │ │ ├── not_test.go │ │ │ │ ├── or.go │ │ │ │ ├── or_test.go │ │ │ │ ├── panic_matcher.go │ │ │ │ ├── panic_matcher_test.go │ │ │ │ ├── receive_matcher.go │ │ │ │ ├── receive_matcher_test.go │ │ │ │ ├── succeed_matcher.go │ │ │ │ ├── succeed_matcher_test.go │ │ │ │ ├── support │ │ │ │ │ └── goraph │ │ │ │ │ │ ├── MIT.LICENSE │ │ │ │ │ │ ├── bipartitegraph │ │ │ │ │ │ ├── bipartitegraph.go │ │ │ │ │ │ └── bipartitegraphmatching.go │ │ │ │ │ │ ├── edge │ │ │ │ │ │ └── edge.go │ │ │ │ │ │ ├── node │ │ │ │ │ │ └── node.go │ │ │ │ │ │ └── util │ │ │ │ │ │ └── util.go │ │ │ │ ├── type_support.go │ │ │ │ ├── with_transform.go │ │ │ │ └── with_transform_test.go │ │ │ │ └── types │ │ │ │ └── types.go │ │ ├── pivotal-cf │ │ │ └── paraphernalia │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── BUILD │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── WORKSPACE │ │ │ │ └── secure │ │ │ │ └── tlsconfig │ │ │ │ ├── BUILD │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ └── tlsconfig_suite_test.go │ │ ├── pmezard │ │ │ └── go-difflib │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── difflib │ │ │ │ ├── difflib.go │ │ │ │ └── difflib_test.go │ │ └── stretchr │ │ │ └── testify │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENCE.txt │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── assert │ │ │ ├── assertion_forward.go │ │ │ ├── assertion_forward.go.tmpl │ │ │ ├── assertions.go │ │ │ ├── assertions_test.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── forward_assertions.go │ │ │ ├── forward_assertions_test.go │ │ │ ├── http_assertions.go │ │ │ └── http_assertions_test.go │ │ │ ├── doc.go │ │ │ └── package_test.go │ │ ├── golang.org │ │ └── x │ │ │ ├── crypto │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── README.md │ │ │ ├── codereview.cfg │ │ │ ├── curve25519 │ │ │ │ ├── const_amd64.h │ │ │ │ ├── const_amd64.s │ │ │ │ ├── cswap_amd64.s │ │ │ │ ├── curve25519.go │ │ │ │ ├── curve25519_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── freeze_amd64.s │ │ │ │ ├── ladderstep_amd64.s │ │ │ │ ├── mont25519_amd64.go │ │ │ │ ├── mul_amd64.s │ │ │ │ └── square_amd64.s │ │ │ ├── ed25519 │ │ │ │ ├── ed25519.go │ │ │ │ ├── ed25519_test.go │ │ │ │ └── internal │ │ │ │ │ └── edwards25519 │ │ │ │ │ ├── const.go │ │ │ │ │ └── edwards25519.go │ │ │ └── ssh │ │ │ │ ├── benchmark_test.go │ │ │ │ ├── buffer.go │ │ │ │ ├── buffer_test.go │ │ │ │ ├── certs.go │ │ │ │ ├── certs_test.go │ │ │ │ ├── channel.go │ │ │ │ ├── cipher.go │ │ │ │ ├── cipher_test.go │ │ │ │ ├── client.go │ │ │ │ ├── client_auth.go │ │ │ │ ├── client_auth_test.go │ │ │ │ ├── client_test.go │ │ │ │ ├── common.go │ │ │ │ ├── connection.go │ │ │ │ ├── doc.go │ │ │ │ ├── example_test.go │ │ │ │ ├── handshake.go │ │ │ │ ├── handshake_test.go │ │ │ │ ├── kex.go │ │ │ │ ├── kex_test.go │ │ │ │ ├── keys.go │ │ │ │ ├── keys_test.go │ │ │ │ ├── mac.go │ │ │ │ ├── mempipe_test.go │ │ │ │ ├── messages.go │ │ │ │ ├── messages_test.go │ │ │ │ ├── mux.go │ │ │ │ ├── mux_test.go │ │ │ │ ├── server.go │ │ │ │ ├── session.go │ │ │ │ ├── session_test.go │ │ │ │ ├── streamlocal.go │ │ │ │ ├── tcpip.go │ │ │ │ ├── tcpip_test.go │ │ │ │ ├── testdata_test.go │ │ │ │ ├── transport.go │ │ │ │ └── transport_test.go │ │ │ ├── net │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── README │ │ │ ├── codereview.cfg │ │ │ ├── context │ │ │ │ ├── context.go │ │ │ │ ├── context_test.go │ │ │ │ ├── go17.go │ │ │ │ ├── go19.go │ │ │ │ ├── pre_go17.go │ │ │ │ ├── pre_go19.go │ │ │ │ └── withtimeout_test.go │ │ │ ├── html │ │ │ │ ├── atom │ │ │ │ │ ├── atom.go │ │ │ │ │ ├── atom_test.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── table.go │ │ │ │ │ └── table_test.go │ │ │ │ ├── charset │ │ │ │ │ ├── charset.go │ │ │ │ │ └── charset_test.go │ │ │ │ ├── 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 │ │ │ │ ├── token.go │ │ │ │ └── token_test.go │ │ │ └── proxy │ │ │ │ ├── direct.go │ │ │ │ ├── per_host.go │ │ │ │ ├── per_host_test.go │ │ │ │ ├── proxy.go │ │ │ │ ├── proxy_test.go │ │ │ │ └── socks5.go │ │ │ ├── sys │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── README │ │ │ ├── codereview.cfg │ │ │ └── unix │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── asm_darwin_386.s │ │ │ │ ├── asm_darwin_amd64.s │ │ │ │ ├── asm_darwin_arm.s │ │ │ │ ├── asm_darwin_arm64.s │ │ │ │ ├── asm_dragonfly_amd64.s │ │ │ │ ├── asm_freebsd_386.s │ │ │ │ ├── asm_freebsd_amd64.s │ │ │ │ ├── asm_freebsd_arm.s │ │ │ │ ├── asm_linux_386.s │ │ │ │ ├── asm_linux_amd64.s │ │ │ │ ├── asm_linux_arm.s │ │ │ │ ├── asm_linux_arm64.s │ │ │ │ ├── asm_linux_mips64x.s │ │ │ │ ├── asm_linux_mipsx.s │ │ │ │ ├── asm_linux_ppc64x.s │ │ │ │ ├── asm_linux_s390x.s │ │ │ │ ├── asm_netbsd_386.s │ │ │ │ ├── asm_netbsd_amd64.s │ │ │ │ ├── asm_netbsd_arm.s │ │ │ │ ├── asm_openbsd_386.s │ │ │ │ ├── asm_openbsd_amd64.s │ │ │ │ ├── asm_openbsd_arm.s │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ ├── bluetooth_linux.go │ │ │ │ ├── cap_freebsd.go │ │ │ │ ├── constants.go │ │ │ │ ├── creds_test.go │ │ │ │ ├── dev_darwin.go │ │ │ │ ├── dev_darwin_test.go │ │ │ │ ├── dev_dragonfly.go │ │ │ │ ├── dev_dragonfly_test.go │ │ │ │ ├── dev_freebsd.go │ │ │ │ ├── dev_linux.go │ │ │ │ ├── dev_linux_test.go │ │ │ │ ├── dev_netbsd.go │ │ │ │ ├── dev_netbsd_test.go │ │ │ │ ├── dirent.go │ │ │ │ ├── endian_big.go │ │ │ │ ├── endian_little.go │ │ │ │ ├── env_unix.go │ │ │ │ ├── env_unset.go │ │ │ │ ├── errors_freebsd_386.go │ │ │ │ ├── errors_freebsd_amd64.go │ │ │ │ ├── errors_freebsd_arm.go │ │ │ │ ├── export_test.go │ │ │ │ ├── file_unix.go │ │ │ │ ├── flock.go │ │ │ │ ├── flock_linux_32bit.go │ │ │ │ ├── gccgo.go │ │ │ │ ├── gccgo_c.c │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ ├── mkall.sh │ │ │ │ ├── mkerrors.sh │ │ │ │ ├── mkpost.go │ │ │ │ ├── mksyscall.pl │ │ │ │ ├── mksyscall_solaris.pl │ │ │ │ ├── mksysctl_openbsd.pl │ │ │ │ ├── mksysnum_darwin.pl │ │ │ │ ├── mksysnum_dragonfly.pl │ │ │ │ ├── mksysnum_freebsd.pl │ │ │ │ ├── mksysnum_netbsd.pl │ │ │ │ ├── mksysnum_openbsd.pl │ │ │ │ ├── mmap_unix_test.go │ │ │ │ ├── openbsd_pledge.go │ │ │ │ ├── openbsd_test.go │ │ │ │ ├── pagesize_unix.go │ │ │ │ ├── race.go │ │ │ │ ├── race0.go │ │ │ │ ├── sockcmsg_linux.go │ │ │ │ ├── sockcmsg_unix.go │ │ │ │ ├── str.go │ │ │ │ ├── syscall.go │ │ │ │ ├── syscall_bsd.go │ │ │ │ ├── syscall_bsd_test.go │ │ │ │ ├── syscall_darwin.go │ │ │ │ ├── syscall_darwin_386.go │ │ │ │ ├── syscall_darwin_amd64.go │ │ │ │ ├── syscall_darwin_arm.go │ │ │ │ ├── syscall_darwin_arm64.go │ │ │ │ ├── syscall_dragonfly.go │ │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ │ ├── syscall_freebsd.go │ │ │ │ ├── syscall_freebsd_386.go │ │ │ │ ├── syscall_freebsd_amd64.go │ │ │ │ ├── syscall_freebsd_arm.go │ │ │ │ ├── syscall_freebsd_test.go │ │ │ │ ├── syscall_linux.go │ │ │ │ ├── syscall_linux_386.go │ │ │ │ ├── syscall_linux_amd64.go │ │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ │ ├── syscall_linux_arm.go │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ ├── syscall_linux_mips64x.go │ │ │ │ ├── syscall_linux_mipsx.go │ │ │ │ ├── syscall_linux_ppc64x.go │ │ │ │ ├── syscall_linux_s390x.go │ │ │ │ ├── syscall_linux_sparc64.go │ │ │ │ ├── syscall_linux_test.go │ │ │ │ ├── syscall_netbsd.go │ │ │ │ ├── syscall_netbsd_386.go │ │ │ │ ├── syscall_netbsd_amd64.go │ │ │ │ ├── syscall_netbsd_arm.go │ │ │ │ ├── syscall_no_getwd.go │ │ │ │ ├── syscall_openbsd.go │ │ │ │ ├── syscall_openbsd_386.go │ │ │ │ ├── syscall_openbsd_amd64.go │ │ │ │ ├── syscall_openbsd_arm.go │ │ │ │ ├── syscall_solaris.go │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ ├── syscall_solaris_test.go │ │ │ │ ├── syscall_test.go │ │ │ │ ├── syscall_unix.go │ │ │ │ ├── syscall_unix_gc.go │ │ │ │ ├── syscall_unix_test.go │ │ │ │ ├── types_darwin.go │ │ │ │ ├── types_dragonfly.go │ │ │ │ ├── types_freebsd.go │ │ │ │ ├── types_netbsd.go │ │ │ │ ├── types_openbsd.go │ │ │ │ ├── types_solaris.go │ │ │ │ ├── zerrors_darwin_386.go │ │ │ │ ├── zerrors_darwin_amd64.go │ │ │ │ ├── zerrors_darwin_arm.go │ │ │ │ ├── zerrors_darwin_arm64.go │ │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ │ ├── zerrors_freebsd_386.go │ │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ │ ├── zerrors_freebsd_arm.go │ │ │ │ ├── zerrors_linux_386.go │ │ │ │ ├── zerrors_linux_amd64.go │ │ │ │ ├── zerrors_linux_arm.go │ │ │ │ ├── zerrors_linux_arm64.go │ │ │ │ ├── zerrors_linux_mips.go │ │ │ │ ├── zerrors_linux_mips64.go │ │ │ │ ├── zerrors_linux_mips64le.go │ │ │ │ ├── zerrors_linux_mipsle.go │ │ │ │ ├── zerrors_linux_ppc64.go │ │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ │ ├── zerrors_linux_s390x.go │ │ │ │ ├── zerrors_linux_sparc64.go │ │ │ │ ├── zerrors_netbsd_386.go │ │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ │ ├── zerrors_netbsd_arm.go │ │ │ │ ├── zerrors_openbsd_386.go │ │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ │ ├── zerrors_openbsd_arm.go │ │ │ │ ├── zerrors_solaris_amd64.go │ │ │ │ ├── zsyscall_darwin_386.go │ │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ │ ├── zsyscall_darwin_arm.go │ │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ │ ├── zsyscall_freebsd_386.go │ │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ │ ├── zsyscall_linux_386.go │ │ │ │ ├── zsyscall_linux_amd64.go │ │ │ │ ├── zsyscall_linux_arm.go │ │ │ │ ├── zsyscall_linux_arm64.go │ │ │ │ ├── zsyscall_linux_mips.go │ │ │ │ ├── zsyscall_linux_mips64.go │ │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ │ ├── zsyscall_linux_s390x.go │ │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ │ ├── zsyscall_netbsd_386.go │ │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ │ ├── zsyscall_openbsd_386.go │ │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ │ ├── zsysctl_openbsd.go │ │ │ │ ├── zsysnum_darwin_386.go │ │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ │ ├── zsysnum_darwin_arm.go │ │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ │ ├── zsysnum_freebsd_386.go │ │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ │ ├── zsysnum_linux_386.go │ │ │ │ ├── zsysnum_linux_amd64.go │ │ │ │ ├── zsysnum_linux_arm.go │ │ │ │ ├── zsysnum_linux_arm64.go │ │ │ │ ├── zsysnum_linux_mips.go │ │ │ │ ├── zsysnum_linux_mips64.go │ │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ │ ├── zsysnum_linux_s390x.go │ │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ │ ├── zsysnum_netbsd_386.go │ │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ │ ├── zsysnum_openbsd_386.go │ │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ │ ├── zsysnum_solaris_amd64.go │ │ │ │ ├── ztypes_darwin_386.go │ │ │ │ ├── ztypes_darwin_amd64.go │ │ │ │ ├── ztypes_darwin_arm.go │ │ │ │ ├── ztypes_darwin_arm64.go │ │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ │ ├── ztypes_freebsd_386.go │ │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ │ ├── ztypes_freebsd_arm.go │ │ │ │ ├── ztypes_linux_386.go │ │ │ │ ├── ztypes_linux_amd64.go │ │ │ │ ├── ztypes_linux_arm.go │ │ │ │ ├── ztypes_linux_arm64.go │ │ │ │ ├── ztypes_linux_mips.go │ │ │ │ ├── ztypes_linux_mips64.go │ │ │ │ ├── ztypes_linux_mips64le.go │ │ │ │ ├── ztypes_linux_mipsle.go │ │ │ │ ├── ztypes_linux_ppc64.go │ │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ │ ├── ztypes_linux_s390x.go │ │ │ │ ├── ztypes_linux_sparc64.go │ │ │ │ ├── ztypes_netbsd_386.go │ │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ │ ├── ztypes_netbsd_arm.go │ │ │ │ ├── ztypes_openbsd_386.go │ │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ │ ├── ztypes_openbsd_arm.go │ │ │ │ └── ztypes_solaris_amd64.go │ │ │ └── text │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── README │ │ │ ├── codereview.cfg │ │ │ ├── doc.go │ │ │ ├── encoding │ │ │ ├── charmap │ │ │ │ ├── charmap.go │ │ │ │ ├── charmap_test.go │ │ │ │ ├── maketables.go │ │ │ │ └── tables.go │ │ │ ├── encoding.go │ │ │ ├── encoding_test.go │ │ │ ├── example_test.go │ │ │ ├── htmlindex │ │ │ │ ├── gen.go │ │ │ │ ├── htmlindex.go │ │ │ │ ├── htmlindex_test.go │ │ │ │ ├── map.go │ │ │ │ └── tables.go │ │ │ ├── internal │ │ │ │ ├── identifier │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── identifier.go │ │ │ │ │ └── mib.go │ │ │ │ └── internal.go │ │ │ ├── japanese │ │ │ │ ├── all.go │ │ │ │ ├── all_test.go │ │ │ │ ├── eucjp.go │ │ │ │ ├── iso2022jp.go │ │ │ │ ├── maketables.go │ │ │ │ ├── shiftjis.go │ │ │ │ └── tables.go │ │ │ ├── korean │ │ │ │ ├── all_test.go │ │ │ │ ├── euckr.go │ │ │ │ ├── maketables.go │ │ │ │ └── tables.go │ │ │ ├── simplifiedchinese │ │ │ │ ├── all.go │ │ │ │ ├── all_test.go │ │ │ │ ├── gbk.go │ │ │ │ ├── hzgb2312.go │ │ │ │ ├── maketables.go │ │ │ │ └── tables.go │ │ │ ├── traditionalchinese │ │ │ │ ├── all_test.go │ │ │ │ ├── big5.go │ │ │ │ ├── maketables.go │ │ │ │ └── tables.go │ │ │ └── unicode │ │ │ │ ├── override.go │ │ │ │ ├── unicode.go │ │ │ │ └── unicode_test.go │ │ │ ├── gen.go │ │ │ ├── internal │ │ │ ├── gen.go │ │ │ ├── gen │ │ │ │ ├── code.go │ │ │ │ └── gen.go │ │ │ ├── gen_test.go │ │ │ ├── internal.go │ │ │ ├── internal_test.go │ │ │ ├── match.go │ │ │ ├── match_test.go │ │ │ ├── tables.go │ │ │ ├── tag │ │ │ │ ├── tag.go │ │ │ │ └── tag_test.go │ │ │ └── utf8internal │ │ │ │ └── utf8internal.go │ │ │ ├── language │ │ │ ├── Makefile │ │ │ ├── common.go │ │ │ ├── coverage.go │ │ │ ├── coverage_test.go │ │ │ ├── doc.go │ │ │ ├── examples_test.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── gen_index.go │ │ │ ├── go1_1.go │ │ │ ├── go1_2.go │ │ │ ├── httpexample_test.go │ │ │ ├── index.go │ │ │ ├── language.go │ │ │ ├── language_test.go │ │ │ ├── lookup.go │ │ │ ├── lookup_test.go │ │ │ ├── match.go │ │ │ ├── match_test.go │ │ │ ├── parse.go │ │ │ ├── parse_test.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ │ ├── runes │ │ │ ├── cond.go │ │ │ ├── cond_test.go │ │ │ ├── example_test.go │ │ │ ├── runes.go │ │ │ └── runes_test.go │ │ │ ├── transform │ │ │ ├── examples_test.go │ │ │ ├── transform.go │ │ │ └── transform_test.go │ │ │ └── unicode │ │ │ ├── cldr │ │ │ ├── base.go │ │ │ ├── cldr.go │ │ │ ├── cldr_test.go │ │ │ ├── collate.go │ │ │ ├── collate_test.go │ │ │ ├── data_test.go │ │ │ ├── decode.go │ │ │ ├── examples_test.go │ │ │ ├── makexml.go │ │ │ ├── resolve.go │ │ │ ├── resolve_test.go │ │ │ ├── slice.go │ │ │ ├── slice_test.go │ │ │ └── xml.go │ │ │ └── doc.go │ │ └── gopkg.in │ │ └── yaml.v2 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── decode_test.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── example_embedded_test.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── suite_test.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go │ └── gopkg.in │ ├── robfig │ └── cron.v2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── constantdelay.go │ │ ├── constantdelay_test.go │ │ ├── cron.go │ │ ├── cron_test.go │ │ ├── doc.go │ │ ├── parser.go │ │ ├── parser_test.go │ │ ├── spec.go │ │ └── spec_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 │ ├── example_embedded_test.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── suite_test.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── tests ├── .gitignore └── run.sh └── update-deps /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/.envrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/README.md -------------------------------------------------------------------------------- /bosh-deployment/k8s/aks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/bosh-deployment/k8s/aks.yml -------------------------------------------------------------------------------- /bosh-deployment/k8s/cloud-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/bosh-deployment/k8s/cloud-config.yml -------------------------------------------------------------------------------- /bosh-deployment/k8s/cpi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/bosh-deployment/k8s/cpi.yml -------------------------------------------------------------------------------- /bosh-deployment/k8s/gcp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/bosh-deployment/k8s/gcp.yml -------------------------------------------------------------------------------- /bosh-deployment/k8s/ibm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/bosh-deployment/k8s/ibm.yml -------------------------------------------------------------------------------- /bosh-deployment/k8s/minikube.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/bosh-deployment/k8s/minikube.yml -------------------------------------------------------------------------------- /config/blobs.yml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /config/final.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/config/final.yml -------------------------------------------------------------------------------- /deployments/aks-cf/.gitignore: -------------------------------------------------------------------------------- 1 | creds.yml 2 | -------------------------------------------------------------------------------- /deployments/aks-cf/cc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/aks-cf/cc.yml -------------------------------------------------------------------------------- /deployments/aks-cf/local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/aks-cf/local.yml -------------------------------------------------------------------------------- /deployments/aks-cf/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/aks-cf/run.sh -------------------------------------------------------------------------------- /deployments/aks/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/aks/.envrc -------------------------------------------------------------------------------- /deployments/aks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/aks/.gitignore -------------------------------------------------------------------------------- /deployments/aks/local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/aks/local.yml -------------------------------------------------------------------------------- /deployments/aks/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/aks/run.sh -------------------------------------------------------------------------------- /deployments/generic/cpi-rbac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/generic/cpi-rbac.yml -------------------------------------------------------------------------------- /deployments/generic/lb-cf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/generic/lb-cf.yml -------------------------------------------------------------------------------- /deployments/generic/lb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/generic/lb.yml -------------------------------------------------------------------------------- /deployments/generic/local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/generic/local.yml -------------------------------------------------------------------------------- /deployments/generic/ns.yml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: bosh 5 | -------------------------------------------------------------------------------- /deployments/gke-cf/.gitignore: -------------------------------------------------------------------------------- 1 | creds.yml 2 | -------------------------------------------------------------------------------- /deployments/gke-cf/cc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/gke-cf/cc.yml -------------------------------------------------------------------------------- /deployments/gke-cf/local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/gke-cf/local.yml -------------------------------------------------------------------------------- /deployments/gke-cf/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/gke-cf/run.sh -------------------------------------------------------------------------------- /deployments/gke/.bosh.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/gke/.bosh.envrc -------------------------------------------------------------------------------- /deployments/gke/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/gke/.gitignore -------------------------------------------------------------------------------- /deployments/gke/.kube.envrc: -------------------------------------------------------------------------------- 1 | export KUBECONFIG=`pwd`/kubeconfig 2 | -------------------------------------------------------------------------------- /deployments/gke/kubeconfig.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/gke/kubeconfig.example -------------------------------------------------------------------------------- /deployments/gke/kubeconfigca.pem.example: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployments/gke/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/gke/run.sh -------------------------------------------------------------------------------- /deployments/ibm-cf/.gitignore: -------------------------------------------------------------------------------- 1 | creds.yml 2 | -------------------------------------------------------------------------------- /deployments/ibm-cf/cc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/ibm-cf/cc.yml -------------------------------------------------------------------------------- /deployments/ibm-cf/local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/ibm-cf/local.yml -------------------------------------------------------------------------------- /deployments/ibm-cf/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/ibm-cf/run.sh -------------------------------------------------------------------------------- /deployments/ibm/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/ibm/.envrc -------------------------------------------------------------------------------- /deployments/ibm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/ibm/.gitignore -------------------------------------------------------------------------------- /deployments/ibm/lb-ibm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/ibm/lb-ibm.yml -------------------------------------------------------------------------------- /deployments/ibm/local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/ibm/local.yml -------------------------------------------------------------------------------- /deployments/ibm/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/ibm/run.sh -------------------------------------------------------------------------------- /deployments/ibm/tests/access-to-host.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/ibm/tests/access-to-host.yml -------------------------------------------------------------------------------- /deployments/ibm/tests/pdb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/ibm/tests/pdb.yml -------------------------------------------------------------------------------- /deployments/ibm/tests/pods/pod1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/ibm/tests/pods/pod1.yml -------------------------------------------------------------------------------- /deployments/ibm/tests/pods/pod2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/ibm/tests/pods/pod2.yml -------------------------------------------------------------------------------- /deployments/ibm/tests/pods/pod3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/ibm/tests/pods/pod3.yml -------------------------------------------------------------------------------- /deployments/ibm/tests/pods/pod4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/ibm/tests/pods/pod4.yml -------------------------------------------------------------------------------- /deployments/ibm/tests/pods/pod5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/ibm/tests/pods/pod5.yml -------------------------------------------------------------------------------- /deployments/minikube/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/minikube/.envrc -------------------------------------------------------------------------------- /deployments/minikube/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/minikube/.gitignore -------------------------------------------------------------------------------- /deployments/minikube/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deployments/minikube/run.sh -------------------------------------------------------------------------------- /deps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/deps.txt -------------------------------------------------------------------------------- /docs/aks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/docs/aks.md -------------------------------------------------------------------------------- /docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/docs/features.md -------------------------------------------------------------------------------- /docs/gke.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/docs/gke.md -------------------------------------------------------------------------------- /docs/ibm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/docs/ibm.md -------------------------------------------------------------------------------- /docs/minikube.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/docs/minikube.md -------------------------------------------------------------------------------- /docs/tbd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/docs/tbd.md -------------------------------------------------------------------------------- /jobs/kubernetes_cpi/monit: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jobs/kubernetes_cpi/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/jobs/kubernetes_cpi/spec -------------------------------------------------------------------------------- /jobs/kubernetes_cpi/templates/cpi.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/jobs/kubernetes_cpi/templates/cpi.erb -------------------------------------------------------------------------------- /jobs/kubernetes_cpi_pdbctrl/monit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/jobs/kubernetes_cpi_pdbctrl/monit -------------------------------------------------------------------------------- /jobs/kubernetes_cpi_pdbctrl/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/jobs/kubernetes_cpi_pdbctrl/spec -------------------------------------------------------------------------------- /manifests/dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/manifests/dev.yml -------------------------------------------------------------------------------- /manifests/local-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/manifests/local-release.yml -------------------------------------------------------------------------------- /packages/golang-1-darwin/spec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/packages/golang-1-darwin/spec.lock -------------------------------------------------------------------------------- /packages/golang-1-linux/spec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/packages/golang-1-linux/spec.lock -------------------------------------------------------------------------------- /packages/kubernetes_cpi/packaging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/packages/kubernetes_cpi/packaging -------------------------------------------------------------------------------- /packages/kubernetes_cpi/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/packages/kubernetes_cpi/spec -------------------------------------------------------------------------------- /registry/certs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/registry/certs.yml -------------------------------------------------------------------------------- /registry/certs/creds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/registry/certs/creds.yml -------------------------------------------------------------------------------- /registry/certs/domain.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/registry/certs/domain.crt -------------------------------------------------------------------------------- /registry/certs/domain.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/registry/certs/domain.key -------------------------------------------------------------------------------- /registry/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/registry/registry.yml -------------------------------------------------------------------------------- /registry/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/registry/run.sh -------------------------------------------------------------------------------- /src/code.cloudfoundry.org/clock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/code.cloudfoundry.org/clock/LICENSE -------------------------------------------------------------------------------- /src/code.cloudfoundry.org/clock/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/code.cloudfoundry.org/clock/NOTICE -------------------------------------------------------------------------------- /src/code.cloudfoundry.org/clock/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/code.cloudfoundry.org/clock/clock.go -------------------------------------------------------------------------------- /src/code.cloudfoundry.org/clock/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/code.cloudfoundry.org/clock/timer.go -------------------------------------------------------------------------------- /src/github.com/cloudfoundry/bosh-utils/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .vagrant 3 | *.iml 4 | out 5 | -------------------------------------------------------------------------------- /src/github.com/cloudfoundry/bosh-utils/blobstore/test_assets/some.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/github.com/cloudfoundry/bosh-utils/fileutil/test_assets/symlink_target/app.stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/github.com/cloudfoundry/bosh-utils/fileutil/test_assets/symlink_target/sub_dir/sub_app.stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/github.com/cloudfoundry/bosh-utils/fileutil/test_assets/test_filtered_copy_to_temp/app.stderr.log: -------------------------------------------------------------------------------- 1 | this is app stderr 2 | -------------------------------------------------------------------------------- /src/github.com/cloudfoundry/bosh-utils/fileutil/test_assets/test_filtered_copy_to_temp/app.stdout.log: -------------------------------------------------------------------------------- 1 | this is app stdout 2 | -------------------------------------------------------------------------------- /src/github.com/cloudfoundry/bosh-utils/fileutil/test_assets/test_filtered_copy_to_temp/other_logs/more_logs/more.stdout.log: -------------------------------------------------------------------------------- 1 | this is more stdout 2 | -------------------------------------------------------------------------------- /src/github.com/cloudfoundry/bosh-utils/fileutil/test_assets/test_filtered_copy_to_temp/other_logs/other_app.stderr.log: -------------------------------------------------------------------------------- 1 | this is other app stderr 2 | -------------------------------------------------------------------------------- /src/github.com/cloudfoundry/bosh-utils/fileutil/test_assets/test_filtered_copy_to_temp/other_logs/other_app.stdout.log: -------------------------------------------------------------------------------- 1 | this is other app stdout 2 | -------------------------------------------------------------------------------- /src/github.com/cloudfoundry/bosh-utils/main/version.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | const VersionLabel = "[DEV BUILD]" 4 | -------------------------------------------------------------------------------- /src/github.com/cloudfoundry/bosh-utils/system/test_assets/test_copy_dir_entries/bar/bar.txt: -------------------------------------------------------------------------------- 1 | bar 2 | -------------------------------------------------------------------------------- /src/github.com/cloudfoundry/bosh-utils/system/test_assets/test_copy_dir_entries/bar/baz/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/github.com/cloudfoundry/bosh-utils/system/test_assets/test_copy_dir_entries/foo.txt: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /src/github.com/cloudfoundry/bosh-utils/vendor/github.com/onsi/ginkgo/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | TODO 3 | tmp/**/* 4 | *.coverprofile 5 | .vscode -------------------------------------------------------------------------------- /src/github.com/cloudfoundry/bosh-utils/vendor/github.com/onsi/gomega/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.test 3 | . 4 | .idea 5 | gomega.iml 6 | -------------------------------------------------------------------------------- /src/github.com/cloudfoundry/bosh-utils/vendor/github.com/pivotal-cf/paraphernalia/.gitignore: -------------------------------------------------------------------------------- 1 | /bazel-* 2 | -------------------------------------------------------------------------------- /src/github.com/cloudfoundry/bosh-utils/vendor/golang.org/x/crypto/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /src/github.com/cloudfoundry/bosh-utils/vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /src/github.com/cloudfoundry/bosh-utils/vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /src/github.com/cloudfoundry/bosh-utils/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /src/github.com/cloudfoundry/bosh-utils/vendor/golang.org/x/text/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /src/github.com/cppforlife/bosh-cpi-go/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | pkg 3 | -------------------------------------------------------------------------------- /src/github.com/cppforlife/bosh-cpi-go/apiv1/snapshots.go: -------------------------------------------------------------------------------- 1 | package apiv1 2 | 3 | type Snapshots interface { 4 | // todo 5 | } 6 | -------------------------------------------------------------------------------- /src/github.com/cppforlife/bosh-cpi-go/bin/test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | go fmt ./... 4 | ginkgo -r . 5 | -------------------------------------------------------------------------------- /src/github.com/cppforlife/bosh-kubernetes-cpi/bin/.gitignore: -------------------------------------------------------------------------------- 1 | ginkgo 2 | cpi 3 | regmain 4 | pdbctrl 5 | -------------------------------------------------------------------------------- /src/github.com/docker/distribution/contrib/docker-integration/nginx/test.passwd: -------------------------------------------------------------------------------- 1 | testuser:$apr1$YmLhHjm6$AjP4z8J1WgcUNxU8J4ue5. 2 | -------------------------------------------------------------------------------- /src/github.com/docker/distribution/manifest/doc.go: -------------------------------------------------------------------------------- 1 | package manifest 2 | -------------------------------------------------------------------------------- /src/github.com/docker/docker/.DEREK.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/docker/docker/.DEREK.yml -------------------------------------------------------------------------------- /src/github.com/docker/docker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/docker/docker/.gitignore -------------------------------------------------------------------------------- /src/github.com/docker/docker/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/docker/docker/.mailmap -------------------------------------------------------------------------------- /src/github.com/docker/docker/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/docker/docker/AUTHORS -------------------------------------------------------------------------------- /src/github.com/docker/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/docker/docker/Dockerfile -------------------------------------------------------------------------------- /src/github.com/docker/docker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/docker/docker/LICENSE -------------------------------------------------------------------------------- /src/github.com/docker/docker/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/docker/docker/MAINTAINERS -------------------------------------------------------------------------------- /src/github.com/docker/docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/docker/docker/Makefile -------------------------------------------------------------------------------- /src/github.com/docker/docker/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/docker/docker/NOTICE -------------------------------------------------------------------------------- /src/github.com/docker/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/docker/docker/README.md -------------------------------------------------------------------------------- /src/github.com/docker/docker/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/docker/docker/ROADMAP.md -------------------------------------------------------------------------------- /src/github.com/docker/docker/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/docker/docker/TESTING.md -------------------------------------------------------------------------------- /src/github.com/docker/docker/builder/dockerfile/parser/testfiles-negative/env_no_value/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM busybox 2 | 3 | ENV PATH 4 | -------------------------------------------------------------------------------- /src/github.com/docker/docker/builder/dockerfile/parser/testfiles/continue-at-eof/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine:3.5 2 | 3 | RUN something \ -------------------------------------------------------------------------------- /src/github.com/docker/docker/builder/dockerfile/parser/testfiles/continue-at-eof/result: -------------------------------------------------------------------------------- 1 | (from "alpine:3.5") 2 | (run "something") 3 | -------------------------------------------------------------------------------- /src/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-string/Dockerfile: -------------------------------------------------------------------------------- 1 | CMD ["echo", "look ma, no quote!] 2 | -------------------------------------------------------------------------------- /src/github.com/docker/docker/contrib/selinux-fedora-24/docker-engine-selinux/README.md: -------------------------------------------------------------------------------- 1 | SELinux policy for docker 2 | -------------------------------------------------------------------------------- /src/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/README.md: -------------------------------------------------------------------------------- 1 | SELinux policy for docker 2 | -------------------------------------------------------------------------------- /src/github.com/docker/docker/daemon/bindmount_unix.go: -------------------------------------------------------------------------------- 1 | // +build linux freebsd 2 | 3 | package daemon 4 | 5 | const bindMountType = "bind" 6 | -------------------------------------------------------------------------------- /src/github.com/docker/docker/daemon/configs_linux.go: -------------------------------------------------------------------------------- 1 | package daemon 2 | 3 | func configsSupported() bool { 4 | return true 5 | } 6 | -------------------------------------------------------------------------------- /src/github.com/docker/docker/daemon/configs_windows.go: -------------------------------------------------------------------------------- 1 | package daemon 2 | 3 | func configsSupported() bool { 4 | return true 5 | } 6 | -------------------------------------------------------------------------------- /src/github.com/docker/docker/daemon/graphdriver/btrfs/dummy_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux !cgo 2 | 3 | package btrfs 4 | -------------------------------------------------------------------------------- /src/github.com/docker/docker/daemon/graphdriver/graphtest/graphtest_windows.go: -------------------------------------------------------------------------------- 1 | package graphtest 2 | -------------------------------------------------------------------------------- /src/github.com/docker/docker/daemon/graphdriver/overlay/overlay_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package overlay 4 | -------------------------------------------------------------------------------- /src/github.com/docker/docker/daemon/graphdriver/overlay2/overlay_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package overlay2 4 | -------------------------------------------------------------------------------- /src/github.com/docker/docker/daemon/seccomp_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package daemon 4 | 5 | var supportsSeccomp = false 6 | -------------------------------------------------------------------------------- /src/github.com/docker/docker/daemon/secrets_linux.go: -------------------------------------------------------------------------------- 1 | package daemon 2 | 3 | func secretsSupported() bool { 4 | return true 5 | } 6 | -------------------------------------------------------------------------------- /src/github.com/docker/docker/daemon/secrets_windows.go: -------------------------------------------------------------------------------- 1 | package daemon 2 | 3 | func secretsSupported() bool { 4 | return true 5 | } 6 | -------------------------------------------------------------------------------- /src/github.com/docker/docker/hack/ci/arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/docker/docker/hack/ci/arm -------------------------------------------------------------------------------- /src/github.com/docker/docker/hack/ci/z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/docker/docker/hack/ci/z -------------------------------------------------------------------------------- /src/github.com/docker/docker/hack/dind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/docker/docker/hack/dind -------------------------------------------------------------------------------- /src/github.com/docker/docker/hack/make/.resources-windows/docker.rc: -------------------------------------------------------------------------------- 1 | #define DOCKER_NAME "Docker Client" 2 | 3 | #include "common.rc" 4 | -------------------------------------------------------------------------------- /src/github.com/docker/docker/image/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/docker/docker/image/fs.go -------------------------------------------------------------------------------- /src/github.com/docker/docker/integration-cli/fixtures/https/ca.pem: -------------------------------------------------------------------------------- 1 | ../../../integration/testdata/https/ca.pem -------------------------------------------------------------------------------- /src/github.com/docker/docker/integration-cli/fixtures/https/client-cert.pem: -------------------------------------------------------------------------------- 1 | ../../../integration/testdata/https/client-cert.pem -------------------------------------------------------------------------------- /src/github.com/docker/docker/integration-cli/fixtures/https/client-key.pem: -------------------------------------------------------------------------------- 1 | ../../../integration/testdata/https/client-key.pem -------------------------------------------------------------------------------- /src/github.com/docker/docker/integration-cli/fixtures/https/server-cert.pem: -------------------------------------------------------------------------------- 1 | ../../../integration/testdata/https/server-cert.pem -------------------------------------------------------------------------------- /src/github.com/docker/docker/integration-cli/fixtures/https/server-key.pem: -------------------------------------------------------------------------------- 1 | ../../../integration/testdata/https/server-key.pem -------------------------------------------------------------------------------- /src/github.com/docker/docker/integration-cli/fixtures/secrets/default: -------------------------------------------------------------------------------- 1 | this is the secret 2 | -------------------------------------------------------------------------------- /src/github.com/docker/docker/integration/plugin/pkg_test.go: -------------------------------------------------------------------------------- 1 | package plugin 2 | -------------------------------------------------------------------------------- /src/github.com/docker/docker/opts/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/docker/docker/opts/env.go -------------------------------------------------------------------------------- /src/github.com/docker/docker/opts/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/docker/docker/opts/ip.go -------------------------------------------------------------------------------- /src/github.com/docker/docker/pkg/chrootarchive/init_windows.go: -------------------------------------------------------------------------------- 1 | package chrootarchive 2 | 3 | func init() { 4 | } 5 | -------------------------------------------------------------------------------- /src/github.com/docker/docker/poule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/docker/docker/poule.yml -------------------------------------------------------------------------------- /src/github.com/docker/docker/project/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ../CONTRIBUTING.md -------------------------------------------------------------------------------- /src/github.com/docker/docker/vendor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/docker/docker/vendor.conf -------------------------------------------------------------------------------- /src/github.com/docker/engine-api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/docker/engine-api/LICENSE -------------------------------------------------------------------------------- /src/github.com/docker/engine-api/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/docker/engine-api/doc.go -------------------------------------------------------------------------------- /src/github.com/docker/go-connections/sockets/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/github.com/docker/go-units/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/docker/go-units/LICENSE -------------------------------------------------------------------------------- /src/github.com/docker/go-units/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/docker/go-units/README.md -------------------------------------------------------------------------------- /src/github.com/docker/go-units/size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/docker/go-units/size.go -------------------------------------------------------------------------------- /src/github.com/docker/go-units/ulimit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/docker/go-units/ulimit.go -------------------------------------------------------------------------------- /src/github.com/emicklei/go-restful/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.x 5 | 6 | script: go test -v -------------------------------------------------------------------------------- /src/github.com/emicklei/go-restful/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /src/github.com/emicklei/go-restful/examples/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /src/github.com/emicklei/go-restful/examples/google_app_engine/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /src/github.com/emicklei/go-restful/examples/google_app_engine/datastore/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /src/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /src/github.com/go-openapi/jsonreference/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /src/github.com/go-openapi/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /src/github.com/go-openapi/spec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/go-openapi/spec/LICENSE -------------------------------------------------------------------------------- /src/github.com/go-openapi/spec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/go-openapi/spec/README.md -------------------------------------------------------------------------------- /src/github.com/go-openapi/spec/fixtures/specs/deeper/stringProp.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "string" 3 | } -------------------------------------------------------------------------------- /src/github.com/go-openapi/spec/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/go-openapi/spec/header.go -------------------------------------------------------------------------------- /src/github.com/go-openapi/spec/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/go-openapi/spec/info.go -------------------------------------------------------------------------------- /src/github.com/go-openapi/spec/items.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/go-openapi/spec/items.go -------------------------------------------------------------------------------- /src/github.com/go-openapi/spec/paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/go-openapi/spec/paths.go -------------------------------------------------------------------------------- /src/github.com/go-openapi/spec/ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/go-openapi/spec/ref.go -------------------------------------------------------------------------------- /src/github.com/go-openapi/spec/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/go-openapi/spec/schema.go -------------------------------------------------------------------------------- /src/github.com/go-openapi/spec/spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/go-openapi/spec/spec.go -------------------------------------------------------------------------------- /src/github.com/go-openapi/spec/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/go-openapi/spec/tag.go -------------------------------------------------------------------------------- /src/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | vendor 3 | Godeps 4 | -------------------------------------------------------------------------------- /src/github.com/go-openapi/swag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/go-openapi/swag/LICENSE -------------------------------------------------------------------------------- /src/github.com/go-openapi/swag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/go-openapi/swag/README.md -------------------------------------------------------------------------------- /src/github.com/go-openapi/swag/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/go-openapi/swag/json.go -------------------------------------------------------------------------------- /src/github.com/go-openapi/swag/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/go-openapi/swag/net.go -------------------------------------------------------------------------------- /src/github.com/go-openapi/swag/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/go-openapi/swag/path.go -------------------------------------------------------------------------------- /src/github.com/go-openapi/swag/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/go-openapi/swag/util.go -------------------------------------------------------------------------------- /src/github.com/go-openapi/swag/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/go-openapi/swag/yaml.go -------------------------------------------------------------------------------- /src/github.com/golang/glog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/golang/glog/LICENSE -------------------------------------------------------------------------------- /src/github.com/golang/glog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/golang/glog/README -------------------------------------------------------------------------------- /src/github.com/golang/glog/glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/golang/glog/glog.go -------------------------------------------------------------------------------- /src/github.com/golang/glog/glog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/golang/glog/glog_file.go -------------------------------------------------------------------------------- /src/github.com/golang/glog/glog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/golang/glog/glog_test.go -------------------------------------------------------------------------------- /src/github.com/google/gofuzz/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/google/gofuzz/.travis.yml -------------------------------------------------------------------------------- /src/github.com/google/gofuzz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/google/gofuzz/LICENSE -------------------------------------------------------------------------------- /src/github.com/google/gofuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/google/gofuzz/README.md -------------------------------------------------------------------------------- /src/github.com/google/gofuzz/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/google/gofuzz/doc.go -------------------------------------------------------------------------------- /src/github.com/google/gofuzz/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/google/gofuzz/fuzz.go -------------------------------------------------------------------------------- /src/github.com/mailru/easyjson/.gitignore: -------------------------------------------------------------------------------- 1 | .root 2 | *_easyjson.go 3 | *.iml 4 | .idea 5 | -------------------------------------------------------------------------------- /src/github.com/mailru/easyjson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/mailru/easyjson/LICENSE -------------------------------------------------------------------------------- /src/github.com/mailru/easyjson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/mailru/easyjson/Makefile -------------------------------------------------------------------------------- /src/github.com/mailru/easyjson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/mailru/easyjson/README.md -------------------------------------------------------------------------------- /src/github.com/mailru/easyjson/raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/mailru/easyjson/raw.go -------------------------------------------------------------------------------- /src/github.com/mailru/easyjson/tests/nothing.go: -------------------------------------------------------------------------------- 1 | package tests 2 | 3 | // No structs in this file 4 | -------------------------------------------------------------------------------- /src/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /src/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /src/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /src/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /src/github.com/pkg/errors/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/pkg/errors/appveyor.yml -------------------------------------------------------------------------------- /src/github.com/pkg/errors/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/pkg/errors/bench_test.go -------------------------------------------------------------------------------- /src/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /src/github.com/pkg/errors/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/pkg/errors/errors_test.go -------------------------------------------------------------------------------- /src/github.com/pkg/errors/format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/pkg/errors/format_test.go -------------------------------------------------------------------------------- /src/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /src/github.com/pkg/errors/stack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/github.com/pkg/errors/stack_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/.gitattributes -------------------------------------------------------------------------------- /src/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/.gitignore -------------------------------------------------------------------------------- /src/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /src/golang.org/x/net/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /src/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /src/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /src/golang.org/x/net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/README.md -------------------------------------------------------------------------------- /src/golang.org/x/net/bpf/asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/bpf/asm.go -------------------------------------------------------------------------------- /src/golang.org/x/net/bpf/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/bpf/constants.go -------------------------------------------------------------------------------- /src/golang.org/x/net/bpf/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/bpf/doc.go -------------------------------------------------------------------------------- /src/golang.org/x/net/bpf/instructions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/bpf/instructions.go -------------------------------------------------------------------------------- /src/golang.org/x/net/bpf/setter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/bpf/setter.go -------------------------------------------------------------------------------- /src/golang.org/x/net/bpf/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/bpf/vm.go -------------------------------------------------------------------------------- /src/golang.org/x/net/bpf/vm_bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/bpf/vm_bpf_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/bpf/vm_jump_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/bpf/vm_jump_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/bpf/vm_load_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/bpf/vm_load_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/bpf/vm_ret_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/bpf/vm_ret_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/bpf/vm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/bpf/vm_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /src/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /src/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /src/golang.org/x/net/context/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/context/go19.go -------------------------------------------------------------------------------- /src/golang.org/x/net/context/pre_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/context/pre_go17.go -------------------------------------------------------------------------------- /src/golang.org/x/net/context/pre_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/context/pre_go19.go -------------------------------------------------------------------------------- /src/golang.org/x/net/dict/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/dict/dict.go -------------------------------------------------------------------------------- /src/golang.org/x/net/html/atom/atom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/html/atom/atom.go -------------------------------------------------------------------------------- /src/golang.org/x/net/html/atom/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/html/atom/gen.go -------------------------------------------------------------------------------- /src/golang.org/x/net/html/atom/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/html/atom/table.go -------------------------------------------------------------------------------- /src/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /src/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /src/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /src/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /src/golang.org/x/net/html/entity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/html/entity_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /src/golang.org/x/net/html/escape_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/html/escape_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /src/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /src/golang.org/x/net/html/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/html/node_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /src/golang.org/x/net/html/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/html/parse_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /src/golang.org/x/net/html/render_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/html/render_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /src/golang.org/x/net/html/token_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/html/token_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/databuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/databuffer.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/flow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/flow_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/frame_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/frame_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/go16.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/go17.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/go17_not18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/go17_not18.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/go18.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/go18_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/go18_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/go19.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/go19_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/go19_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/h2demo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/h2demo/README -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/h2i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/h2i/README.md -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/h2i/h2i.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/h2i/h2i.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/headermap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/headermap.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/http2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/http2_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/not_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/not_go16.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/not_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/not_go17.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/not_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/not_go18.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/not_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/not_go19.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/pipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/pipe_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /src/golang.org/x/net/http2/writesched.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/http2/writesched.go -------------------------------------------------------------------------------- /src/golang.org/x/net/icmp/dstunreach.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/icmp/dstunreach.go -------------------------------------------------------------------------------- /src/golang.org/x/net/icmp/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/icmp/echo.go -------------------------------------------------------------------------------- /src/golang.org/x/net/icmp/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/icmp/endpoint.go -------------------------------------------------------------------------------- /src/golang.org/x/net/icmp/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/icmp/extension.go -------------------------------------------------------------------------------- /src/golang.org/x/net/icmp/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/icmp/interface.go -------------------------------------------------------------------------------- /src/golang.org/x/net/icmp/ipv4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/icmp/ipv4.go -------------------------------------------------------------------------------- /src/golang.org/x/net/icmp/ipv4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/icmp/ipv4_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/icmp/ipv6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/icmp/ipv6.go -------------------------------------------------------------------------------- /src/golang.org/x/net/icmp/listen_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/icmp/listen_stub.go -------------------------------------------------------------------------------- /src/golang.org/x/net/icmp/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/icmp/message.go -------------------------------------------------------------------------------- /src/golang.org/x/net/icmp/messagebody.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/icmp/messagebody.go -------------------------------------------------------------------------------- /src/golang.org/x/net/icmp/mpls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/icmp/mpls.go -------------------------------------------------------------------------------- /src/golang.org/x/net/icmp/multipart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/icmp/multipart.go -------------------------------------------------------------------------------- /src/golang.org/x/net/icmp/paramprob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/icmp/paramprob.go -------------------------------------------------------------------------------- /src/golang.org/x/net/icmp/ping_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/icmp/ping_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/icmp/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/icmp/sys_freebsd.go -------------------------------------------------------------------------------- /src/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /src/golang.org/x/net/idna/idna_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/idna/idna_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /src/golang.org/x/net/idna/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/idna/tables.go -------------------------------------------------------------------------------- /src/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /src/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/batch.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/bpf_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/control.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/control_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/control_bsd.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/defs_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/defs_darwin.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/defs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/defs_linux.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/defs_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/defs_netbsd.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/dgramopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/dgramopt.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/doc.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/endpoint.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/gen.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/genericopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/genericopt.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/header.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/header_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/header_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/helper.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/iana.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/icmp.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/icmp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/icmp_linux.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/icmp_stub.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/icmp_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/packet.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/payload.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/sockopt.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/sys_asmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/sys_asmreq.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/sys_asmreqn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/sys_asmreqn.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/sys_bpf.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/sys_bsd.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/sys_darwin.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/sys_freebsd.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/sys_linux.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/sys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/sys_solaris.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/sys_ssmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/sys_ssmreq.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/sys_stub.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/sys_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/sys_windows.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/zsys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/zsys_darwin.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv4/zsys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv4/zsys_netbsd.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/batch.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/bpf_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/control.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/defs_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/defs_darwin.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/defs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/defs_linux.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/defs_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/defs_netbsd.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/dgramopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/dgramopt.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/doc.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/endpoint.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/gen.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/genericopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/genericopt.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/header.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/header_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/header_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/helper.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/iana.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/icmp.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/icmp_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/icmp_bsd.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/icmp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/icmp_linux.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/icmp_stub.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/icmp_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/payload.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/sockopt.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/sys_asmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/sys_asmreq.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/sys_bpf.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/sys_bsd.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/sys_darwin.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/sys_freebsd.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/sys_linux.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/sys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/sys_solaris.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/sys_ssmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/sys_ssmreq.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/sys_stub.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/sys_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/sys_windows.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/zsys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/zsys_darwin.go -------------------------------------------------------------------------------- /src/golang.org/x/net/ipv6/zsys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/ipv6/zsys_netbsd.go -------------------------------------------------------------------------------- /src/golang.org/x/net/lif/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/lif/address.go -------------------------------------------------------------------------------- /src/golang.org/x/net/lif/address_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/lif/address_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/lif/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/lif/binary.go -------------------------------------------------------------------------------- /src/golang.org/x/net/lif/defs_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/lif/defs_solaris.go -------------------------------------------------------------------------------- /src/golang.org/x/net/lif/lif.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/lif/lif.go -------------------------------------------------------------------------------- /src/golang.org/x/net/lif/link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/lif/link.go -------------------------------------------------------------------------------- /src/golang.org/x/net/lif/link_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/lif/link_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/lif/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/lif/sys.go -------------------------------------------------------------------------------- /src/golang.org/x/net/lif/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/lif/syscall.go -------------------------------------------------------------------------------- /src/golang.org/x/net/nettest/conntest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/nettest/conntest.go -------------------------------------------------------------------------------- /src/golang.org/x/net/netutil/listen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/netutil/listen.go -------------------------------------------------------------------------------- /src/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /src/golang.org/x/net/proxy/per_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/proxy/per_host.go -------------------------------------------------------------------------------- /src/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /src/golang.org/x/net/proxy/proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/proxy/proxy_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /src/golang.org/x/net/publicsuffix/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/publicsuffix/gen.go -------------------------------------------------------------------------------- /src/golang.org/x/net/route/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/route/address.go -------------------------------------------------------------------------------- /src/golang.org/x/net/route/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/route/binary.go -------------------------------------------------------------------------------- /src/golang.org/x/net/route/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/route/interface.go -------------------------------------------------------------------------------- /src/golang.org/x/net/route/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/route/message.go -------------------------------------------------------------------------------- /src/golang.org/x/net/route/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/route/route.go -------------------------------------------------------------------------------- /src/golang.org/x/net/route/route_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/route/route_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/route/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/route/sys.go -------------------------------------------------------------------------------- /src/golang.org/x/net/route/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/route/sys_darwin.go -------------------------------------------------------------------------------- /src/golang.org/x/net/route/sys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/route/sys_netbsd.go -------------------------------------------------------------------------------- /src/golang.org/x/net/route/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/route/syscall.go -------------------------------------------------------------------------------- /src/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /src/golang.org/x/net/trace/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/trace/histogram.go -------------------------------------------------------------------------------- /src/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /src/golang.org/x/net/trace/trace_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/trace/trace_go16.go -------------------------------------------------------------------------------- /src/golang.org/x/net/trace/trace_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/trace/trace_go17.go -------------------------------------------------------------------------------- /src/golang.org/x/net/trace/trace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/trace/trace_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/webdav/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/webdav/file.go -------------------------------------------------------------------------------- /src/golang.org/x/net/webdav/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/webdav/file_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/webdav/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/webdav/if.go -------------------------------------------------------------------------------- /src/golang.org/x/net/webdav/if_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/webdav/if_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/webdav/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/webdav/lock.go -------------------------------------------------------------------------------- /src/golang.org/x/net/webdav/lock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/webdav/lock_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/webdav/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/webdav/prop.go -------------------------------------------------------------------------------- /src/golang.org/x/net/webdav/prop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/webdav/prop_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/webdav/webdav.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/webdav/webdav.go -------------------------------------------------------------------------------- /src/golang.org/x/net/webdav/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/webdav/xml.go -------------------------------------------------------------------------------- /src/golang.org/x/net/webdav/xml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/webdav/xml_test.go -------------------------------------------------------------------------------- /src/golang.org/x/net/websocket/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/websocket/client.go -------------------------------------------------------------------------------- /src/golang.org/x/net/websocket/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/websocket/dial.go -------------------------------------------------------------------------------- /src/golang.org/x/net/websocket/hybi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/websocket/hybi.go -------------------------------------------------------------------------------- /src/golang.org/x/net/websocket/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/websocket/server.go -------------------------------------------------------------------------------- /src/golang.org/x/net/xsrftoken/xsrf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/net/xsrftoken/xsrf.go -------------------------------------------------------------------------------- /src/golang.org/x/text/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/.gitattributes -------------------------------------------------------------------------------- /src/golang.org/x/text/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/.gitignore -------------------------------------------------------------------------------- /src/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /src/golang.org/x/text/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /src/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /src/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /src/golang.org/x/text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/README.md -------------------------------------------------------------------------------- /src/golang.org/x/text/cases/cases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/cases/cases.go -------------------------------------------------------------------------------- /src/golang.org/x/text/cases/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/cases/context.go -------------------------------------------------------------------------------- /src/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /src/golang.org/x/text/cases/fold_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/cases/fold_test.go -------------------------------------------------------------------------------- /src/golang.org/x/text/cases/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/cases/gen.go -------------------------------------------------------------------------------- /src/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /src/golang.org/x/text/cases/icu_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/cases/icu_test.go -------------------------------------------------------------------------------- /src/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /src/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /src/golang.org/x/text/cases/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/cases/map_test.go -------------------------------------------------------------------------------- /src/golang.org/x/text/cases/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/cases/trieval.go -------------------------------------------------------------------------------- /src/golang.org/x/text/cmd/gotext/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/cmd/gotext/doc.go -------------------------------------------------------------------------------- /src/golang.org/x/text/cmd/gotext/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/cmd/gotext/main.go -------------------------------------------------------------------------------- /src/golang.org/x/text/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /src/golang.org/x/text/collate/collate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/collate/collate.go -------------------------------------------------------------------------------- /src/golang.org/x/text/collate/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/collate/index.go -------------------------------------------------------------------------------- /src/golang.org/x/text/collate/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/collate/option.go -------------------------------------------------------------------------------- /src/golang.org/x/text/collate/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/collate/sort.go -------------------------------------------------------------------------------- /src/golang.org/x/text/collate/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/collate/tables.go -------------------------------------------------------------------------------- /src/golang.org/x/text/currency/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/currency/common.go -------------------------------------------------------------------------------- /src/golang.org/x/text/currency/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/currency/format.go -------------------------------------------------------------------------------- /src/golang.org/x/text/currency/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/currency/gen.go -------------------------------------------------------------------------------- /src/golang.org/x/text/currency/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/currency/query.go -------------------------------------------------------------------------------- /src/golang.org/x/text/currency/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/currency/tables.go -------------------------------------------------------------------------------- /src/golang.org/x/text/date/data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/date/data_test.go -------------------------------------------------------------------------------- /src/golang.org/x/text/date/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/date/gen.go -------------------------------------------------------------------------------- /src/golang.org/x/text/date/gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/date/gen_test.go -------------------------------------------------------------------------------- /src/golang.org/x/text/date/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/date/tables.go -------------------------------------------------------------------------------- /src/golang.org/x/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/doc.go -------------------------------------------------------------------------------- /src/golang.org/x/text/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/gen.go -------------------------------------------------------------------------------- /src/golang.org/x/text/internal/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/internal/gen.go -------------------------------------------------------------------------------- /src/golang.org/x/text/internal/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/internal/match.go -------------------------------------------------------------------------------- /src/golang.org/x/text/internal/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/internal/tables.go -------------------------------------------------------------------------------- /src/golang.org/x/text/language/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/language/Makefile -------------------------------------------------------------------------------- /src/golang.org/x/text/language/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/language/common.go -------------------------------------------------------------------------------- /src/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /src/golang.org/x/text/language/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/language/gen.go -------------------------------------------------------------------------------- /src/golang.org/x/text/language/go1_1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/language/go1_1.go -------------------------------------------------------------------------------- /src/golang.org/x/text/language/go1_2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/language/go1_2.go -------------------------------------------------------------------------------- /src/golang.org/x/text/language/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/language/index.go -------------------------------------------------------------------------------- /src/golang.org/x/text/language/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/language/lookup.go -------------------------------------------------------------------------------- /src/golang.org/x/text/language/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/language/match.go -------------------------------------------------------------------------------- /src/golang.org/x/text/language/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/language/parse.go -------------------------------------------------------------------------------- /src/golang.org/x/text/language/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/language/tables.go -------------------------------------------------------------------------------- /src/golang.org/x/text/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/language/tags.go -------------------------------------------------------------------------------- /src/golang.org/x/text/message/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/message/catalog.go -------------------------------------------------------------------------------- /src/golang.org/x/text/message/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/message/doc.go -------------------------------------------------------------------------------- /src/golang.org/x/text/message/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/message/format.go -------------------------------------------------------------------------------- /src/golang.org/x/text/message/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/message/message.go -------------------------------------------------------------------------------- /src/golang.org/x/text/message/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/message/print.go -------------------------------------------------------------------------------- /src/golang.org/x/text/number/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/number/doc.go -------------------------------------------------------------------------------- /src/golang.org/x/text/number/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/number/format.go -------------------------------------------------------------------------------- /src/golang.org/x/text/number/number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/number/number.go -------------------------------------------------------------------------------- /src/golang.org/x/text/number/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/number/option.go -------------------------------------------------------------------------------- /src/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /src/golang.org/x/text/runes/cond_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/runes/cond_test.go -------------------------------------------------------------------------------- /src/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /src/golang.org/x/text/search/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/search/index.go -------------------------------------------------------------------------------- /src/golang.org/x/text/search/pattern.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/search/pattern.go -------------------------------------------------------------------------------- /src/golang.org/x/text/search/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/search/search.go -------------------------------------------------------------------------------- /src/golang.org/x/text/search/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/search/tables.go -------------------------------------------------------------------------------- /src/golang.org/x/text/secure/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/secure/doc.go -------------------------------------------------------------------------------- /src/golang.org/x/text/unicode/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/unicode/doc.go -------------------------------------------------------------------------------- /src/golang.org/x/text/width/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/width/gen.go -------------------------------------------------------------------------------- /src/golang.org/x/text/width/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/width/transform.go -------------------------------------------------------------------------------- /src/golang.org/x/text/width/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/width/trieval.go -------------------------------------------------------------------------------- /src/golang.org/x/text/width/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/golang.org/x/text/width/width.go -------------------------------------------------------------------------------- /src/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /src/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /src/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /src/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /src/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /src/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /src/gopkg.in/yaml.v2/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/gopkg.in/yaml.v2/decode_test.go -------------------------------------------------------------------------------- /src/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /src/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /src/gopkg.in/yaml.v2/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/gopkg.in/yaml.v2/encode_test.go -------------------------------------------------------------------------------- /src/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /src/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /src/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /src/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /src/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /src/gopkg.in/yaml.v2/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/gopkg.in/yaml.v2/suite_test.go -------------------------------------------------------------------------------- /src/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /src/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /src/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /src/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /src/k8s.io/api/Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/Godeps/Godeps.json -------------------------------------------------------------------------------- /src/k8s.io/api/Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/Godeps/Readme -------------------------------------------------------------------------------- /src/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /src/k8s.io/api/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/OWNERS -------------------------------------------------------------------------------- /src/k8s.io/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/README.md -------------------------------------------------------------------------------- /src/k8s.io/api/admission/v1beta1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/admission/v1beta1/BUILD -------------------------------------------------------------------------------- /src/k8s.io/api/admission/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/admission/v1beta1/doc.go -------------------------------------------------------------------------------- /src/k8s.io/api/apps/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/apps/OWNERS -------------------------------------------------------------------------------- /src/k8s.io/api/apps/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/apps/v1/BUILD -------------------------------------------------------------------------------- /src/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /src/k8s.io/api/apps/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/apps/v1/generated.pb.go -------------------------------------------------------------------------------- /src/k8s.io/api/apps/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/apps/v1/generated.proto -------------------------------------------------------------------------------- /src/k8s.io/api/apps/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/apps/v1/register.go -------------------------------------------------------------------------------- /src/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /src/k8s.io/api/apps/v1beta1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/apps/v1beta1/BUILD -------------------------------------------------------------------------------- /src/k8s.io/api/apps/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/apps/v1beta1/doc.go -------------------------------------------------------------------------------- /src/k8s.io/api/apps/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/apps/v1beta1/register.go -------------------------------------------------------------------------------- /src/k8s.io/api/apps/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/apps/v1beta1/types.go -------------------------------------------------------------------------------- /src/k8s.io/api/apps/v1beta2/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/apps/v1beta2/BUILD -------------------------------------------------------------------------------- /src/k8s.io/api/apps/v1beta2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/apps/v1beta2/doc.go -------------------------------------------------------------------------------- /src/k8s.io/api/apps/v1beta2/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/apps/v1beta2/register.go -------------------------------------------------------------------------------- /src/k8s.io/api/apps/v1beta2/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/apps/v1beta2/types.go -------------------------------------------------------------------------------- /src/k8s.io/api/authentication/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/authentication/OWNERS -------------------------------------------------------------------------------- /src/k8s.io/api/authentication/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/authentication/v1/BUILD -------------------------------------------------------------------------------- /src/k8s.io/api/authentication/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/authentication/v1/doc.go -------------------------------------------------------------------------------- /src/k8s.io/api/authorization/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/authorization/OWNERS -------------------------------------------------------------------------------- /src/k8s.io/api/authorization/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/authorization/v1/BUILD -------------------------------------------------------------------------------- /src/k8s.io/api/authorization/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/authorization/v1/doc.go -------------------------------------------------------------------------------- /src/k8s.io/api/authorization/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/authorization/v1/types.go -------------------------------------------------------------------------------- /src/k8s.io/api/autoscaling/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/autoscaling/OWNERS -------------------------------------------------------------------------------- /src/k8s.io/api/autoscaling/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/autoscaling/v1/BUILD -------------------------------------------------------------------------------- /src/k8s.io/api/autoscaling/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/autoscaling/v1/doc.go -------------------------------------------------------------------------------- /src/k8s.io/api/autoscaling/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/autoscaling/v1/types.go -------------------------------------------------------------------------------- /src/k8s.io/api/autoscaling/v2beta1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/autoscaling/v2beta1/BUILD -------------------------------------------------------------------------------- /src/k8s.io/api/batch/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/batch/OWNERS -------------------------------------------------------------------------------- /src/k8s.io/api/batch/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/batch/v1/BUILD -------------------------------------------------------------------------------- /src/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /src/k8s.io/api/batch/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/batch/v1/generated.pb.go -------------------------------------------------------------------------------- /src/k8s.io/api/batch/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/batch/v1/generated.proto -------------------------------------------------------------------------------- /src/k8s.io/api/batch/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/batch/v1/register.go -------------------------------------------------------------------------------- /src/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /src/k8s.io/api/batch/v1beta1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/batch/v1beta1/BUILD -------------------------------------------------------------------------------- /src/k8s.io/api/batch/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/batch/v1beta1/doc.go -------------------------------------------------------------------------------- /src/k8s.io/api/batch/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/batch/v1beta1/register.go -------------------------------------------------------------------------------- /src/k8s.io/api/batch/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/batch/v1beta1/types.go -------------------------------------------------------------------------------- /src/k8s.io/api/batch/v2alpha1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/batch/v2alpha1/BUILD -------------------------------------------------------------------------------- /src/k8s.io/api/batch/v2alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/batch/v2alpha1/doc.go -------------------------------------------------------------------------------- /src/k8s.io/api/batch/v2alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/batch/v2alpha1/types.go -------------------------------------------------------------------------------- /src/k8s.io/api/certificates/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/certificates/OWNERS -------------------------------------------------------------------------------- /src/k8s.io/api/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/code-of-conduct.md -------------------------------------------------------------------------------- /src/k8s.io/api/core/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/core/v1/BUILD -------------------------------------------------------------------------------- /src/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /src/k8s.io/api/core/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/core/v1/generated.pb.go -------------------------------------------------------------------------------- /src/k8s.io/api/core/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/core/v1/generated.proto -------------------------------------------------------------------------------- /src/k8s.io/api/core/v1/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/core/v1/meta.go -------------------------------------------------------------------------------- /src/k8s.io/api/core/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/core/v1/register.go -------------------------------------------------------------------------------- /src/k8s.io/api/core/v1/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/core/v1/resource.go -------------------------------------------------------------------------------- /src/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /src/k8s.io/api/core/v1/taint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/core/v1/taint_test.go -------------------------------------------------------------------------------- /src/k8s.io/api/core/v1/toleration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/core/v1/toleration.go -------------------------------------------------------------------------------- /src/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /src/k8s.io/api/events/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/events/OWNERS -------------------------------------------------------------------------------- /src/k8s.io/api/events/v1beta1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/events/v1beta1/BUILD -------------------------------------------------------------------------------- /src/k8s.io/api/events/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/events/v1beta1/doc.go -------------------------------------------------------------------------------- /src/k8s.io/api/events/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/events/v1beta1/types.go -------------------------------------------------------------------------------- /src/k8s.io/api/extensions/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/extensions/OWNERS -------------------------------------------------------------------------------- /src/k8s.io/api/extensions/v1beta1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/extensions/v1beta1/BUILD -------------------------------------------------------------------------------- /src/k8s.io/api/extensions/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/extensions/v1beta1/doc.go -------------------------------------------------------------------------------- /src/k8s.io/api/imagepolicy/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/imagepolicy/OWNERS -------------------------------------------------------------------------------- /src/k8s.io/api/networking/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/networking/OWNERS -------------------------------------------------------------------------------- /src/k8s.io/api/networking/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/networking/v1/BUILD -------------------------------------------------------------------------------- /src/k8s.io/api/networking/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/networking/v1/doc.go -------------------------------------------------------------------------------- /src/k8s.io/api/networking/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/networking/v1/register.go -------------------------------------------------------------------------------- /src/k8s.io/api/networking/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/networking/v1/types.go -------------------------------------------------------------------------------- /src/k8s.io/api/policy/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/policy/OWNERS -------------------------------------------------------------------------------- /src/k8s.io/api/policy/v1beta1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/policy/v1beta1/BUILD -------------------------------------------------------------------------------- /src/k8s.io/api/policy/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/policy/v1beta1/doc.go -------------------------------------------------------------------------------- /src/k8s.io/api/policy/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/policy/v1beta1/types.go -------------------------------------------------------------------------------- /src/k8s.io/api/rbac/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/rbac/OWNERS -------------------------------------------------------------------------------- /src/k8s.io/api/rbac/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/rbac/v1/BUILD -------------------------------------------------------------------------------- /src/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /src/k8s.io/api/rbac/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/rbac/v1/generated.pb.go -------------------------------------------------------------------------------- /src/k8s.io/api/rbac/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/rbac/v1/generated.proto -------------------------------------------------------------------------------- /src/k8s.io/api/rbac/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/rbac/v1/register.go -------------------------------------------------------------------------------- /src/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /src/k8s.io/api/rbac/v1alpha1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/rbac/v1alpha1/BUILD -------------------------------------------------------------------------------- /src/k8s.io/api/rbac/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/rbac/v1alpha1/doc.go -------------------------------------------------------------------------------- /src/k8s.io/api/rbac/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/rbac/v1alpha1/register.go -------------------------------------------------------------------------------- /src/k8s.io/api/rbac/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/rbac/v1alpha1/types.go -------------------------------------------------------------------------------- /src/k8s.io/api/rbac/v1beta1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/rbac/v1beta1/BUILD -------------------------------------------------------------------------------- /src/k8s.io/api/rbac/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/rbac/v1beta1/doc.go -------------------------------------------------------------------------------- /src/k8s.io/api/rbac/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/rbac/v1beta1/register.go -------------------------------------------------------------------------------- /src/k8s.io/api/rbac/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/rbac/v1beta1/types.go -------------------------------------------------------------------------------- /src/k8s.io/api/scheduling/v1alpha1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/scheduling/v1alpha1/BUILD -------------------------------------------------------------------------------- /src/k8s.io/api/settings/v1alpha1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/settings/v1alpha1/BUILD -------------------------------------------------------------------------------- /src/k8s.io/api/settings/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/settings/v1alpha1/doc.go -------------------------------------------------------------------------------- /src/k8s.io/api/storage/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - mbohlool 4 | -------------------------------------------------------------------------------- /src/k8s.io/api/storage/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/storage/v1/BUILD -------------------------------------------------------------------------------- /src/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /src/k8s.io/api/storage/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/storage/v1/register.go -------------------------------------------------------------------------------- /src/k8s.io/api/storage/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/storage/v1/types.go -------------------------------------------------------------------------------- /src/k8s.io/api/storage/v1alpha1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/storage/v1alpha1/BUILD -------------------------------------------------------------------------------- /src/k8s.io/api/storage/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/storage/v1alpha1/doc.go -------------------------------------------------------------------------------- /src/k8s.io/api/storage/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/storage/v1alpha1/types.go -------------------------------------------------------------------------------- /src/k8s.io/api/storage/v1beta1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/storage/v1beta1/BUILD -------------------------------------------------------------------------------- /src/k8s.io/api/storage/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/storage/v1beta1/doc.go -------------------------------------------------------------------------------- /src/k8s.io/api/storage/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/api/storage/v1beta1/types.go -------------------------------------------------------------------------------- /src/k8s.io/api/vendor/github.com/emicklei/go-restful/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.x 5 | 6 | script: go test -v -------------------------------------------------------------------------------- /src/k8s.io/api/vendor/github.com/emicklei/go-restful/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /src/k8s.io/api/vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /src/k8s.io/api/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /src/k8s.io/api/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /src/k8s.io/apimachinery/Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/apimachinery/Godeps/Readme -------------------------------------------------------------------------------- /src/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /src/k8s.io/apimachinery/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/apimachinery/OWNERS -------------------------------------------------------------------------------- /src/k8s.io/apimachinery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/apimachinery/README.md -------------------------------------------------------------------------------- /src/k8s.io/apimachinery/pkg/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/apimachinery/pkg/OWNERS -------------------------------------------------------------------------------- /src/k8s.io/apimachinery/pkg/fields/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/apimachinery/pkg/fields/BUILD -------------------------------------------------------------------------------- /src/k8s.io/apimachinery/pkg/labels/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/apimachinery/pkg/labels/BUILD -------------------------------------------------------------------------------- /src/k8s.io/apimachinery/pkg/test/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/apimachinery/pkg/test/BUILD -------------------------------------------------------------------------------- /src/k8s.io/apimachinery/pkg/test/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/apimachinery/pkg/test/util.go -------------------------------------------------------------------------------- /src/k8s.io/apimachinery/pkg/types/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/apimachinery/pkg/types/BUILD -------------------------------------------------------------------------------- /src/k8s.io/apimachinery/pkg/types/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/apimachinery/pkg/types/doc.go -------------------------------------------------------------------------------- /src/k8s.io/apimachinery/pkg/types/uid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/apimachinery/pkg/types/uid.go -------------------------------------------------------------------------------- /src/k8s.io/apimachinery/pkg/watch/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/apimachinery/pkg/watch/BUILD -------------------------------------------------------------------------------- /src/k8s.io/apimachinery/pkg/watch/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/apimachinery/pkg/watch/doc.go -------------------------------------------------------------------------------- /src/k8s.io/apimachinery/pkg/watch/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/apimachinery/pkg/watch/mux.go -------------------------------------------------------------------------------- /src/k8s.io/apimachinery/vendor/github.com/elazarl/goproxy/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | *.swp 3 | -------------------------------------------------------------------------------- /src/k8s.io/apimachinery/vendor/github.com/emicklei/go-restful/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.x 5 | 6 | script: go test -v -------------------------------------------------------------------------------- /src/k8s.io/apimachinery/vendor/github.com/emicklei/go-restful/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /src/k8s.io/apimachinery/vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /src/k8s.io/apimachinery/vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /src/k8s.io/apimachinery/vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /src/k8s.io/apimachinery/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /src/k8s.io/apimachinery/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /src/k8s.io/client-go/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/.travis.yml -------------------------------------------------------------------------------- /src/k8s.io/client-go/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/CHANGELOG.md -------------------------------------------------------------------------------- /src/k8s.io/client-go/Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/Godeps/Godeps.json -------------------------------------------------------------------------------- /src/k8s.io/client-go/Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/Godeps/Readme -------------------------------------------------------------------------------- /src/k8s.io/client-go/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/INSTALL.md -------------------------------------------------------------------------------- /src/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /src/k8s.io/client-go/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/OWNERS -------------------------------------------------------------------------------- /src/k8s.io/client-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/README.md -------------------------------------------------------------------------------- /src/k8s.io/client-go/discovery/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/discovery/BUILD -------------------------------------------------------------------------------- /src/k8s.io/client-go/dynamic/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/dynamic/BUILD -------------------------------------------------------------------------------- /src/k8s.io/client-go/informers/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/informers/BUILD -------------------------------------------------------------------------------- /src/k8s.io/client-go/kubernetes/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/kubernetes/BUILD -------------------------------------------------------------------------------- /src/k8s.io/client-go/pkg/version/.gitattributes: -------------------------------------------------------------------------------- 1 | base.go export-subst 2 | -------------------------------------------------------------------------------- /src/k8s.io/client-go/rest/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/rest/BUILD -------------------------------------------------------------------------------- /src/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/rest/OWNERS -------------------------------------------------------------------------------- /src/k8s.io/client-go/rest/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/rest/client.go -------------------------------------------------------------------------------- /src/k8s.io/client-go/rest/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/rest/config.go -------------------------------------------------------------------------------- /src/k8s.io/client-go/rest/fake/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/rest/fake/BUILD -------------------------------------------------------------------------------- /src/k8s.io/client-go/rest/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/rest/plugin.go -------------------------------------------------------------------------------- /src/k8s.io/client-go/rest/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/rest/request.go -------------------------------------------------------------------------------- /src/k8s.io/client-go/rest/versions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/rest/versions.go -------------------------------------------------------------------------------- /src/k8s.io/client-go/rest/watch/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/rest/watch/BUILD -------------------------------------------------------------------------------- /src/k8s.io/client-go/scale/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/scale/BUILD -------------------------------------------------------------------------------- /src/k8s.io/client-go/scale/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/scale/client.go -------------------------------------------------------------------------------- /src/k8s.io/client-go/scale/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/scale/doc.go -------------------------------------------------------------------------------- /src/k8s.io/client-go/scale/fake/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/scale/fake/BUILD -------------------------------------------------------------------------------- /src/k8s.io/client-go/scale/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/scale/util.go -------------------------------------------------------------------------------- /src/k8s.io/client-go/testing/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/testing/BUILD -------------------------------------------------------------------------------- /src/k8s.io/client-go/testing/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/testing/fake.go -------------------------------------------------------------------------------- /src/k8s.io/client-go/tools/auth/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/tools/auth/BUILD -------------------------------------------------------------------------------- /src/k8s.io/client-go/transport/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/transport/BUILD -------------------------------------------------------------------------------- /src/k8s.io/client-go/transport/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/transport/OWNERS -------------------------------------------------------------------------------- /src/k8s.io/client-go/util/cert/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/util/cert/BUILD -------------------------------------------------------------------------------- /src/k8s.io/client-go/util/cert/csr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/util/cert/csr.go -------------------------------------------------------------------------------- /src/k8s.io/client-go/util/cert/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/util/cert/io.go -------------------------------------------------------------------------------- /src/k8s.io/client-go/util/cert/pem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/util/cert/pem.go -------------------------------------------------------------------------------- /src/k8s.io/client-go/util/exec/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/util/exec/BUILD -------------------------------------------------------------------------------- /src/k8s.io/client-go/util/retry/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/client-go/util/retry/BUILD -------------------------------------------------------------------------------- /src/k8s.io/client-go/util/retry/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - caesarxuchao 3 | -------------------------------------------------------------------------------- /src/k8s.io/client-go/vendor/github.com/dgrijalva/jwt-go/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/k8s.io/client-go/vendor/github.com/emicklei/go-restful/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.x 5 | 6 | script: go test -v -------------------------------------------------------------------------------- /src/k8s.io/client-go/vendor/github.com/emicklei/go-restful/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /src/k8s.io/client-go/vendor/github.com/google/btree/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /src/k8s.io/client-go/vendor/github.com/gophercloud/gophercloud/.gitignore: -------------------------------------------------------------------------------- 1 | **/*.swp 2 | .idea 3 | -------------------------------------------------------------------------------- /src/k8s.io/client-go/vendor/github.com/gophercloud/gophercloud/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/k8s.io/client-go/vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /src/k8s.io/client-go/vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /src/k8s.io/client-go/vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /src/k8s.io/client-go/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /src/k8s.io/client-go/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /src/k8s.io/client-go/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /src/k8s.io/kube-openapi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/kube-openapi/.gitignore -------------------------------------------------------------------------------- /src/k8s.io/kube-openapi/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/kube-openapi/.travis.yml -------------------------------------------------------------------------------- /src/k8s.io/kube-openapi/Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/kube-openapi/Godeps/Readme -------------------------------------------------------------------------------- /src/k8s.io/kube-openapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/kube-openapi/LICENSE -------------------------------------------------------------------------------- /src/k8s.io/kube-openapi/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/kube-openapi/OWNERS -------------------------------------------------------------------------------- /src/k8s.io/kube-openapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/k8s.io/kube-openapi/README.md -------------------------------------------------------------------------------- /src/src2/src/archive/tar/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/src2/src/archive/tar/common.go -------------------------------------------------------------------------------- /src/src2/src/archive/tar/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/src2/src/archive/tar/format.go -------------------------------------------------------------------------------- /src/src2/src/archive/tar/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/src2/src/archive/tar/reader.go -------------------------------------------------------------------------------- /src/src2/src/archive/tar/stat_atim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/src2/src/archive/tar/stat_atim.go -------------------------------------------------------------------------------- /src/src2/src/archive/tar/stat_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/src2/src/archive/tar/stat_unix.go -------------------------------------------------------------------------------- /src/src2/src/archive/tar/strconv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/src2/src/archive/tar/strconv.go -------------------------------------------------------------------------------- /src/src2/src/archive/tar/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/src2/src/archive/tar/writer.go -------------------------------------------------------------------------------- /src/src2/src/github.com/Microsoft/opengcs/client/unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | 3 | package client 4 | -------------------------------------------------------------------------------- /src/src2/src/github.com/containerd/containerd/api/services/images/v1/docs.go: -------------------------------------------------------------------------------- 1 | package images 2 | -------------------------------------------------------------------------------- /src/src2/src/github.com/containerd/containerd/api/services/introspection/v1/doc.go: -------------------------------------------------------------------------------- 1 | package introspection 2 | -------------------------------------------------------------------------------- /src/src2/src/github.com/containerd/containerd/api/services/leases/v1/doc.go: -------------------------------------------------------------------------------- 1 | package leases 2 | -------------------------------------------------------------------------------- /src/src2/src/github.com/containerd/containerd/api/types/doc.go: -------------------------------------------------------------------------------- 1 | package types 2 | -------------------------------------------------------------------------------- /src/src2/src/github.com/containerd/containerd/protobuf/google/rpc/doc.go: -------------------------------------------------------------------------------- 1 | package rpc 2 | -------------------------------------------------------------------------------- /src/src2/src/github.com/docker/distribution/manifest/doc.go: -------------------------------------------------------------------------------- 1 | package manifest 2 | -------------------------------------------------------------------------------- /src/src2/src/github.com/docker/go-connections/sockets/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/src2/src/github.com/docker/swarmkit/manager/doc.go: -------------------------------------------------------------------------------- 1 | package manager 2 | -------------------------------------------------------------------------------- /src/src2/src/github.com/fluent/fluent-logger-golang/fluent/version.go: -------------------------------------------------------------------------------- 1 | package fluent 2 | 3 | const Version = "1.3.0" 4 | -------------------------------------------------------------------------------- /src/src2/src/github.com/kr/pty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/src2/src/github.com/kr/pty/doc.go -------------------------------------------------------------------------------- /src/src2/src/github.com/kr/pty/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/src2/src/github.com/kr/pty/run.go -------------------------------------------------------------------------------- /src/src2/src/github.com/opencontainers/runc/libcontainer/cgroups/cgroups_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package cgroups 4 | -------------------------------------------------------------------------------- /src/src2/src/github.com/opencontainers/runc/libcontainer/devices/devices_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package devices 4 | -------------------------------------------------------------------------------- /src/src2/src/github.com/spf13/cobra/command_notwin.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | 3 | package cobra 4 | 5 | var preExecHookFn func(*Command) 6 | -------------------------------------------------------------------------------- /src/src2/src/github.com/ugorji/go/codec/prebuild.go: -------------------------------------------------------------------------------- 1 | package codec 2 | 3 | //go:generate bash prebuild.sh 4 | -------------------------------------------------------------------------------- /src/src2/src/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/src2/src/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /src/src2/src/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/src2/src/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /src/src2/src/golang.org/x/net/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/src2/src/golang.org/x/net/README -------------------------------------------------------------------------------- /src/src2/src/golang.org/x/sync/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/src2/src/golang.org/x/sync/README -------------------------------------------------------------------------------- /src/src2/src/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/src2/src/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /src/src2/src/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/src2/src/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /src/src2/src/golang.org/x/text/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/src2/src/golang.org/x/text/README -------------------------------------------------------------------------------- /src/src2/src/golang.org/x/time/README: -------------------------------------------------------------------------------- 1 | This repository provides supplementary Go time packages. 2 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .vagrant/ 3 | /out/* 4 | tmp/ 5 | **/*.test 6 | .idea/ 7 | *.iml 8 | 9 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/acceptance/assets/dummy-too-boshrelease/config/blobs.yml: -------------------------------------------------------------------------------- 1 | --- {} 2 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/acceptance/assets/dummy-too-boshrelease/config/final.yml: -------------------------------------------------------------------------------- 1 | --- {} 2 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/acceptance/assets/dummy-too-boshrelease/packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/acceptance/assets/dummy-too-boshrelease/src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/acceptance/assets/sample-release/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/acceptance/assets/sample-release/config/dev.yml: -------------------------------------------------------------------------------- 1 | --- 2 | dev_name: sample-release 3 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/acceptance/assets/sample-release/config/final.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: sample-release 3 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/acceptance/assets/sample-release/packages/sample-pkg/packaging: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/acceptance/assets/sample-release/src/sample-pkg/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/cmd/version.go: -------------------------------------------------------------------------------- 1 | package cmd 2 | 3 | const VersionLabel = "[DEV BUILD]" 4 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/test_support/spy.go: -------------------------------------------------------------------------------- 1 | package test_support 2 | 3 | type Spy interface { 4 | Record() 5 | } 6 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/vendor/github.com/cloudfoundry/bosh-davcli/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | pkg 3 | .envrc 4 | .idea 5 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/vendor/github.com/cloudfoundry/bosh-gcscli/.gitignore: -------------------------------------------------------------------------------- 1 | *.lock 2 | bosh-gcscli 3 | config.json 4 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/vendor/github.com/cloudfoundry/bosh-s3cli/.envrc: -------------------------------------------------------------------------------- 1 | export PROJECT_DIR=$PWD 2 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/vendor/github.com/cloudfoundry/bosh-utils/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .vagrant 3 | *.iml 4 | out 5 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/vendor/github.com/googleapis/gax-go/.gitignore: -------------------------------------------------------------------------------- 1 | *.cover 2 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/vendor/github.com/onsi/ginkgo/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | TODO 3 | tmp/**/* 4 | *.coverprofile -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/vendor/github.com/onsi/gomega/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.test 3 | . 4 | .idea 5 | gomega.iml 6 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/vendor/github.com/pivotal-cf/paraphernalia/.gitignore: -------------------------------------------------------------------------------- 1 | /bazel-* 2 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/vendor/golang.org/x/crypto/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/vendor/golang.org/x/text/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/vendor/golang.org/x/tools/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-cli/vendor/google.golang.org/api/.hgtags: -------------------------------------------------------------------------------- 1 | b571b553f8c057cb6952ce817dfb09b6e34a8c0b release 2 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-utils/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .vagrant 3 | *.iml 4 | out 5 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-utils/blobstore/test_assets/some.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-utils/fileutil/test_assets/symlink_target/app.stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-utils/fileutil/test_assets/symlink_target/sub_dir/sub_app.stdout.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-utils/fileutil/test_assets/test_filtered_copy_to_temp/app.stderr.log: -------------------------------------------------------------------------------- 1 | this is app stderr 2 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-utils/fileutil/test_assets/test_filtered_copy_to_temp/app.stdout.log: -------------------------------------------------------------------------------- 1 | this is app stdout 2 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-utils/main/version.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | const VersionLabel = "[DEV BUILD]" 4 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-utils/system/test_assets/test_copy_dir_entries/bar/bar.txt: -------------------------------------------------------------------------------- 1 | bar 2 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-utils/system/test_assets/test_copy_dir_entries/bar/baz/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-utils/system/test_assets/test_copy_dir_entries/foo.txt: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-utils/vendor/github.com/onsi/gomega/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.test 3 | . 4 | .idea 5 | gomega.iml 6 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-utils/vendor/github.com/pivotal-cf/paraphernalia/.gitignore: -------------------------------------------------------------------------------- 1 | /bazel-* 2 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-utils/vendor/golang.org/x/crypto/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-utils/vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-utils/vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-utils/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /src/src3/src/github.com/cloudfoundry/bosh-utils/vendor/golang.org/x/text/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /src/src3/src/gopkg.in/robfig/cron.v2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /src/src3/src/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/src3/src/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /src/src3/src/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/src3/src/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /src/src3/src/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/src/src3/src/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/tests/run.sh -------------------------------------------------------------------------------- /update-deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bosh-cpis/bosh-kubernetes-cpi-release/HEAD/update-deps --------------------------------------------------------------------------------