├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── client ├── dockerclient.go └── dockerclient_test.go ├── cmd └── interlock │ ├── .gitignore │ ├── main.go │ ├── run.go │ └── spec.go ├── config ├── config.go ├── utils.go └── utils_test.go ├── docs ├── README.md ├── _config.yml ├── configuration.md ├── examples │ ├── haproxy │ │ ├── config.toml │ │ ├── docker-compose.yml │ │ └── haproxy.cfg.template.example │ ├── nginx-swarm-machine │ │ ├── README.md │ │ └── docker-compose.yml │ ├── nginx-swarm │ │ ├── config.toml │ │ └── docker-compose.yml │ ├── nginx-ucp │ │ ├── README.md │ │ ├── docker-compose.yml │ │ └── screenshot.png │ └── nginx │ │ ├── config.toml │ │ ├── docker-compose.yml │ │ ├── nginx-plus.conf.template.example │ │ └── nginx.conf.template.example ├── extensions.md ├── extensions │ ├── beacon.md │ ├── haproxy.md │ └── nginx.md ├── getting_started.md └── interlock_data.md ├── events ├── events.go └── events_test.go ├── ext ├── README.md ├── beacon │ ├── beacon.go │ ├── influxdb.go │ ├── prometheus_metrics.go │ ├── rules.go │ └── stats.go ├── ext.go └── lb │ ├── haproxy │ ├── config.go │ ├── generate.go │ ├── haproxy.go │ ├── iptables.go │ └── template.go │ ├── lb.go │ ├── nginx │ ├── config.go │ ├── generate.go │ ├── nginx.go │ ├── template.go │ └── template_nginxplus.go │ └── utils │ ├── alias_domains.go │ ├── alias_domains_test.go │ ├── backend_options.go │ ├── backend_options_test.go │ ├── balance.go │ ├── balance_test.go │ ├── context_root.go │ ├── context_root_test.go │ ├── domain.go │ ├── domain_test.go │ ├── health_check.go │ ├── health_check_test.go │ ├── hostname.go │ ├── hostname_test.go │ ├── ip_hash.go │ ├── network.go │ ├── network_test.go │ ├── ssl.go │ ├── ssl_test.go │ ├── websocket.go │ └── websocket_test.go ├── glide.lock ├── glide.yaml ├── pkg └── tlsconfig │ └── tlsconfig.go ├── server ├── metrics.go ├── server.go ├── swarm.go ├── utils.go └── utils_test.go ├── test ├── certs │ ├── README.md │ ├── ca.pem │ ├── cert.pem │ └── key.pem └── integration │ └── nginx_test.go ├── utils ├── node_id.go └── node_id_test.go ├── vendor ├── github.com │ ├── BurntSushi │ │ └── toml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── COMPATIBLE │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── _examples │ │ │ ├── example.go │ │ │ ├── example.toml │ │ │ ├── hard.toml │ │ │ ├── implicit.toml │ │ │ ├── invalid-apples.toml │ │ │ ├── invalid.toml │ │ │ ├── readme1.toml │ │ │ └── readme2.toml │ │ │ ├── cmd │ │ │ ├── toml-test-decoder │ │ │ │ ├── COPYING │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ │ ├── toml-test-encoder │ │ │ │ ├── COPYING │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ │ └── tomlv │ │ │ │ ├── COPYING │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ │ ├── decode.go │ │ │ ├── decode_meta.go │ │ │ ├── decode_test.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── encode_test.go │ │ │ ├── encoding_types.go │ │ │ ├── encoding_types_1.1.go │ │ │ ├── lex.go │ │ │ ├── parse.go │ │ │ ├── session.vim │ │ │ ├── type_check.go │ │ │ └── type_fields.go │ ├── Microsoft │ │ └── go-winio │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── archive │ │ │ └── tar │ │ │ │ ├── LICENSE │ │ │ │ ├── common.go │ │ │ │ ├── example_test.go │ │ │ │ ├── reader.go │ │ │ │ ├── reader_test.go │ │ │ │ ├── stat_atim.go │ │ │ │ ├── stat_atimespec.go │ │ │ │ ├── stat_unix.go │ │ │ │ ├── tar_test.go │ │ │ │ ├── testdata │ │ │ │ ├── gnu-multi-hdrs.tar │ │ │ │ ├── gnu.tar │ │ │ │ ├── hardlink.tar │ │ │ │ ├── hdr-only.tar │ │ │ │ ├── issue10968.tar │ │ │ │ ├── issue11169.tar │ │ │ │ ├── issue12435.tar │ │ │ │ ├── neg-size.tar │ │ │ │ ├── nil-uid.tar │ │ │ │ ├── pax-multi-hdrs.tar │ │ │ │ ├── pax-path-hdr.tar │ │ │ │ ├── pax.tar │ │ │ │ ├── small.txt │ │ │ │ ├── small2.txt │ │ │ │ ├── sparse-formats.tar │ │ │ │ ├── star.tar │ │ │ │ ├── ustar-file-reg.tar │ │ │ │ ├── ustar.tar │ │ │ │ ├── v7.tar │ │ │ │ ├── writer-big-long.tar │ │ │ │ ├── writer-big.tar │ │ │ │ ├── writer.tar │ │ │ │ └── xattrs.tar │ │ │ │ ├── writer.go │ │ │ │ └── writer_test.go │ │ │ ├── backup.go │ │ │ ├── backup_test.go │ │ │ ├── backuptar │ │ │ ├── tar.go │ │ │ └── tar_test.go │ │ │ ├── file.go │ │ │ ├── fileinfo.go │ │ │ ├── pipe.go │ │ │ ├── pipe_test.go │ │ │ ├── privilege.go │ │ │ ├── privileges_test.go │ │ │ ├── reparse.go │ │ │ ├── sd.go │ │ │ ├── sd_test.go │ │ │ ├── syscall.go │ │ │ ├── wim │ │ │ ├── decompress.go │ │ │ ├── lzx │ │ │ │ └── lzx.go │ │ │ ├── validate │ │ │ │ └── validate.go │ │ │ └── wim.go │ │ │ └── zsyscall.go │ ├── Sirupsen │ │ └── logrus │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── alt_exit.go │ │ │ ├── alt_exit_test.go │ │ │ ├── doc.go │ │ │ ├── entry.go │ │ │ ├── entry_test.go │ │ │ ├── examples │ │ │ ├── basic │ │ │ │ └── basic.go │ │ │ └── hook │ │ │ │ └── hook.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── formatter_bench_test.go │ │ │ ├── hook_test.go │ │ │ ├── hooks.go │ │ │ ├── hooks │ │ │ ├── syslog │ │ │ │ ├── README.md │ │ │ │ ├── syslog.go │ │ │ │ └── syslog_test.go │ │ │ └── test │ │ │ │ ├── test.go │ │ │ │ └── test_test.go │ │ │ ├── json_formatter.go │ │ │ ├── json_formatter_test.go │ │ │ ├── logger.go │ │ │ ├── logger_bench_test.go │ │ │ ├── logrus.go │ │ │ ├── logrus_test.go │ │ │ ├── terminal_appengine.go │ │ │ ├── terminal_bsd.go │ │ │ ├── terminal_linux.go │ │ │ ├── terminal_notwindows.go │ │ │ ├── terminal_solaris.go │ │ │ ├── terminal_windows.go │ │ │ ├── text_formatter.go │ │ │ ├── text_formatter_test.go │ │ │ └── writer.go │ ├── beorn7 │ │ └── perks │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── histogram │ │ │ ├── bench_test.go │ │ │ ├── histogram.go │ │ │ └── histogram_test.go │ │ │ ├── quantile │ │ │ ├── bench_test.go │ │ │ ├── example_test.go │ │ │ ├── exampledata.txt │ │ │ ├── stream.go │ │ │ └── stream_test.go │ │ │ └── topk │ │ │ ├── topk.go │ │ │ └── topk_test.go │ ├── codegangsta │ │ └── cli │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── altsrc │ │ │ ├── altsrc.go │ │ │ ├── flag.go │ │ │ ├── flag_generated.go │ │ │ ├── flag_test.go │ │ │ ├── helpers_test.go │ │ │ ├── input_source_context.go │ │ │ ├── map_input_source.go │ │ │ ├── toml_command_test.go │ │ │ ├── toml_file_loader.go │ │ │ ├── yaml_command_test.go │ │ │ └── yaml_file_loader.go │ │ │ ├── app.go │ │ │ ├── app_test.go │ │ │ ├── appveyor.yml │ │ │ ├── autocomplete │ │ │ ├── bash_autocomplete │ │ │ └── zsh_autocomplete │ │ │ ├── category.go │ │ │ ├── cli.go │ │ │ ├── command.go │ │ │ ├── command_test.go │ │ │ ├── context.go │ │ │ ├── context_test.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── flag-types.json │ │ │ ├── flag.go │ │ │ ├── flag_generated.go │ │ │ ├── flag_test.go │ │ │ ├── funcs.go │ │ │ ├── generate-flag-types │ │ │ ├── help.go │ │ │ ├── help_test.go │ │ │ ├── helpers_test.go │ │ │ ├── helpers_unix_test.go │ │ │ ├── helpers_windows_test.go │ │ │ └── runtests │ ├── coreos │ │ └── etcd │ │ │ ├── .dockerignore │ │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── .godir │ │ │ ├── .header │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── DCO │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-release │ │ │ ├── Documentation │ │ │ ├── benchmarks │ │ │ │ ├── README.md │ │ │ │ ├── etcd-2-1-0-alpha-benchmarks.md │ │ │ │ ├── etcd-2-2-0-benchmarks.md │ │ │ │ ├── etcd-2-2-0-rc-benchmarks.md │ │ │ │ ├── etcd-2-2-0-rc-memory-benchmarks.md │ │ │ │ ├── etcd-3-demo-benchmarks.md │ │ │ │ ├── etcd-3-watch-memory-benchmark.md │ │ │ │ └── etcd-storage-memory-benchmark.md │ │ │ ├── branch_management.md │ │ │ ├── demo.md │ │ │ ├── dev-guide │ │ │ │ ├── api_grpc_gateway.md │ │ │ │ ├── api_reference_v3.md │ │ │ │ ├── apispec │ │ │ │ │ └── swagger │ │ │ │ │ │ └── rpc.swagger.json │ │ │ │ ├── experimental_apis.md │ │ │ │ ├── interacting_v3.md │ │ │ │ └── local_cluster.md │ │ │ ├── dev-internal │ │ │ │ ├── discovery_protocol.md │ │ │ │ ├── logging.md │ │ │ │ └── release.md │ │ │ ├── dl_build.md │ │ │ ├── docs.md │ │ │ ├── learning │ │ │ │ ├── api.md │ │ │ │ ├── api_guarantees.md │ │ │ │ ├── data_model.md │ │ │ │ └── glossary.md │ │ │ ├── libraries-and-tools.md │ │ │ ├── metrics.md │ │ │ ├── op-guide │ │ │ │ ├── clustering.md │ │ │ │ ├── configuration.md │ │ │ │ ├── container.md │ │ │ │ ├── failures.md │ │ │ │ ├── maintenance.md │ │ │ │ ├── performance.md │ │ │ │ ├── recovery.md │ │ │ │ ├── runtime-configuration.md │ │ │ │ ├── runtime-reconf-design.md │ │ │ │ ├── security.md │ │ │ │ ├── supported-platform.md │ │ │ │ ├── v2-migration.md │ │ │ │ └── versioning.md │ │ │ ├── platforms │ │ │ │ └── freebsd.md │ │ │ ├── production-users.md │ │ │ ├── reporting_bugs.md │ │ │ ├── rfc │ │ │ │ └── v3api.md │ │ │ ├── tuning.md │ │ │ ├── upgrades │ │ │ │ └── upgrade_3_0.md │ │ │ └── v2 │ │ │ │ ├── 04_to_2_snapshot_migration.md │ │ │ │ ├── README.md │ │ │ │ ├── admin_guide.md │ │ │ │ ├── api.md │ │ │ │ ├── api_v3.md │ │ │ │ ├── auth_api.md │ │ │ │ ├── authentication.md │ │ │ │ ├── backward_compatibility.md │ │ │ │ ├── benchmarks │ │ │ │ ├── README.md │ │ │ │ ├── etcd-2-1-0-alpha-benchmarks.md │ │ │ │ ├── etcd-2-2-0-benchmarks.md │ │ │ │ ├── etcd-2-2-0-rc-benchmarks.md │ │ │ │ ├── etcd-2-2-0-rc-memory-benchmarks.md │ │ │ │ ├── etcd-3-demo-benchmarks.md │ │ │ │ ├── etcd-3-watch-memory-benchmark.md │ │ │ │ └── etcd-storage-memory-benchmark.md │ │ │ │ ├── branch_management.md │ │ │ │ ├── clustering.md │ │ │ │ ├── configuration.md │ │ │ │ ├── dev │ │ │ │ └── release.md │ │ │ │ ├── discovery_protocol.md │ │ │ │ ├── docker_guide.md │ │ │ │ ├── errorcode.md │ │ │ │ ├── faq.md │ │ │ │ ├── glossary.md │ │ │ │ ├── implementation-faq.md │ │ │ │ ├── internal-protocol-versioning.md │ │ │ │ ├── libraries-and-tools.md │ │ │ │ ├── members_api.md │ │ │ │ ├── metrics.md │ │ │ │ ├── other_apis.md │ │ │ │ ├── platforms │ │ │ │ └── freebsd.md │ │ │ │ ├── production-users.md │ │ │ │ ├── proxy.md │ │ │ │ ├── reporting_bugs.md │ │ │ │ ├── rfc │ │ │ │ └── v3api.md │ │ │ │ ├── runtime-configuration.md │ │ │ │ ├── runtime-reconf-design.md │ │ │ │ ├── security.md │ │ │ │ ├── tuning.md │ │ │ │ ├── upgrade_2_1.md │ │ │ │ ├── upgrade_2_2.md │ │ │ │ └── upgrade_2_3.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── NOTICE │ │ │ ├── Procfile │ │ │ ├── README.md │ │ │ ├── ROADMAP.md │ │ │ ├── V2Procfile │ │ │ ├── alarm │ │ │ └── alarms.go │ │ │ ├── auth │ │ │ ├── authpb │ │ │ │ ├── auth.pb.go │ │ │ │ └── auth.proto │ │ │ ├── doc.go │ │ │ ├── range_perm_cache.go │ │ │ ├── range_perm_cache_test.go │ │ │ ├── simple_token.go │ │ │ ├── store.go │ │ │ └── store_test.go │ │ │ ├── build │ │ │ ├── build.bat │ │ │ ├── build.ps1 │ │ │ ├── client │ │ │ ├── README.md │ │ │ ├── auth_role.go │ │ │ ├── auth_user.go │ │ │ ├── cancelreq.go │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── cluster_error.go │ │ │ ├── curl.go │ │ │ ├── discover.go │ │ │ ├── doc.go │ │ │ ├── fake_transport_test.go │ │ │ ├── keys.generated.go │ │ │ ├── keys.go │ │ │ ├── keys_bench_test.go │ │ │ ├── keys_test.go │ │ │ ├── members.go │ │ │ ├── members_test.go │ │ │ ├── srv.go │ │ │ ├── srv_test.go │ │ │ └── util.go │ │ │ ├── clientv3 │ │ │ ├── README.md │ │ │ ├── auth.go │ │ │ ├── balancer.go │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── cluster.go │ │ │ ├── compact_op.go │ │ │ ├── compact_op_test.go │ │ │ ├── compare.go │ │ │ ├── concurrency │ │ │ │ ├── doc.go │ │ │ │ ├── election.go │ │ │ │ ├── key.go │ │ │ │ ├── mutex.go │ │ │ │ ├── session.go │ │ │ │ └── stm.go │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── doc.go │ │ │ ├── example_auth_test.go │ │ │ ├── example_cluster_test.go │ │ │ ├── example_kv_test.go │ │ │ ├── example_lease_test.go │ │ │ ├── example_maintenence_test.go │ │ │ ├── example_test.go │ │ │ ├── example_watch_test.go │ │ │ ├── integration │ │ │ │ ├── cluster_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── kv_test.go │ │ │ │ ├── lease_test.go │ │ │ │ ├── main_test.go │ │ │ │ ├── mirror_test.go │ │ │ │ ├── role_test.go │ │ │ │ ├── txn_test.go │ │ │ │ ├── user_test.go │ │ │ │ └── watch_test.go │ │ │ ├── kv.go │ │ │ ├── lease.go │ │ │ ├── logger.go │ │ │ ├── main_test.go │ │ │ ├── maintenance.go │ │ │ ├── mirror │ │ │ │ └── syncer.go │ │ │ ├── naming │ │ │ │ ├── grpc.go │ │ │ │ └── grpc_test.go │ │ │ ├── op.go │ │ │ ├── sort.go │ │ │ ├── txn.go │ │ │ ├── txn_test.go │ │ │ ├── watch.go │ │ │ └── watch_test.go │ │ │ ├── cmd │ │ │ ├── Godeps │ │ │ │ ├── Godeps.json │ │ │ │ └── Readme │ │ │ ├── README.md │ │ │ ├── etcdctl │ │ │ ├── etcdmain │ │ │ ├── main.go │ │ │ ├── tools │ │ │ └── vendor │ │ │ │ ├── bitbucket.org │ │ │ │ └── ww │ │ │ │ │ └── goautoneg │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.txt │ │ │ │ │ └── autoneg.go │ │ │ │ ├── github.com │ │ │ │ ├── akrennmair │ │ │ │ │ └── gopcap │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.mkd │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ ├── io.go │ │ │ │ │ │ └── pcap.go │ │ │ │ ├── beorn7 │ │ │ │ │ └── perks │ │ │ │ │ │ └── quantile │ │ │ │ │ │ ├── exampledata.txt │ │ │ │ │ │ └── stream.go │ │ │ │ ├── bgentry │ │ │ │ │ └── speakeasy │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── LICENSE_WINDOWS │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── speakeasy.go │ │ │ │ │ │ ├── speakeasy_unix.go │ │ │ │ │ │ └── speakeasy_windows.go │ │ │ │ ├── boltdb │ │ │ │ │ └── bolt │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── appveyor.yml │ │ │ │ │ │ ├── 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 │ │ │ │ ├── cockroachdb │ │ │ │ │ └── cmux │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── buffer.go │ │ │ │ │ │ ├── cmux.go │ │ │ │ │ │ ├── matchers.go │ │ │ │ │ │ └── patricia.go │ │ │ │ ├── coreos │ │ │ │ │ ├── etcd │ │ │ │ │ ├── go-semver │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ └── semver │ │ │ │ │ │ │ ├── semver.go │ │ │ │ │ │ │ └── sort.go │ │ │ │ │ ├── go-systemd │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── daemon │ │ │ │ │ │ │ └── sdnotify.go │ │ │ │ │ │ ├── journal │ │ │ │ │ │ │ └── send.go │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── util.go │ │ │ │ │ └── pkg │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── NOTICE │ │ │ │ │ │ └── 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 │ │ │ │ ├── cpuguy83 │ │ │ │ │ └── go-md2man │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ └── md2man │ │ │ │ │ │ ├── md2man.go │ │ │ │ │ │ └── roff.go │ │ │ │ ├── dustin │ │ │ │ │ └── go-humanize │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.markdown │ │ │ │ │ │ ├── big.go │ │ │ │ │ │ ├── bigbytes.go │ │ │ │ │ │ ├── bytes.go │ │ │ │ │ │ ├── comma.go │ │ │ │ │ │ ├── ftoa.go │ │ │ │ │ │ ├── humanize.go │ │ │ │ │ │ ├── number.go │ │ │ │ │ │ ├── ordinals.go │ │ │ │ │ │ ├── si.go │ │ │ │ │ │ └── times.go │ │ │ │ ├── gengo │ │ │ │ │ └── grpc-gateway │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── runtime │ │ │ │ │ │ ├── context.go │ │ │ │ │ │ ├── convert.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── handler.go │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── stream_chunk.pb.go │ │ │ │ │ │ │ └── stream_chunk.proto │ │ │ │ │ │ ├── marshal_json.go │ │ │ │ │ │ ├── marshal_jsonpb.go │ │ │ │ │ │ ├── marshaler.go │ │ │ │ │ │ ├── marshaler_registry.go │ │ │ │ │ │ ├── mux.go │ │ │ │ │ │ ├── pattern.go │ │ │ │ │ │ ├── proto2_convert.go │ │ │ │ │ │ └── query.go │ │ │ │ │ │ └── utilities │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── pattern.go │ │ │ │ │ │ └── trie.go │ │ │ │ ├── ghodss │ │ │ │ │ └── yaml │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── fields.go │ │ │ │ │ │ └── yaml.go │ │ │ │ ├── gogo │ │ │ │ │ └── protobuf │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ └── proto │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── clone.go │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ ├── decode_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_unsafe.go │ │ │ │ │ │ ├── pointer_unsafe_gogo.go │ │ │ │ │ │ ├── properties.go │ │ │ │ │ │ ├── properties_gogo.go │ │ │ │ │ │ ├── skip_gogo.go │ │ │ │ │ │ ├── text.go │ │ │ │ │ │ ├── text_gogo.go │ │ │ │ │ │ └── text_parser.go │ │ │ │ ├── golang │ │ │ │ │ ├── glog │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── glog.go │ │ │ │ │ │ └── glog_file.go │ │ │ │ │ ├── groupcache │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ └── lru │ │ │ │ │ │ │ └── lru.go │ │ │ │ │ └── protobuf │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── jsonpb │ │ │ │ │ │ └── jsonpb.go │ │ │ │ │ │ └── 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 │ │ │ │ ├── google │ │ │ │ │ └── btree │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── btree.go │ │ │ │ │ │ └── btree_mem.go │ │ │ │ ├── inconshreveable │ │ │ │ │ └── mousetrap │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── trap_others.go │ │ │ │ │ │ ├── trap_windows.go │ │ │ │ │ │ └── trap_windows_1.4.go │ │ │ │ ├── jonboulle │ │ │ │ │ └── clockwork │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── clockwork.go │ │ │ │ ├── kballard │ │ │ │ │ └── go-shellquote │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── quote.go │ │ │ │ │ │ └── unquote.go │ │ │ │ ├── kr │ │ │ │ │ └── pty │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── License │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── ioctl.go │ │ │ │ │ │ ├── ioctl_bsd.go │ │ │ │ │ │ ├── mktypes.bash │ │ │ │ │ │ ├── pty_darwin.go │ │ │ │ │ │ ├── pty_freebsd.go │ │ │ │ │ │ ├── pty_linux.go │ │ │ │ │ │ ├── pty_unsupported.go │ │ │ │ │ │ ├── run.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── types_freebsd.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-runewidth │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── README.mkd │ │ │ │ │ │ ├── runewidth.go │ │ │ │ │ │ ├── runewidth_js.go │ │ │ │ │ │ ├── runewidth_posix.go │ │ │ │ │ │ └── runewidth_windows.go │ │ │ │ ├── matttproud │ │ │ │ │ └── golang_protobuf_extensions │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ └── pbutil │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── encode.go │ │ │ │ ├── olekukonko │ │ │ │ │ └── tablewriter │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENCE.md │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── csv.go │ │ │ │ │ │ ├── table.go │ │ │ │ │ │ ├── test.csv │ │ │ │ │ │ ├── test_info.csv │ │ │ │ │ │ ├── util.go │ │ │ │ │ │ └── wrap.go │ │ │ │ ├── prometheus │ │ │ │ │ ├── client_golang │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── NOTICE │ │ │ │ │ │ └── prometheus │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── collector.go │ │ │ │ │ │ │ ├── counter.go │ │ │ │ │ │ │ ├── desc.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── expvar.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 │ │ │ │ │ │ └── go │ │ │ │ │ │ │ └── metrics.pb.go │ │ │ │ │ ├── common │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── NOTICE │ │ │ │ │ │ ├── expfmt │ │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ │ ├── expfmt.go │ │ │ │ │ │ │ ├── fuzz.go │ │ │ │ │ │ │ ├── json_decode.go │ │ │ │ │ │ │ ├── text_create.go │ │ │ │ │ │ │ └── text_parse.go │ │ │ │ │ │ └── model │ │ │ │ │ │ │ ├── alert.go │ │ │ │ │ │ │ ├── fingerprinting.go │ │ │ │ │ │ │ ├── labels.go │ │ │ │ │ │ │ ├── labelset.go │ │ │ │ │ │ │ ├── metric.go │ │ │ │ │ │ │ ├── model.go │ │ │ │ │ │ │ ├── signature.go │ │ │ │ │ │ │ ├── silence.go │ │ │ │ │ │ │ ├── time.go │ │ │ │ │ │ │ └── value.go │ │ │ │ │ └── procfs │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── AUTHORS.md │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── NOTICE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fs.go │ │ │ │ │ │ ├── ipvs.go │ │ │ │ │ │ ├── mdstat.go │ │ │ │ │ │ ├── proc.go │ │ │ │ │ │ ├── proc_io.go │ │ │ │ │ │ ├── proc_limits.go │ │ │ │ │ │ ├── proc_stat.go │ │ │ │ │ │ └── stat.go │ │ │ │ ├── russross │ │ │ │ │ └── blackfriday │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── block.go │ │ │ │ │ │ ├── html.go │ │ │ │ │ │ ├── inline.go │ │ │ │ │ │ ├── latex.go │ │ │ │ │ │ ├── markdown.go │ │ │ │ │ │ └── smartypants.go │ │ │ │ ├── shurcooL │ │ │ │ │ └── sanitized_anchor_name │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── main.go │ │ │ │ ├── spacejam │ │ │ │ │ └── loghisto │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── graphite.go │ │ │ │ │ │ ├── metrics.go │ │ │ │ │ │ ├── opentsdb.go │ │ │ │ │ │ ├── print_benchmark.go │ │ │ │ │ │ ├── readme.md │ │ │ │ │ │ └── submitter.go │ │ │ │ ├── spf13 │ │ │ │ │ ├── cobra │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .mailmap │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── bash_completions.go │ │ │ │ │ │ ├── bash_completions.md │ │ │ │ │ │ ├── cobra.go │ │ │ │ │ │ ├── command.go │ │ │ │ │ │ ├── doc_util.go │ │ │ │ │ │ ├── man_docs.go │ │ │ │ │ │ ├── man_docs.md │ │ │ │ │ │ ├── md_docs.go │ │ │ │ │ │ └── md_docs.md │ │ │ │ │ └── pflag │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── bool.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 │ │ │ │ │ │ ├── ipmask.go │ │ │ │ │ │ ├── ipnet.go │ │ │ │ │ │ ├── string.go │ │ │ │ │ │ ├── string_slice.go │ │ │ │ │ │ ├── uint.go │ │ │ │ │ │ ├── uint16.go │ │ │ │ │ │ ├── uint32.go │ │ │ │ │ │ ├── uint64.go │ │ │ │ │ │ └── uint8.go │ │ │ │ ├── stretchr │ │ │ │ │ └── testify │ │ │ │ │ │ ├── LICENCE.txt │ │ │ │ │ │ └── assert │ │ │ │ │ │ ├── assertions.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── errors.go │ │ │ │ ├── ugorji │ │ │ │ │ └── go │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ └── codec │ │ │ │ │ │ ├── 0doc.go │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── binc.go │ │ │ │ │ │ ├── cbor.go │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ ├── fast-path.generated.go │ │ │ │ │ │ ├── fast-path.go.tmpl │ │ │ │ │ │ ├── fast-path.not.go │ │ │ │ │ │ ├── gen-dec-array.go.tmpl │ │ │ │ │ │ ├── gen-dec-map.go.tmpl │ │ │ │ │ │ ├── gen-helper.generated.go │ │ │ │ │ │ ├── gen-helper.go.tmpl │ │ │ │ │ │ ├── gen.generated.go │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ ├── helper.go │ │ │ │ │ │ ├── helper_internal.go │ │ │ │ │ │ ├── helper_not_unsafe.go │ │ │ │ │ │ ├── helper_unsafe.go │ │ │ │ │ │ ├── json.go │ │ │ │ │ │ ├── msgpack.go │ │ │ │ │ │ ├── noop.go │ │ │ │ │ │ ├── prebuild.go │ │ │ │ │ │ ├── prebuild.sh │ │ │ │ │ │ ├── rpc.go │ │ │ │ │ │ ├── simple.go │ │ │ │ │ │ ├── test-cbor-goldens.json │ │ │ │ │ │ ├── test.py │ │ │ │ │ │ ├── tests.sh │ │ │ │ │ │ └── time.go │ │ │ │ ├── urfave │ │ │ │ │ └── cli │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── app.go │ │ │ │ │ │ ├── appveyor.yml │ │ │ │ │ │ ├── category.go │ │ │ │ │ │ ├── cli.go │ │ │ │ │ │ ├── command.go │ │ │ │ │ │ ├── context.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── flag.go │ │ │ │ │ │ ├── funcs.go │ │ │ │ │ │ ├── help.go │ │ │ │ │ │ └── runtests │ │ │ │ └── xiang90 │ │ │ │ │ └── probing │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── prober.go │ │ │ │ │ ├── server.go │ │ │ │ │ └── status.go │ │ │ │ ├── golang.org │ │ │ │ └── x │ │ │ │ │ ├── crypto │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── PATENTS │ │ │ │ │ ├── bcrypt │ │ │ │ │ │ ├── base64.go │ │ │ │ │ │ └── bcrypt.go │ │ │ │ │ └── blowfish │ │ │ │ │ │ ├── block.go │ │ │ │ │ │ ├── cipher.go │ │ │ │ │ │ └── const.go │ │ │ │ │ ├── net │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── PATENTS │ │ │ │ │ ├── context │ │ │ │ │ │ └── context.go │ │ │ │ │ ├── http2 │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── client_conn_pool.go │ │ │ │ │ │ ├── configure_transport.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── fixed_buffer.go │ │ │ │ │ │ ├── flow.go │ │ │ │ │ │ ├── frame.go │ │ │ │ │ │ ├── go15.go │ │ │ │ │ │ ├── gotrack.go │ │ │ │ │ │ ├── headermap.go │ │ │ │ │ │ ├── hpack │ │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ │ ├── hpack.go │ │ │ │ │ │ │ ├── huffman.go │ │ │ │ │ │ │ └── tables.go │ │ │ │ │ │ ├── http2.go │ │ │ │ │ │ ├── not_go15.go │ │ │ │ │ │ ├── not_go16.go │ │ │ │ │ │ ├── pipe.go │ │ │ │ │ │ ├── server.go │ │ │ │ │ │ ├── transport.go │ │ │ │ │ │ ├── write.go │ │ │ │ │ │ └── writesched.go │ │ │ │ │ ├── internal │ │ │ │ │ │ └── timeseries │ │ │ │ │ │ │ └── timeseries.go │ │ │ │ │ └── trace │ │ │ │ │ │ ├── events.go │ │ │ │ │ │ ├── histogram.go │ │ │ │ │ │ └── trace.go │ │ │ │ │ ├── sys │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── PATENTS │ │ │ │ │ └── unix │ │ │ │ │ │ ├── asm.s │ │ │ │ │ │ ├── asm_darwin_386.s │ │ │ │ │ │ ├── asm_darwin_amd64.s │ │ │ │ │ │ ├── asm_darwin_arm.s │ │ │ │ │ │ ├── asm_darwin_arm64.s │ │ │ │ │ │ ├── asm_dragonfly_386.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_ppc64x.s │ │ │ │ │ │ ├── asm_netbsd_386.s │ │ │ │ │ │ ├── asm_netbsd_amd64.s │ │ │ │ │ │ ├── asm_netbsd_arm.s │ │ │ │ │ │ ├── asm_openbsd_386.s │ │ │ │ │ │ ├── asm_openbsd_amd64.s │ │ │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ ├── env_unix.go │ │ │ │ │ │ ├── env_unset.go │ │ │ │ │ │ ├── flock.go │ │ │ │ │ │ ├── flock_linux_32bit.go │ │ │ │ │ │ ├── gccgo.go │ │ │ │ │ │ ├── gccgo_c.c │ │ │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ │ │ ├── mkall.sh │ │ │ │ │ │ ├── mkerrors.sh │ │ │ │ │ │ ├── mksyscall.pl │ │ │ │ │ │ ├── mksyscall_solaris.pl │ │ │ │ │ │ ├── mksysctl_openbsd.pl │ │ │ │ │ │ ├── mksysnum_darwin.pl │ │ │ │ │ │ ├── mksysnum_dragonfly.pl │ │ │ │ │ │ ├── mksysnum_freebsd.pl │ │ │ │ │ │ ├── mksysnum_linux.pl │ │ │ │ │ │ ├── mksysnum_netbsd.pl │ │ │ │ │ │ ├── mksysnum_openbsd.pl │ │ │ │ │ │ ├── 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_386.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_arm.go │ │ │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ │ │ ├── syscall_linux_ppc64x.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_solaris.go │ │ │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ │ ├── types_darwin.go │ │ │ │ │ │ ├── types_dragonfly.go │ │ │ │ │ │ ├── types_freebsd.go │ │ │ │ │ │ ├── types_linux.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_386.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_ppc64.go │ │ │ │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ │ │ │ ├── zerrors_netbsd_386.go │ │ │ │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ │ │ │ ├── zerrors_netbsd_arm.go │ │ │ │ │ │ ├── zerrors_openbsd_386.go │ │ │ │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ │ │ │ ├── zerrors_solaris_amd64.go │ │ │ │ │ │ ├── zsyscall_darwin_386.go │ │ │ │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ │ │ │ ├── zsyscall_darwin_arm.go │ │ │ │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ │ │ │ ├── zsyscall_dragonfly_386.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_ppc64.go │ │ │ │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ │ │ │ ├── zsyscall_netbsd_386.go │ │ │ │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ │ │ │ ├── zsyscall_openbsd_386.go │ │ │ │ │ │ ├── zsyscall_openbsd_amd64.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_386.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_ppc64.go │ │ │ │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ │ │ │ ├── zsysnum_netbsd_386.go │ │ │ │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ │ │ │ ├── zsysnum_openbsd_386.go │ │ │ │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ │ │ │ ├── zsysnum_solaris_amd64.go │ │ │ │ │ │ ├── ztypes_darwin_386.go │ │ │ │ │ │ ├── ztypes_darwin_amd64.go │ │ │ │ │ │ ├── ztypes_darwin_arm.go │ │ │ │ │ │ ├── ztypes_darwin_arm64.go │ │ │ │ │ │ ├── ztypes_dragonfly_386.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_ppc64.go │ │ │ │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ │ │ │ ├── ztypes_netbsd_386.go │ │ │ │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ │ │ │ ├── ztypes_netbsd_arm.go │ │ │ │ │ │ ├── ztypes_openbsd_386.go │ │ │ │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ │ │ │ └── ztypes_solaris_amd64.go │ │ │ │ │ └── time │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── PATENTS │ │ │ │ │ └── rate │ │ │ │ │ └── rate.go │ │ │ │ ├── google.golang.org │ │ │ │ └── grpc │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── PATENTS │ │ │ │ │ ├── README.md │ │ │ │ │ ├── backoff.go │ │ │ │ │ ├── balancer.go │ │ │ │ │ ├── call.go │ │ │ │ │ ├── clientconn.go │ │ │ │ │ ├── codegen.sh │ │ │ │ │ ├── codes │ │ │ │ │ ├── code_string.go │ │ │ │ │ └── codes.go │ │ │ │ │ ├── coverage.sh │ │ │ │ │ ├── credentials │ │ │ │ │ └── credentials.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── grpclog │ │ │ │ │ └── logger.go │ │ │ │ │ ├── interceptor.go │ │ │ │ │ ├── internal │ │ │ │ │ └── internal.go │ │ │ │ │ ├── metadata │ │ │ │ │ └── metadata.go │ │ │ │ │ ├── naming │ │ │ │ │ └── naming.go │ │ │ │ │ ├── peer │ │ │ │ │ └── peer.go │ │ │ │ │ ├── rpc_util.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── stream.go │ │ │ │ │ ├── trace.go │ │ │ │ │ └── transport │ │ │ │ │ ├── control.go │ │ │ │ │ ├── handler_server.go │ │ │ │ │ ├── http2_client.go │ │ │ │ │ ├── http2_server.go │ │ │ │ │ ├── http_util.go │ │ │ │ │ └── transport.go │ │ │ │ └── gopkg.in │ │ │ │ ├── cheggaaa │ │ │ │ └── pb.v1 │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── format.go │ │ │ │ │ ├── pb.go │ │ │ │ │ ├── pb_appengine.go │ │ │ │ │ ├── pb_nix.go │ │ │ │ │ ├── pb_solaris.go │ │ │ │ │ ├── pb_win.go │ │ │ │ │ ├── pb_x.go │ │ │ │ │ ├── pool.go │ │ │ │ │ ├── reader.go │ │ │ │ │ ├── runecount.go │ │ │ │ │ ├── termios_bsd.go │ │ │ │ │ └── termios_nix.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 │ │ │ ├── compactor │ │ │ ├── compactor.go │ │ │ ├── compactor_test.go │ │ │ └── doc.go │ │ │ ├── contrib │ │ │ ├── README.md │ │ │ ├── raftexample │ │ │ │ ├── Procfile │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── httpapi.go │ │ │ │ ├── kvstore.go │ │ │ │ ├── listener.go │ │ │ │ ├── main.go │ │ │ │ ├── raft.go │ │ │ │ └── raftexample_test.go │ │ │ ├── recipes │ │ │ │ ├── barrier.go │ │ │ │ ├── client.go │ │ │ │ ├── double_barrier.go │ │ │ │ ├── key.go │ │ │ │ ├── priority_queue.go │ │ │ │ ├── queue.go │ │ │ │ ├── rwmutex.go │ │ │ │ └── watch.go │ │ │ └── systemd │ │ │ │ ├── etcd.service │ │ │ │ └── etcd2-backup-coreos │ │ │ │ ├── .gitignore │ │ │ │ ├── 30-etcd2-backup-restore.conf │ │ │ │ ├── README.md │ │ │ │ ├── build │ │ │ │ ├── etcd2-backup-install │ │ │ │ ├── etcd2-backup.service │ │ │ │ ├── etcd2-backup.timer │ │ │ │ ├── etcd2-join │ │ │ │ ├── etcd2-join.service │ │ │ │ ├── etcd2-restore.go │ │ │ │ └── etcd2-restore.service │ │ │ ├── cover │ │ │ ├── discovery │ │ │ ├── discovery.go │ │ │ ├── discovery_test.go │ │ │ ├── srv.go │ │ │ └── srv_test.go │ │ │ ├── e2e │ │ │ ├── ctl_v2_test.go │ │ │ ├── ctl_v3_alarm_test.go │ │ │ ├── ctl_v3_auth_test.go │ │ │ ├── ctl_v3_compact_test.go │ │ │ ├── ctl_v3_defrag_test.go │ │ │ ├── ctl_v3_elect_test.go │ │ │ ├── ctl_v3_endpoint_test.go │ │ │ ├── ctl_v3_kv_test.go │ │ │ ├── ctl_v3_lease_test.go │ │ │ ├── ctl_v3_lock_test.go │ │ │ ├── ctl_v3_make_mirror_test.go │ │ │ ├── ctl_v3_member_test.go │ │ │ ├── ctl_v3_migrate_test.go │ │ │ ├── ctl_v3_role_test.go │ │ │ ├── ctl_v3_snapshot_test.go │ │ │ ├── ctl_v3_test.go │ │ │ ├── ctl_v3_txn_test.go │ │ │ ├── ctl_v3_user_test.go │ │ │ ├── ctl_v3_watch_test.go │ │ │ ├── doc.go │ │ │ ├── etcd_test.go │ │ │ ├── main_test.go │ │ │ ├── v2_curl_test.go │ │ │ └── v3_curl_test.go │ │ │ ├── error │ │ │ ├── error.go │ │ │ └── error_test.go │ │ │ ├── etcd.conf.yml.sample │ │ │ ├── etcdctl │ │ │ ├── README.md │ │ │ ├── READMEv2.md │ │ │ ├── ctlv2 │ │ │ │ ├── command │ │ │ │ │ ├── auth_commands.go │ │ │ │ │ ├── backup_command.go │ │ │ │ │ ├── cluster_health.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── exec_watch_command.go │ │ │ │ │ ├── format.go │ │ │ │ │ ├── get_command.go │ │ │ │ │ ├── import_snap_command.go │ │ │ │ │ ├── ls_command.go │ │ │ │ │ ├── member_commands.go │ │ │ │ │ ├── mk_command.go │ │ │ │ │ ├── mkdir_command.go │ │ │ │ │ ├── rm_command.go │ │ │ │ │ ├── rmdir_command.go │ │ │ │ │ ├── role_commands.go │ │ │ │ │ ├── set_command.go │ │ │ │ │ ├── set_dir_command.go │ │ │ │ │ ├── update_command.go │ │ │ │ │ ├── update_dir_command.go │ │ │ │ │ ├── user_commands.go │ │ │ │ │ ├── util.go │ │ │ │ │ ├── util_test.go │ │ │ │ │ └── watch_command.go │ │ │ │ └── ctl.go │ │ │ ├── ctlv3 │ │ │ │ ├── command │ │ │ │ │ ├── alarm_command.go │ │ │ │ │ ├── auth_command.go │ │ │ │ │ ├── compaction_command.go │ │ │ │ │ ├── defrag_command.go │ │ │ │ │ ├── del_command.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── elect_command.go │ │ │ │ │ ├── ep_command.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── get_command.go │ │ │ │ │ ├── global.go │ │ │ │ │ ├── lease_command.go │ │ │ │ │ ├── lock_command.go │ │ │ │ │ ├── make_mirror_command.go │ │ │ │ │ ├── member_command.go │ │ │ │ │ ├── migrate_command.go │ │ │ │ │ ├── printer.go │ │ │ │ │ ├── put_command.go │ │ │ │ │ ├── role_command.go │ │ │ │ │ ├── snapshot_command.go │ │ │ │ │ ├── txn_command.go │ │ │ │ │ ├── user_command.go │ │ │ │ │ ├── util.go │ │ │ │ │ ├── version_command.go │ │ │ │ │ └── watch_command.go │ │ │ │ ├── ctl.go │ │ │ │ └── help.go │ │ │ ├── doc │ │ │ │ └── mirror_maker.md │ │ │ └── main.go │ │ │ ├── etcdmain │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── const_unix.go │ │ │ ├── const_windows.go │ │ │ ├── doc.go │ │ │ ├── etcd.go │ │ │ ├── gateway.go │ │ │ ├── grpc_proxy.go │ │ │ ├── help.go │ │ │ ├── main.go │ │ │ └── serve.go │ │ │ ├── etcdserver │ │ │ ├── api │ │ │ │ ├── capability.go │ │ │ │ ├── cluster.go │ │ │ │ ├── doc.go │ │ │ │ ├── v2http │ │ │ │ │ ├── capability.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── client_auth.go │ │ │ │ │ ├── client_auth_test.go │ │ │ │ │ ├── client_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── http.go │ │ │ │ │ ├── http_test.go │ │ │ │ │ ├── httptypes │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── errors_test.go │ │ │ │ │ │ ├── member.go │ │ │ │ │ │ └── member_test.go │ │ │ │ │ ├── metrics.go │ │ │ │ │ ├── peer.go │ │ │ │ │ └── peer_test.go │ │ │ │ └── v3rpc │ │ │ │ │ ├── auth.go │ │ │ │ │ ├── codec.go │ │ │ │ │ ├── grpc.go │ │ │ │ │ ├── header.go │ │ │ │ │ ├── interceptor.go │ │ │ │ │ ├── key.go │ │ │ │ │ ├── lease.go │ │ │ │ │ ├── maintenance.go │ │ │ │ │ ├── member.go │ │ │ │ │ ├── metrics.go │ │ │ │ │ ├── quota.go │ │ │ │ │ ├── rpctypes │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── error_test.go │ │ │ │ │ └── md.go │ │ │ │ │ ├── util.go │ │ │ │ │ └── watch.go │ │ │ ├── apply.go │ │ │ ├── apply_auth.go │ │ │ ├── apply_v2.go │ │ │ ├── auth │ │ │ │ ├── auth.go │ │ │ │ ├── auth_requests.go │ │ │ │ └── auth_test.go │ │ │ ├── cluster_util.go │ │ │ ├── cluster_util_test.go │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── consistent_index.go │ │ │ ├── consistent_index_test.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── etcdserverpb │ │ │ │ ├── etcdserver.pb.go │ │ │ │ ├── etcdserver.proto │ │ │ │ ├── raft_internal.pb.go │ │ │ │ ├── raft_internal.proto │ │ │ │ ├── rpc.pb.go │ │ │ │ ├── rpc.pb.gw.go │ │ │ │ └── rpc.proto │ │ │ ├── membership │ │ │ │ ├── cluster.go │ │ │ │ ├── cluster_test.go │ │ │ │ ├── errors.go │ │ │ │ ├── member.go │ │ │ │ ├── member_test.go │ │ │ │ └── store.go │ │ │ ├── metrics.go │ │ │ ├── quota.go │ │ │ ├── raft.go │ │ │ ├── raft_test.go │ │ │ ├── server.go │ │ │ ├── server_test.go │ │ │ ├── snapshot_merge.go │ │ │ ├── stats │ │ │ │ ├── leader.go │ │ │ │ ├── queue.go │ │ │ │ ├── server.go │ │ │ │ └── stats.go │ │ │ ├── storage.go │ │ │ ├── util.go │ │ │ ├── v2_server.go │ │ │ └── v3_server.go │ │ │ ├── hack │ │ │ ├── README.md │ │ │ ├── benchmark │ │ │ │ ├── README.md │ │ │ │ └── bench.sh │ │ │ ├── insta-discovery │ │ │ │ ├── Procfile │ │ │ │ ├── README.md │ │ │ │ └── discovery │ │ │ ├── kubernetes-deploy │ │ │ │ ├── README.md │ │ │ │ ├── etcd.yml │ │ │ │ └── vulcand.yml │ │ │ └── tls-setup │ │ │ │ ├── Makefile │ │ │ │ ├── Procfile │ │ │ │ ├── README.md │ │ │ │ └── config │ │ │ │ ├── ca-config.json │ │ │ │ ├── ca-csr.json │ │ │ │ └── req-csr.json │ │ │ ├── integration │ │ │ ├── bridge.go │ │ │ ├── cluster.go │ │ │ ├── cluster_test.go │ │ │ ├── doc.go │ │ │ ├── fixtures │ │ │ │ ├── ca.crt │ │ │ │ ├── server.crt │ │ │ │ └── server.key.insecure │ │ │ ├── main_test.go │ │ │ ├── member_test.go │ │ │ ├── migration_test.go │ │ │ ├── testdata │ │ │ │ └── integration046_data │ │ │ │ │ ├── conf │ │ │ │ │ ├── log │ │ │ │ │ └── snapshot │ │ │ │ │ └── 1_90.ss │ │ │ ├── v2_http_kv_test.go │ │ │ ├── v3_barrier_test.go │ │ │ ├── v3_double_barrier_test.go │ │ │ ├── v3_election_test.go │ │ │ ├── v3_grpc_test.go │ │ │ ├── v3_lease_test.go │ │ │ ├── v3_lock_test.go │ │ │ ├── v3_queue_test.go │ │ │ ├── v3_stm_test.go │ │ │ └── v3_watch_test.go │ │ │ ├── lease │ │ │ ├── doc.go │ │ │ ├── leasehttp │ │ │ │ ├── doc.go │ │ │ │ └── http.go │ │ │ ├── leasepb │ │ │ │ ├── lease.pb.go │ │ │ │ └── lease.proto │ │ │ ├── lessor.go │ │ │ └── lessor_test.go │ │ │ ├── logos │ │ │ ├── etcd-glyph-color.png │ │ │ ├── etcd-glyph-color.svg │ │ │ ├── etcd-horizontal-bw.png │ │ │ ├── etcd-horizontal-bw.svg │ │ │ ├── etcd-horizontal-color.png │ │ │ ├── etcd-horizontal-color.svg │ │ │ ├── etcd-offset-bw.png │ │ │ ├── etcd-offset-bw.svg │ │ │ ├── etcd-offset-color.png │ │ │ ├── etcd-offset-color.svg │ │ │ ├── etcd-stacked-bw.png │ │ │ ├── etcd-stacked-bw.svg │ │ │ ├── etcd-stacked-color.png │ │ │ └── etcd-stacked-color.svg │ │ │ ├── main.go │ │ │ ├── mvcc │ │ │ ├── backend │ │ │ │ ├── backend.go │ │ │ │ ├── backend_bench_test.go │ │ │ │ ├── backend_test.go │ │ │ │ ├── batch_tx.go │ │ │ │ ├── batch_tx_test.go │ │ │ │ ├── boltoption_default.go │ │ │ │ ├── boltoption_linux.go │ │ │ │ ├── doc.go │ │ │ │ └── metrics.go │ │ │ ├── doc.go │ │ │ ├── index.go │ │ │ ├── index_bench_test.go │ │ │ ├── index_test.go │ │ │ ├── key_index.go │ │ │ ├── key_index_test.go │ │ │ ├── kv.go │ │ │ ├── kv_test.go │ │ │ ├── kvstore.go │ │ │ ├── kvstore_bench_test.go │ │ │ ├── kvstore_compaction.go │ │ │ ├── kvstore_compaction_test.go │ │ │ ├── kvstore_test.go │ │ │ ├── metrics.go │ │ │ ├── mvccpb │ │ │ │ ├── kv.pb.go │ │ │ │ └── kv.proto │ │ │ ├── revision.go │ │ │ ├── revision_test.go │ │ │ ├── util.go │ │ │ ├── watchable_store.go │ │ │ ├── watchable_store_bench_test.go │ │ │ ├── watchable_store_test.go │ │ │ ├── watcher.go │ │ │ ├── watcher_bench_test.go │ │ │ ├── watcher_group.go │ │ │ └── watcher_test.go │ │ │ ├── pkg │ │ │ ├── README.md │ │ │ ├── adt │ │ │ │ ├── doc.go │ │ │ │ ├── example_test.go │ │ │ │ ├── interval_tree.go │ │ │ │ └── interval_tree_test.go │ │ │ ├── contention │ │ │ │ ├── contention.go │ │ │ │ └── doc.go │ │ │ ├── cors │ │ │ │ ├── cors.go │ │ │ │ └── cors_test.go │ │ │ ├── crc │ │ │ │ ├── crc.go │ │ │ │ └── crc_test.go │ │ │ ├── expect │ │ │ │ ├── expect.go │ │ │ │ └── expect_test.go │ │ │ ├── fileutil │ │ │ │ ├── fileutil.go │ │ │ │ ├── fileutil_test.go │ │ │ │ ├── lock.go │ │ │ │ ├── lock_flock.go │ │ │ │ ├── lock_linux.go │ │ │ │ ├── lock_plan9.go │ │ │ │ ├── lock_solaris.go │ │ │ │ ├── lock_test.go │ │ │ │ ├── lock_unix.go │ │ │ │ ├── lock_windows.go │ │ │ │ ├── preallocate.go │ │ │ │ ├── preallocate_darwin.go │ │ │ │ ├── preallocate_test.go │ │ │ │ ├── preallocate_unix.go │ │ │ │ ├── preallocate_unsupported.go │ │ │ │ ├── purge.go │ │ │ │ ├── purge_test.go │ │ │ │ ├── sync.go │ │ │ │ ├── sync_darwin.go │ │ │ │ └── sync_linux.go │ │ │ ├── flags │ │ │ │ ├── flag.go │ │ │ │ ├── flag_test.go │ │ │ │ ├── strings.go │ │ │ │ ├── strings_test.go │ │ │ │ ├── urls.go │ │ │ │ └── urls_test.go │ │ │ ├── httputil │ │ │ │ └── httputil.go │ │ │ ├── idutil │ │ │ │ ├── id.go │ │ │ │ └── id_test.go │ │ │ ├── ioutil │ │ │ │ ├── readcloser.go │ │ │ │ ├── readcloser_test.go │ │ │ │ ├── reader.go │ │ │ │ ├── reader_test.go │ │ │ │ └── util.go │ │ │ ├── logutil │ │ │ │ ├── merge_logger.go │ │ │ │ └── merge_logger_test.go │ │ │ ├── mock │ │ │ │ ├── mockstorage │ │ │ │ │ ├── doc.go │ │ │ │ │ └── storage_recorder.go │ │ │ │ ├── mockstore │ │ │ │ │ ├── doc.go │ │ │ │ │ └── store_recorder.go │ │ │ │ └── mockwait │ │ │ │ │ ├── doc.go │ │ │ │ │ └── wait_recorder.go │ │ │ ├── netutil │ │ │ │ ├── isolate_linux.go │ │ │ │ ├── isolate_stub.go │ │ │ │ ├── netutil.go │ │ │ │ └── netutil_test.go │ │ │ ├── osutil │ │ │ │ ├── interrupt_unix.go │ │ │ │ ├── interrupt_windows.go │ │ │ │ ├── osutil.go │ │ │ │ └── osutil_test.go │ │ │ ├── pathutil │ │ │ │ ├── path.go │ │ │ │ └── path_test.go │ │ │ ├── pbutil │ │ │ │ ├── pbutil.go │ │ │ │ └── pbutil_test.go │ │ │ ├── runtime │ │ │ │ ├── fds_linux.go │ │ │ │ └── fds_other.go │ │ │ ├── schedule │ │ │ │ ├── doc.go │ │ │ │ ├── schedule.go │ │ │ │ └── schedule_test.go │ │ │ ├── testutil │ │ │ │ ├── leak.go │ │ │ │ ├── leak_test.go │ │ │ │ ├── pauseable_handler.go │ │ │ │ ├── recorder.go │ │ │ │ └── testutil.go │ │ │ ├── tlsutil │ │ │ │ ├── doc.go │ │ │ │ └── tlsutil.go │ │ │ ├── transport │ │ │ │ ├── doc.go │ │ │ │ ├── keepalive_listener.go │ │ │ │ ├── keepalive_listener_test.go │ │ │ │ ├── limit_listen.go │ │ │ │ ├── listener.go │ │ │ │ ├── listener_test.go │ │ │ │ ├── timeout_conn.go │ │ │ │ ├── timeout_dialer.go │ │ │ │ ├── timeout_dialer_test.go │ │ │ │ ├── timeout_listener.go │ │ │ │ ├── timeout_listener_test.go │ │ │ │ ├── timeout_transport.go │ │ │ │ ├── timeout_transport_test.go │ │ │ │ ├── transport.go │ │ │ │ └── unix_listener.go │ │ │ ├── types │ │ │ │ ├── doc.go │ │ │ │ ├── id.go │ │ │ │ ├── id_test.go │ │ │ │ ├── set.go │ │ │ │ ├── set_test.go │ │ │ │ ├── slice.go │ │ │ │ ├── slice_test.go │ │ │ │ ├── urls.go │ │ │ │ ├── urls_test.go │ │ │ │ ├── urlsmap.go │ │ │ │ └── urlsmap_test.go │ │ │ └── wait │ │ │ │ ├── wait.go │ │ │ │ ├── wait_test.go │ │ │ │ ├── wait_time.go │ │ │ │ └── wait_time_test.go │ │ │ ├── proxy │ │ │ ├── grpcproxy │ │ │ │ ├── cache │ │ │ │ │ └── store.go │ │ │ │ ├── doc.go │ │ │ │ ├── kv.go │ │ │ │ └── kv_test.go │ │ │ ├── httpproxy │ │ │ │ ├── director.go │ │ │ │ ├── director_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── metrics.go │ │ │ │ ├── proxy.go │ │ │ │ ├── proxy_test.go │ │ │ │ ├── reverse.go │ │ │ │ └── reverse_test.go │ │ │ └── tcpproxy │ │ │ │ ├── doc.go │ │ │ │ ├── userspace.go │ │ │ │ └── userspace_test.go │ │ │ ├── raft │ │ │ ├── README.md │ │ │ ├── design.md │ │ │ ├── diff_test.go │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── log.go │ │ │ ├── log_test.go │ │ │ ├── log_unstable.go │ │ │ ├── log_unstable_test.go │ │ │ ├── logger.go │ │ │ ├── node.go │ │ │ ├── node_bench_test.go │ │ │ ├── node_test.go │ │ │ ├── progress.go │ │ │ ├── progress_test.go │ │ │ ├── raft.go │ │ │ ├── raft_flow_control_test.go │ │ │ ├── raft_paper_test.go │ │ │ ├── raft_snap_test.go │ │ │ ├── raft_test.go │ │ │ ├── raftpb │ │ │ │ ├── raft.pb.go │ │ │ │ └── raft.proto │ │ │ ├── rafttest │ │ │ │ ├── doc.go │ │ │ │ ├── network.go │ │ │ │ ├── network_test.go │ │ │ │ ├── node.go │ │ │ │ ├── node_bench_test.go │ │ │ │ └── node_test.go │ │ │ ├── rawnode.go │ │ │ ├── rawnode_test.go │ │ │ ├── status.go │ │ │ ├── storage.go │ │ │ ├── storage_test.go │ │ │ ├── util.go │ │ │ └── util_test.go │ │ │ ├── rafthttp │ │ │ ├── coder.go │ │ │ ├── doc.go │ │ │ ├── fake_roundtripper_test.go │ │ │ ├── functional_test.go │ │ │ ├── http.go │ │ │ ├── http_test.go │ │ │ ├── metrics.go │ │ │ ├── msg_codec.go │ │ │ ├── msg_codec_test.go │ │ │ ├── msgappv2_codec.go │ │ │ ├── msgappv2_codec_test.go │ │ │ ├── peer.go │ │ │ ├── peer_status.go │ │ │ ├── peer_test.go │ │ │ ├── pipeline.go │ │ │ ├── pipeline_test.go │ │ │ ├── probing_status.go │ │ │ ├── remote.go │ │ │ ├── snapshot_sender.go │ │ │ ├── snapshot_test.go │ │ │ ├── stream.go │ │ │ ├── stream_test.go │ │ │ ├── transport.go │ │ │ ├── transport_bench_test.go │ │ │ ├── transport_test.go │ │ │ ├── urlpick.go │ │ │ ├── urlpick_test.go │ │ │ ├── util.go │ │ │ └── util_test.go │ │ │ ├── scripts │ │ │ ├── build-aci │ │ │ ├── build-binary │ │ │ ├── build-docker │ │ │ ├── genproto.sh │ │ │ ├── release.sh │ │ │ └── updatedep.sh │ │ │ ├── snap │ │ │ ├── db.go │ │ │ ├── message.go │ │ │ ├── metrics.go │ │ │ ├── snappb │ │ │ │ ├── snap.pb.go │ │ │ │ └── snap.proto │ │ │ ├── snapshotter.go │ │ │ └── snapshotter_test.go │ │ │ ├── store │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── event_history.go │ │ │ ├── event_queue.go │ │ │ ├── event_test.go │ │ │ ├── heap_test.go │ │ │ ├── metrics.go │ │ │ ├── node.go │ │ │ ├── node_extern.go │ │ │ ├── node_extern_test.go │ │ │ ├── node_test.go │ │ │ ├── stats.go │ │ │ ├── stats_test.go │ │ │ ├── store.go │ │ │ ├── store_bench_test.go │ │ │ ├── store_test.go │ │ │ ├── ttl_key_heap.go │ │ │ ├── watcher.go │ │ │ ├── watcher_hub.go │ │ │ ├── watcher_hub_test.go │ │ │ └── watcher_test.go │ │ │ ├── test │ │ │ ├── tools │ │ │ ├── benchmark │ │ │ │ ├── .gitignore │ │ │ │ ├── cmd │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── mvcc-put.go │ │ │ │ │ ├── mvcc.go │ │ │ │ │ ├── put.go │ │ │ │ │ ├── range.go │ │ │ │ │ ├── report.go │ │ │ │ │ ├── root.go │ │ │ │ │ ├── stm.go │ │ │ │ │ ├── timeseries.go │ │ │ │ │ ├── timeseries_test.go │ │ │ │ │ ├── util.go │ │ │ │ │ ├── watch.go │ │ │ │ │ └── watch_get.go │ │ │ │ ├── doc.go │ │ │ │ └── main.go │ │ │ ├── etcd-dump-logs │ │ │ │ ├── doc.go │ │ │ │ └── main.go │ │ │ ├── etcd-top │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ └── etcd-top.go │ │ │ ├── functional-tester │ │ │ │ ├── README.md │ │ │ │ ├── build │ │ │ │ ├── docker │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── docker-compose.yml │ │ │ │ ├── etcd-agent │ │ │ │ │ ├── agent.go │ │ │ │ │ ├── agent_test.go │ │ │ │ │ ├── client │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ └── doc.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── main.go │ │ │ │ │ ├── rpc.go │ │ │ │ │ └── rpc_test.go │ │ │ │ ├── etcd-runner │ │ │ │ │ ├── doc.go │ │ │ │ │ └── main.go │ │ │ │ ├── etcd-tester │ │ │ │ │ ├── cluster.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── failure.go │ │ │ │ │ ├── http.go │ │ │ │ │ ├── main.go │ │ │ │ │ ├── metrics.go │ │ │ │ │ ├── status.go │ │ │ │ │ ├── stresser.go │ │ │ │ │ ├── tester.go │ │ │ │ │ └── util.go │ │ │ │ └── test │ │ │ └── local-tester │ │ │ │ ├── Procfile │ │ │ │ ├── README.md │ │ │ │ ├── bridge │ │ │ │ ├── bridge.go │ │ │ │ └── dispatch.go │ │ │ │ └── faults.sh │ │ │ ├── version │ │ │ ├── version.go │ │ │ └── version_test.go │ │ │ └── wal │ │ │ ├── decoder.go │ │ │ ├── doc.go │ │ │ ├── encoder.go │ │ │ ├── file_pipeline.go │ │ │ ├── metrics.go │ │ │ ├── record_test.go │ │ │ ├── repair.go │ │ │ ├── repair_test.go │ │ │ ├── util.go │ │ │ ├── wal.go │ │ │ ├── wal_bench_test.go │ │ │ ├── wal_test.go │ │ │ └── walpb │ │ │ ├── record.go │ │ │ ├── record.pb.go │ │ │ └── record.proto │ ├── docker │ │ ├── distribution │ │ │ ├── .gitignore │ │ │ ├── .mailmap │ │ │ ├── AUTHORS │ │ │ ├── BUILDING.md │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Dockerfile │ │ │ ├── Godeps │ │ │ │ ├── Godeps.json │ │ │ │ └── Readme │ │ │ ├── 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 │ │ │ │ │ ├── run_multiversion.sh │ │ │ │ │ ├── tls.bats │ │ │ │ │ ├── token.bats │ │ │ │ │ ├── tokenserver-oauth │ │ │ │ │ │ ├── .htpasswd │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ ├── certs │ │ │ │ │ │ │ ├── auth.localregistry.cert │ │ │ │ │ │ │ ├── auth.localregistry.key │ │ │ │ │ │ │ ├── localregistry.cert │ │ │ │ │ │ │ ├── localregistry.key │ │ │ │ │ │ │ ├── signing.cert │ │ │ │ │ │ │ └── signing.key │ │ │ │ │ │ ├── registry-config-notls.yml │ │ │ │ │ │ └── registry-config.yml │ │ │ │ │ └── tokenserver │ │ │ │ │ │ ├── .htpasswd │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ ├── certs │ │ │ │ │ │ ├── auth.localregistry.cert │ │ │ │ │ │ ├── auth.localregistry.key │ │ │ │ │ │ ├── localregistry.cert │ │ │ │ │ │ ├── localregistry.key │ │ │ │ │ │ ├── signing.cert │ │ │ │ │ │ └── signing.key │ │ │ │ │ │ └── registry-config.yml │ │ │ │ └── token-server │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── main.go │ │ │ │ │ └── token.go │ │ │ ├── coverpkg.sh │ │ │ ├── digest │ │ │ │ ├── digest.go │ │ │ │ ├── digest_test.go │ │ │ │ ├── digester.go │ │ │ │ ├── digester_resumable_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── set.go │ │ │ │ ├── set_test.go │ │ │ │ ├── verifiers.go │ │ │ │ └── verifiers_test.go │ │ │ ├── doc.go │ │ │ ├── docs │ │ │ │ ├── README.md │ │ │ │ ├── configuration.md │ │ │ │ └── spec │ │ │ │ │ ├── api.md │ │ │ │ │ ├── api.md.tmpl │ │ │ │ │ ├── auth │ │ │ │ │ ├── index.md │ │ │ │ │ ├── jwt.md │ │ │ │ │ ├── oauth.md │ │ │ │ │ ├── scope.md │ │ │ │ │ └── token.md │ │ │ │ │ ├── implementations.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── json.md │ │ │ │ │ ├── manifest-v2-1.md │ │ │ │ │ ├── manifest-v2-2.md │ │ │ │ │ └── menu.md │ │ │ ├── errors.go │ │ │ ├── health │ │ │ │ ├── api │ │ │ │ │ ├── api.go │ │ │ │ │ └── api_test.go │ │ │ │ ├── checks │ │ │ │ │ ├── checks.go │ │ │ │ │ └── checks_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── health.go │ │ │ │ └── health_test.go │ │ │ ├── manifest │ │ │ │ ├── doc.go │ │ │ │ ├── manifestlist │ │ │ │ │ ├── manifestlist.go │ │ │ │ │ └── manifestlist_test.go │ │ │ │ ├── schema1 │ │ │ │ │ ├── config_builder.go │ │ │ │ │ ├── config_builder_test.go │ │ │ │ │ ├── manifest.go │ │ │ │ │ ├── manifest_test.go │ │ │ │ │ ├── reference_builder.go │ │ │ │ │ ├── reference_builder_test.go │ │ │ │ │ ├── sign.go │ │ │ │ │ └── verify.go │ │ │ │ ├── schema2 │ │ │ │ │ ├── builder.go │ │ │ │ │ ├── builder_test.go │ │ │ │ │ ├── manifest.go │ │ │ │ │ └── manifest_test.go │ │ │ │ └── versioned.go │ │ │ ├── manifests.go │ │ │ ├── notifications │ │ │ │ ├── bridge.go │ │ │ │ ├── bridge_test.go │ │ │ │ ├── endpoint.go │ │ │ │ ├── event.go │ │ │ │ ├── event_test.go │ │ │ │ ├── http.go │ │ │ │ ├── http_test.go │ │ │ │ ├── listener.go │ │ │ │ ├── listener_test.go │ │ │ │ ├── metrics.go │ │ │ │ ├── sinks.go │ │ │ │ └── sinks_test.go │ │ │ ├── project │ │ │ │ ├── dev-image │ │ │ │ │ └── Dockerfile │ │ │ │ └── hooks │ │ │ │ │ ├── README.md │ │ │ │ │ ├── configure-hooks.sh │ │ │ │ │ └── pre-commit │ │ │ ├── reference │ │ │ │ ├── reference.go │ │ │ │ ├── reference_test.go │ │ │ │ ├── regexp.go │ │ │ │ └── regexp_test.go │ │ │ ├── registry.go │ │ │ ├── registry │ │ │ │ ├── api │ │ │ │ │ ├── errcode │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── errors_test.go │ │ │ │ │ │ ├── handler.go │ │ │ │ │ │ └── register.go │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── descriptors.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── images.go │ │ │ │ │ ├── mail.go │ │ │ │ │ └── tags.go │ │ │ │ ├── listener │ │ │ │ │ └── listener.go │ │ │ │ ├── middleware │ │ │ │ │ ├── registry │ │ │ │ │ │ └── middleware.go │ │ │ │ │ └── repository │ │ │ │ │ │ └── middleware.go │ │ │ │ ├── proxy │ │ │ │ │ ├── proxyauth.go │ │ │ │ │ ├── proxyblobstore.go │ │ │ │ │ ├── proxyblobstore_test.go │ │ │ │ │ ├── proxymanifeststore.go │ │ │ │ │ ├── proxymanifeststore_test.go │ │ │ │ │ ├── proxymetrics.go │ │ │ │ │ ├── proxyregistry.go │ │ │ │ │ ├── proxytagservice.go │ │ │ │ │ ├── proxytagservice_test.go │ │ │ │ │ └── scheduler │ │ │ │ │ │ ├── scheduler.go │ │ │ │ │ │ └── scheduler_test.go │ │ │ │ ├── registry.go │ │ │ │ ├── registry_test.go │ │ │ │ ├── root.go │ │ │ │ └── storage │ │ │ │ │ ├── blob_test.go │ │ │ │ │ ├── blobcachemetrics.go │ │ │ │ │ ├── blobserver.go │ │ │ │ │ ├── blobstore.go │ │ │ │ │ ├── blobwriter.go │ │ │ │ │ ├── blobwriter_nonresumable.go │ │ │ │ │ ├── blobwriter_resumable.go │ │ │ │ │ ├── cache │ │ │ │ │ ├── cache.go │ │ │ │ │ ├── cachecheck │ │ │ │ │ │ └── suite.go │ │ │ │ │ ├── cachedblobdescriptorstore.go │ │ │ │ │ ├── memory │ │ │ │ │ │ ├── memory.go │ │ │ │ │ │ └── memory_test.go │ │ │ │ │ └── redis │ │ │ │ │ │ ├── redis.go │ │ │ │ │ │ └── redis_test.go │ │ │ │ │ ├── catalog.go │ │ │ │ │ ├── catalog_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── driver │ │ │ │ │ ├── azure │ │ │ │ │ │ ├── azure.go │ │ │ │ │ │ └── azure_test.go │ │ │ │ │ ├── base │ │ │ │ │ │ ├── base.go │ │ │ │ │ │ └── regulator.go │ │ │ │ │ ├── factory │ │ │ │ │ │ └── factory.go │ │ │ │ │ ├── fileinfo.go │ │ │ │ │ ├── filesystem │ │ │ │ │ │ ├── driver.go │ │ │ │ │ │ └── driver_test.go │ │ │ │ │ ├── gcs │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── gcs.go │ │ │ │ │ │ └── gcs_test.go │ │ │ │ │ ├── inmemory │ │ │ │ │ │ ├── driver.go │ │ │ │ │ │ ├── driver_test.go │ │ │ │ │ │ └── mfs.go │ │ │ │ │ ├── middleware │ │ │ │ │ │ ├── cloudfront │ │ │ │ │ │ │ └── middleware.go │ │ │ │ │ │ ├── redirect │ │ │ │ │ │ │ ├── middleware.go │ │ │ │ │ │ │ └── middleware_test.go │ │ │ │ │ │ └── storagemiddleware.go │ │ │ │ │ ├── oss │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── oss.go │ │ │ │ │ │ └── oss_test.go │ │ │ │ │ ├── s3-aws │ │ │ │ │ │ ├── s3.go │ │ │ │ │ │ ├── s3_test.go │ │ │ │ │ │ └── s3_v2_signer.go │ │ │ │ │ ├── s3-goamz │ │ │ │ │ │ ├── s3.go │ │ │ │ │ │ └── s3_test.go │ │ │ │ │ ├── storagedriver.go │ │ │ │ │ ├── swift │ │ │ │ │ │ ├── swift.go │ │ │ │ │ │ └── swift_test.go │ │ │ │ │ ├── testdriver │ │ │ │ │ │ └── testdriver.go │ │ │ │ │ └── testsuites │ │ │ │ │ │ └── testsuites.go │ │ │ │ │ ├── filereader.go │ │ │ │ │ ├── filereader_test.go │ │ │ │ │ ├── garbagecollect.go │ │ │ │ │ ├── garbagecollect_test.go │ │ │ │ │ ├── linkedblobstore.go │ │ │ │ │ ├── linkedblobstore_test.go │ │ │ │ │ ├── manifestlisthandler.go │ │ │ │ │ ├── manifeststore.go │ │ │ │ │ ├── manifeststore_test.go │ │ │ │ │ ├── paths.go │ │ │ │ │ ├── paths_test.go │ │ │ │ │ ├── purgeuploads.go │ │ │ │ │ ├── purgeuploads_test.go │ │ │ │ │ ├── registry.go │ │ │ │ │ ├── schema2manifesthandler.go │ │ │ │ │ ├── schema2manifesthandler_test.go │ │ │ │ │ ├── signedmanifesthandler.go │ │ │ │ │ ├── tagstore.go │ │ │ │ │ ├── tagstore_test.go │ │ │ │ │ ├── util.go │ │ │ │ │ ├── vacuum.go │ │ │ │ │ ├── walk.go │ │ │ │ │ └── walk_test.go │ │ │ ├── tags.go │ │ │ ├── testutil │ │ │ │ ├── handler.go │ │ │ │ ├── manifests.go │ │ │ │ └── tarfile.go │ │ │ ├── uuid │ │ │ │ ├── uuid.go │ │ │ │ └── uuid_test.go │ │ │ ├── vendor │ │ │ │ ├── github.com │ │ │ │ │ ├── Azure │ │ │ │ │ │ └── azure-sdk-for-go │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── storage │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── blob.go │ │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ │ ├── file.go │ │ │ │ │ │ │ ├── queue.go │ │ │ │ │ │ │ ├── table.go │ │ │ │ │ │ │ ├── table_entities.go │ │ │ │ │ │ │ └── util.go │ │ │ │ │ ├── Sirupsen │ │ │ │ │ │ └── logrus │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── entry.go │ │ │ │ │ │ │ ├── exported.go │ │ │ │ │ │ │ ├── formatter.go │ │ │ │ │ │ │ ├── formatters │ │ │ │ │ │ │ └── logstash │ │ │ │ │ │ │ │ └── logstash.go │ │ │ │ │ │ │ ├── hooks.go │ │ │ │ │ │ │ ├── json_formatter.go │ │ │ │ │ │ │ ├── logger.go │ │ │ │ │ │ │ ├── logrus.go │ │ │ │ │ │ │ ├── terminal_darwin.go │ │ │ │ │ │ │ ├── terminal_freebsd.go │ │ │ │ │ │ │ ├── terminal_linux.go │ │ │ │ │ │ │ ├── terminal_notwindows.go │ │ │ │ │ │ │ ├── terminal_openbsd.go │ │ │ │ │ │ │ ├── terminal_windows.go │ │ │ │ │ │ │ ├── text_formatter.go │ │ │ │ │ │ │ └── writer.go │ │ │ │ │ ├── aws │ │ │ │ │ │ └── aws-sdk-go │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ ├── NOTICE.txt │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ │ ├── env_provider.go │ │ │ │ │ │ │ │ ├── example.ini │ │ │ │ │ │ │ │ ├── shared_credentials_provider.go │ │ │ │ │ │ │ │ └── static_provider.go │ │ │ │ │ │ │ ├── defaults │ │ │ │ │ │ │ │ └── defaults.go │ │ │ │ │ │ │ ├── ec2metadata │ │ │ │ │ │ │ │ ├── api.go │ │ │ │ │ │ │ │ └── service.go │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ ├── logger.go │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ │ ├── handlers.go │ │ │ │ │ │ │ │ ├── http_request.go │ │ │ │ │ │ │ │ ├── http_request_1_4.go │ │ │ │ │ │ │ │ ├── offset_reader.go │ │ │ │ │ │ │ │ ├── request.go │ │ │ │ │ │ │ │ ├── request_pagination.go │ │ │ │ │ │ │ │ ├── retryer.go │ │ │ │ │ │ │ │ └── validation.go │ │ │ │ │ │ │ ├── session │ │ │ │ │ │ │ │ └── session.go │ │ │ │ │ │ │ ├── signer │ │ │ │ │ │ │ │ └── v4 │ │ │ │ │ │ │ │ │ ├── header_rules.go │ │ │ │ │ │ │ │ │ └── v4.go │ │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ │ └── version.go │ │ │ │ │ │ │ ├── private │ │ │ │ │ │ │ ├── endpoints │ │ │ │ │ │ │ │ ├── endpoints.go │ │ │ │ │ │ │ │ ├── endpoints.json │ │ │ │ │ │ │ │ └── endpoints_map.go │ │ │ │ │ │ │ ├── protocol │ │ │ │ │ │ │ │ ├── idempotency.go │ │ │ │ │ │ │ │ ├── query │ │ │ │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ │ │ │ ├── queryutil │ │ │ │ │ │ │ │ │ │ └── queryutil.go │ │ │ │ │ │ │ │ │ ├── unmarshal.go │ │ │ │ │ │ │ │ │ └── unmarshal_error.go │ │ │ │ │ │ │ │ ├── rest │ │ │ │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ │ │ │ ├── payload.go │ │ │ │ │ │ │ │ │ └── unmarshal.go │ │ │ │ │ │ │ │ ├── restxml │ │ │ │ │ │ │ │ │ └── restxml.go │ │ │ │ │ │ │ │ ├── unmarshal.go │ │ │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ │ │ └── xmlutil │ │ │ │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ │ │ │ ├── unmarshal.go │ │ │ │ │ │ │ │ │ └── xml_to_struct.go │ │ │ │ │ │ │ └── waiter │ │ │ │ │ │ │ │ └── waiter.go │ │ │ │ │ │ │ ├── service │ │ │ │ │ │ │ ├── cloudfront │ │ │ │ │ │ │ │ └── sign │ │ │ │ │ │ │ │ │ ├── policy.go │ │ │ │ │ │ │ │ │ ├── privkey.go │ │ │ │ │ │ │ │ │ ├── randomreader.go │ │ │ │ │ │ │ │ │ ├── sign_cookie.go │ │ │ │ │ │ │ │ │ └── sign_url.go │ │ │ │ │ │ │ └── s3 │ │ │ │ │ │ │ │ ├── api.go │ │ │ │ │ │ │ │ ├── bucket_location.go │ │ │ │ │ │ │ │ ├── content_md5.go │ │ │ │ │ │ │ │ ├── customizations.go │ │ │ │ │ │ │ │ ├── host_style_bucket.go │ │ │ │ │ │ │ │ ├── platform_handlers.go │ │ │ │ │ │ │ │ ├── platform_handlers_go1.6.go │ │ │ │ │ │ │ │ ├── service.go │ │ │ │ │ │ │ │ ├── sse.go │ │ │ │ │ │ │ │ ├── statusok_error.go │ │ │ │ │ │ │ │ ├── unmarshal_error.go │ │ │ │ │ │ │ │ └── waiters.go │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ └── github.com │ │ │ │ │ │ │ ├── go-ini │ │ │ │ │ │ │ └── ini │ │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── README_ZH.md │ │ │ │ │ │ │ │ ├── ini.go │ │ │ │ │ │ │ │ └── struct.go │ │ │ │ │ │ │ └── jmespath │ │ │ │ │ │ │ └── go-jmespath │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── api.go │ │ │ │ │ │ │ ├── astnodetype_string.go │ │ │ │ │ │ │ ├── functions.go │ │ │ │ │ │ │ ├── interpreter.go │ │ │ │ │ │ │ ├── lexer.go │ │ │ │ │ │ │ ├── parser.go │ │ │ │ │ │ │ ├── toktype_string.go │ │ │ │ │ │ │ └── util.go │ │ │ │ │ ├── bugsnag │ │ │ │ │ │ ├── bugsnag-go │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── appengine.go │ │ │ │ │ │ │ ├── bugsnag.go │ │ │ │ │ │ │ ├── configuration.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── errors │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ │ │ ├── parse_panic.go │ │ │ │ │ │ │ │ └── stackframe.go │ │ │ │ │ │ │ ├── event.go │ │ │ │ │ │ │ ├── json_tags.go │ │ │ │ │ │ │ ├── metadata.go │ │ │ │ │ │ │ ├── middleware.go │ │ │ │ │ │ │ ├── notifier.go │ │ │ │ │ │ │ ├── panicwrap.go │ │ │ │ │ │ │ └── payload.go │ │ │ │ │ │ ├── osext │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── osext.go │ │ │ │ │ │ │ ├── osext_plan9.go │ │ │ │ │ │ │ ├── osext_procfs.go │ │ │ │ │ │ │ ├── osext_sysctl.go │ │ │ │ │ │ │ └── osext_windows.go │ │ │ │ │ │ └── panicwrap │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── dup2.go │ │ │ │ │ │ │ ├── dup3.go │ │ │ │ │ │ │ ├── monitor.go │ │ │ │ │ │ │ ├── monitor_windows.go │ │ │ │ │ │ │ └── panicwrap.go │ │ │ │ │ ├── denverdino │ │ │ │ │ │ └── aliyungo │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ │ ├── regions.go │ │ │ │ │ │ │ ├── request.go │ │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ │ └── version.go │ │ │ │ │ │ │ ├── oss │ │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ │ ├── export.go │ │ │ │ │ │ │ ├── multi.go │ │ │ │ │ │ │ ├── regions.go │ │ │ │ │ │ │ └── signature.go │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── attempt.go │ │ │ │ │ │ │ ├── encoding.go │ │ │ │ │ │ │ ├── iso6801.go │ │ │ │ │ │ │ ├── signature.go │ │ │ │ │ │ │ └── util.go │ │ │ │ │ ├── docker │ │ │ │ │ │ ├── goamz │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── aws │ │ │ │ │ │ │ │ ├── attempt.go │ │ │ │ │ │ │ │ ├── aws.go │ │ │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ │ │ ├── regions.go │ │ │ │ │ │ │ │ ├── retry.go │ │ │ │ │ │ │ │ └── sign.go │ │ │ │ │ │ │ └── s3 │ │ │ │ │ │ │ │ ├── lifecycle.go │ │ │ │ │ │ │ │ ├── multi.go │ │ │ │ │ │ │ │ ├── s3.go │ │ │ │ │ │ │ │ └── sign.go │ │ │ │ │ │ └── libtrust │ │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── MAINTAINERS │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── garyburd │ │ │ │ │ │ └── redigo │ │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ └── commandinfo.go │ │ │ │ │ │ │ └── redis │ │ │ │ │ │ │ ├── conn.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── log.go │ │ │ │ │ │ │ ├── pool.go │ │ │ │ │ │ │ ├── pubsub.go │ │ │ │ │ │ │ ├── redis.go │ │ │ │ │ │ │ ├── reply.go │ │ │ │ │ │ │ ├── scan.go │ │ │ │ │ │ │ └── script.go │ │ │ │ │ ├── golang │ │ │ │ │ │ └── protobuf │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── gorilla │ │ │ │ │ │ ├── context │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── context.go │ │ │ │ │ │ │ └── doc.go │ │ │ │ │ │ ├── handlers │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── canonical.go │ │ │ │ │ │ │ ├── compress.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── handlers.go │ │ │ │ │ │ │ └── proxy_headers.go │ │ │ │ │ │ └── mux │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── mux.go │ │ │ │ │ │ │ ├── regexp.go │ │ │ │ │ │ │ └── route.go │ │ │ │ │ ├── inconshreveable │ │ │ │ │ │ └── mousetrap │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── trap_others.go │ │ │ │ │ │ │ ├── trap_windows.go │ │ │ │ │ │ │ └── trap_windows_1.4.go │ │ │ │ │ ├── mitchellh │ │ │ │ │ │ └── mapstructure │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── decode_hooks.go │ │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ │ └── mapstructure.go │ │ │ │ │ ├── ncw │ │ │ │ │ │ └── swift │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── COPYING │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── auth.go │ │ │ │ │ │ │ ├── auth_v3.go │ │ │ │ │ │ │ ├── compatibility_1_0.go │ │ │ │ │ │ │ ├── compatibility_1_1.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── meta.go │ │ │ │ │ │ │ ├── notes.txt │ │ │ │ │ │ │ ├── swift.go │ │ │ │ │ │ │ ├── swifttest │ │ │ │ │ │ │ └── server.go │ │ │ │ │ │ │ ├── timeout_reader.go │ │ │ │ │ │ │ └── watchdog_reader.go │ │ │ │ │ ├── spf13 │ │ │ │ │ │ ├── cobra │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── bash_completions.go │ │ │ │ │ │ │ ├── bash_completions.md │ │ │ │ │ │ │ ├── cobra.go │ │ │ │ │ │ │ ├── command.go │ │ │ │ │ │ │ ├── md_docs.go │ │ │ │ │ │ │ └── md_docs.md │ │ │ │ │ │ └── pflag │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── bool.go │ │ │ │ │ │ │ ├── duration.go │ │ │ │ │ │ │ ├── flag.go │ │ │ │ │ │ │ ├── float32.go │ │ │ │ │ │ │ ├── float64.go │ │ │ │ │ │ │ ├── int.go │ │ │ │ │ │ │ ├── int32.go │ │ │ │ │ │ │ ├── int64.go │ │ │ │ │ │ │ ├── int8.go │ │ │ │ │ │ │ ├── ip.go │ │ │ │ │ │ │ ├── ipmask.go │ │ │ │ │ │ │ ├── string.go │ │ │ │ │ │ │ ├── uint.go │ │ │ │ │ │ │ ├── uint16.go │ │ │ │ │ │ │ ├── uint32.go │ │ │ │ │ │ │ ├── uint64.go │ │ │ │ │ │ │ └── uint8.go │ │ │ │ │ ├── stevvooe │ │ │ │ │ │ └── resumable │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── resumable.go │ │ │ │ │ │ │ ├── sha256 │ │ │ │ │ │ │ ├── resume.go │ │ │ │ │ │ │ ├── sha256.go │ │ │ │ │ │ │ ├── sha256block.go │ │ │ │ │ │ │ ├── sha256block_386.s │ │ │ │ │ │ │ ├── sha256block_amd64.s │ │ │ │ │ │ │ └── sha256block_decl.go │ │ │ │ │ │ │ └── sha512 │ │ │ │ │ │ │ ├── resume.go │ │ │ │ │ │ │ ├── sha512.go │ │ │ │ │ │ │ ├── sha512block.go │ │ │ │ │ │ │ ├── sha512block_amd64.s │ │ │ │ │ │ │ └── sha512block_decl.go │ │ │ │ │ └── yvasiyarov │ │ │ │ │ │ ├── go-metrics │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── counter.go │ │ │ │ │ │ ├── debug.go │ │ │ │ │ │ ├── ewma.go │ │ │ │ │ │ ├── gauge.go │ │ │ │ │ │ ├── gauge_float64.go │ │ │ │ │ │ ├── graphite.go │ │ │ │ │ │ ├── healthcheck.go │ │ │ │ │ │ ├── histogram.go │ │ │ │ │ │ ├── json.go │ │ │ │ │ │ ├── log.go │ │ │ │ │ │ ├── memory.md │ │ │ │ │ │ ├── meter.go │ │ │ │ │ │ ├── metrics.go │ │ │ │ │ │ ├── opentsdb.go │ │ │ │ │ │ ├── registry.go │ │ │ │ │ │ ├── runtime.go │ │ │ │ │ │ ├── runtime_cgo.go │ │ │ │ │ │ ├── runtime_no_cgo.go │ │ │ │ │ │ ├── sample.go │ │ │ │ │ │ ├── syslog.go │ │ │ │ │ │ ├── timer.go │ │ │ │ │ │ └── writer.go │ │ │ │ │ │ ├── gorelic │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── agent.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── gc_metrics.go │ │ │ │ │ │ ├── gometrica.go │ │ │ │ │ │ ├── http_metrics.go │ │ │ │ │ │ ├── memory_metrics.go │ │ │ │ │ │ ├── nut.json │ │ │ │ │ │ └── runtime_metrics.go │ │ │ │ │ │ └── newrelic_platform_go │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── agent.go │ │ │ │ │ │ ├── component.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── metrica.go │ │ │ │ │ │ ├── nut.json │ │ │ │ │ │ └── plugin.go │ │ │ │ ├── golang.org │ │ │ │ │ └── x │ │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── PATENTS │ │ │ │ │ │ ├── bcrypt │ │ │ │ │ │ │ ├── base64.go │ │ │ │ │ │ │ └── bcrypt.go │ │ │ │ │ │ ├── blowfish │ │ │ │ │ │ │ ├── block.go │ │ │ │ │ │ │ ├── cipher.go │ │ │ │ │ │ │ └── const.go │ │ │ │ │ │ └── ocsp │ │ │ │ │ │ │ └── ocsp.go │ │ │ │ │ │ ├── net │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── PATENTS │ │ │ │ │ │ ├── context │ │ │ │ │ │ │ ├── context.go │ │ │ │ │ │ │ └── ctxhttp │ │ │ │ │ │ │ │ ├── cancelreq.go │ │ │ │ │ │ │ │ ├── cancelreq_go14.go │ │ │ │ │ │ │ │ └── ctxhttp.go │ │ │ │ │ │ ├── http2 │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── client_conn_pool.go │ │ │ │ │ │ │ ├── configure_transport.go │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ ├── fixed_buffer.go │ │ │ │ │ │ │ ├── flow.go │ │ │ │ │ │ │ ├── frame.go │ │ │ │ │ │ │ ├── go15.go │ │ │ │ │ │ │ ├── gotrack.go │ │ │ │ │ │ │ ├── headermap.go │ │ │ │ │ │ │ ├── hpack │ │ │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ │ │ ├── hpack.go │ │ │ │ │ │ │ │ ├── huffman.go │ │ │ │ │ │ │ │ └── tables.go │ │ │ │ │ │ │ ├── http2.go │ │ │ │ │ │ │ ├── not_go15.go │ │ │ │ │ │ │ ├── not_go16.go │ │ │ │ │ │ │ ├── pipe.go │ │ │ │ │ │ │ ├── server.go │ │ │ │ │ │ │ ├── transport.go │ │ │ │ │ │ │ ├── write.go │ │ │ │ │ │ │ └── writesched.go │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ └── timeseries │ │ │ │ │ │ │ │ └── timeseries.go │ │ │ │ │ │ └── trace │ │ │ │ │ │ │ ├── events.go │ │ │ │ │ │ │ ├── histogram.go │ │ │ │ │ │ │ └── trace.go │ │ │ │ │ │ ├── oauth2 │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── AUTHORS │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ └── time │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── PATENTS │ │ │ │ │ │ └── rate │ │ │ │ │ │ └── rate.go │ │ │ │ ├── google.golang.org │ │ │ │ │ ├── api │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── gensupport │ │ │ │ │ │ │ ├── backoff.go │ │ │ │ │ │ │ ├── buffer.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── json.go │ │ │ │ │ │ │ ├── media.go │ │ │ │ │ │ │ ├── params.go │ │ │ │ │ │ │ ├── resumable.go │ │ │ │ │ │ │ └── retry.go │ │ │ │ │ │ ├── googleapi │ │ │ │ │ │ │ ├── googleapi.go │ │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ │ └── uritemplates │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ ├── uritemplates.go │ │ │ │ │ │ │ │ │ └── utils.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── storage │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── storage-api.json │ │ │ │ │ │ │ └── storage-gen.go │ │ │ │ │ ├── appengine │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── appengine.go │ │ │ │ │ │ ├── appengine_vm.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── identity.go │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── api.go │ │ │ │ │ │ │ ├── api_classic.go │ │ │ │ │ │ │ ├── api_common.go │ │ │ │ │ │ │ ├── app_id.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 │ │ │ │ │ │ │ ├── log │ │ │ │ │ │ │ │ ├── log_service.pb.go │ │ │ │ │ │ │ │ └── log_service.proto │ │ │ │ │ │ │ ├── metadata.go │ │ │ │ │ │ │ ├── modules │ │ │ │ │ │ │ │ ├── modules_service.pb.go │ │ │ │ │ │ │ │ └── modules_service.proto │ │ │ │ │ │ │ ├── net.go │ │ │ │ │ │ │ ├── regen.sh │ │ │ │ │ │ │ ├── remote_api │ │ │ │ │ │ │ │ ├── remote_api.pb.go │ │ │ │ │ │ │ │ └── remote_api.proto │ │ │ │ │ │ │ └── transaction.go │ │ │ │ │ │ ├── namespace.go │ │ │ │ │ │ └── timeout.go │ │ │ │ │ ├── cloud │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── AUTHORS │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── cloud.go │ │ │ │ │ │ ├── compute │ │ │ │ │ │ │ └── metadata │ │ │ │ │ │ │ │ └── metadata.go │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── cloud.go │ │ │ │ │ │ │ └── opts │ │ │ │ │ │ │ │ └── option.go │ │ │ │ │ │ ├── key.json.enc │ │ │ │ │ │ ├── option.go │ │ │ │ │ │ └── storage │ │ │ │ │ │ │ ├── acl.go │ │ │ │ │ │ │ ├── storage.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ └── grpc │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── PATENTS │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── call.go │ │ │ │ │ │ ├── clientconn.go │ │ │ │ │ │ ├── codegen.sh │ │ │ │ │ │ ├── codes │ │ │ │ │ │ ├── code_string.go │ │ │ │ │ │ └── codes.go │ │ │ │ │ │ ├── coverage.sh │ │ │ │ │ │ ├── credentials │ │ │ │ │ │ └── credentials.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── grpclog │ │ │ │ │ │ └── logger.go │ │ │ │ │ │ ├── internal │ │ │ │ │ │ └── internal.go │ │ │ │ │ │ ├── metadata │ │ │ │ │ │ └── metadata.go │ │ │ │ │ │ ├── naming │ │ │ │ │ │ └── naming.go │ │ │ │ │ │ ├── peer │ │ │ │ │ │ └── peer.go │ │ │ │ │ │ ├── picker.go │ │ │ │ │ │ ├── rpc_util.go │ │ │ │ │ │ ├── server.go │ │ │ │ │ │ ├── stream.go │ │ │ │ │ │ ├── trace.go │ │ │ │ │ │ └── transport │ │ │ │ │ │ ├── control.go │ │ │ │ │ │ ├── handler_server.go │ │ │ │ │ │ ├── http2_client.go │ │ │ │ │ │ ├── http2_server.go │ │ │ │ │ │ ├── http_util.go │ │ │ │ │ │ └── transport.go │ │ │ │ ├── gopkg.in │ │ │ │ │ ├── check.v1 │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── TODO │ │ │ │ │ │ ├── benchmark.go │ │ │ │ │ │ ├── check.go │ │ │ │ │ │ ├── checkers.go │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ ├── printer.go │ │ │ │ │ │ └── run.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 │ │ │ │ └── rsc.io │ │ │ │ │ └── letsencrypt │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README │ │ │ │ │ ├── lets.go │ │ │ │ │ └── vendor │ │ │ │ │ ├── github.com │ │ │ │ │ └── xenolf │ │ │ │ │ │ └── lego │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ └── acme │ │ │ │ │ │ ├── challenges.go │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── client_test.go │ │ │ │ │ │ ├── crypto.go │ │ │ │ │ │ ├── crypto_test.go │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ ├── http.go │ │ │ │ │ │ ├── http_challenge.go │ │ │ │ │ │ ├── http_challenge_server.go │ │ │ │ │ │ ├── http_challenge_test.go │ │ │ │ │ │ ├── http_test.go │ │ │ │ │ │ ├── jws.go │ │ │ │ │ │ ├── messages.go │ │ │ │ │ │ ├── provider.go │ │ │ │ │ │ ├── tls_sni_challenge.go │ │ │ │ │ │ ├── tls_sni_challenge_server.go │ │ │ │ │ │ ├── tls_sni_challenge_test.go │ │ │ │ │ │ ├── utils.go │ │ │ │ │ │ └── utils_test.go │ │ │ │ │ ├── gopkg.in │ │ │ │ │ └── square │ │ │ │ │ │ └── go-jose.v1 │ │ │ │ │ │ ├── BUG-BOUNTY.md │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── asymmetric.go │ │ │ │ │ │ ├── asymmetric_test.go │ │ │ │ │ │ ├── cipher │ │ │ │ │ │ ├── cbc_hmac.go │ │ │ │ │ │ ├── cbc_hmac_test.go │ │ │ │ │ │ ├── concat_kdf.go │ │ │ │ │ │ ├── concat_kdf_test.go │ │ │ │ │ │ ├── ecdh_es.go │ │ │ │ │ │ ├── ecdh_es_test.go │ │ │ │ │ │ ├── key_wrap.go │ │ │ │ │ │ └── key_wrap_test.go │ │ │ │ │ │ ├── crypter.go │ │ │ │ │ │ ├── crypter_test.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── doc_test.go │ │ │ │ │ │ ├── encoding.go │ │ │ │ │ │ ├── encoding_test.go │ │ │ │ │ │ ├── json │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── bench_test.go │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ ├── decode_test.go │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ ├── encode_test.go │ │ │ │ │ │ ├── indent.go │ │ │ │ │ │ ├── number_test.go │ │ │ │ │ │ ├── scanner.go │ │ │ │ │ │ ├── scanner_test.go │ │ │ │ │ │ ├── stream.go │ │ │ │ │ │ ├── stream_test.go │ │ │ │ │ │ ├── tagkey_test.go │ │ │ │ │ │ ├── tags.go │ │ │ │ │ │ ├── tags_test.go │ │ │ │ │ │ └── testdata │ │ │ │ │ │ │ └── code.json.gz │ │ │ │ │ │ ├── json_fork.go │ │ │ │ │ │ ├── json_fork_test.go │ │ │ │ │ │ ├── json_std.go │ │ │ │ │ │ ├── json_std_test.go │ │ │ │ │ │ ├── jwe.go │ │ │ │ │ │ ├── jwe_test.go │ │ │ │ │ │ ├── jwk.go │ │ │ │ │ │ ├── jwk_test.go │ │ │ │ │ │ ├── jws.go │ │ │ │ │ │ ├── jws_test.go │ │ │ │ │ │ ├── shared.go │ │ │ │ │ │ ├── signing.go │ │ │ │ │ │ ├── signing_test.go │ │ │ │ │ │ ├── symmetric.go │ │ │ │ │ │ ├── symmetric_test.go │ │ │ │ │ │ ├── utils.go │ │ │ │ │ │ └── utils_test.go │ │ │ │ │ └── vendor.json │ │ │ └── version │ │ │ │ ├── print.go │ │ │ │ ├── version.go │ │ │ │ └── version.sh │ │ ├── docker │ │ │ ├── .dockerignore │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── .mailmap │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.aarch64 │ │ │ ├── Dockerfile.armhf │ │ │ ├── Dockerfile.ppc64le │ │ │ ├── Dockerfile.s390x │ │ │ ├── Dockerfile.simple │ │ │ ├── Dockerfile.solaris │ │ │ ├── Dockerfile.windows │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── ROADMAP.md │ │ │ ├── VENDORING.md │ │ │ ├── VERSION │ │ │ ├── api │ │ │ │ ├── README.md │ │ │ │ ├── common.go │ │ │ │ ├── common_test.go │ │ │ │ ├── common_unix.go │ │ │ │ ├── common_windows.go │ │ │ │ ├── errors │ │ │ │ │ └── errors.go │ │ │ │ ├── fixtures │ │ │ │ │ └── keyfile │ │ │ │ ├── names.go │ │ │ │ ├── server │ │ │ │ │ ├── httputils │ │ │ │ │ │ ├── decoder.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── form.go │ │ │ │ │ │ ├── form_test.go │ │ │ │ │ │ ├── httputils.go │ │ │ │ │ │ ├── httputils_write_json.go │ │ │ │ │ │ └── httputils_write_json_go16.go │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── middleware │ │ │ │ │ │ ├── cors.go │ │ │ │ │ │ ├── debug.go │ │ │ │ │ │ ├── experimental.go │ │ │ │ │ │ ├── middleware.go │ │ │ │ │ │ ├── version.go │ │ │ │ │ │ └── version_test.go │ │ │ │ │ ├── profiler.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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── swarm │ │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ │ ├── cluster.go │ │ │ │ │ │ │ └── cluster_routes.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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── error_response.go │ │ │ │ │ ├── events │ │ │ │ │ └── events.go │ │ │ │ │ ├── filters │ │ │ │ │ ├── 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 │ │ │ │ │ ├── port.go │ │ │ │ │ ├── registry │ │ │ │ │ ├── authenticate.go │ │ │ │ │ └── registry.go │ │ │ │ │ ├── seccomp.go │ │ │ │ │ ├── service_update_response.go │ │ │ │ │ ├── stats.go │ │ │ │ │ ├── strslice │ │ │ │ │ ├── strslice.go │ │ │ │ │ └── strslice_test.go │ │ │ │ │ ├── swarm │ │ │ │ │ ├── common.go │ │ │ │ │ ├── container.go │ │ │ │ │ ├── network.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── 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 │ │ │ │ │ ├── bflag.go │ │ │ │ │ ├── bflag_test.go │ │ │ │ │ ├── builder.go │ │ │ │ │ ├── builder_test.go │ │ │ │ │ ├── builder_unix.go │ │ │ │ │ ├── builder_windows.go │ │ │ │ │ ├── command │ │ │ │ │ │ └── command.go │ │ │ │ │ ├── dispatchers.go │ │ │ │ │ ├── dispatchers_test.go │ │ │ │ │ ├── dispatchers_unix.go │ │ │ │ │ ├── dispatchers_unix_test.go │ │ │ │ │ ├── dispatchers_windows.go │ │ │ │ │ ├── dispatchers_windows_test.go │ │ │ │ │ ├── envVarTest │ │ │ │ │ ├── evaluator.go │ │ │ │ │ ├── evaluator_test.go │ │ │ │ │ ├── evaluator_unix.go │ │ │ │ │ ├── evaluator_windows.go │ │ │ │ │ ├── internals.go │ │ │ │ │ ├── internals_test.go │ │ │ │ │ ├── internals_unix.go │ │ │ │ │ ├── internals_windows.go │ │ │ │ │ ├── internals_windows_test.go │ │ │ │ │ ├── parser │ │ │ │ │ │ ├── dumper │ │ │ │ │ │ │ └── main.go │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ ├── line_parsers.go │ │ │ │ │ │ ├── parser.go │ │ │ │ │ │ ├── parser_test.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 │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ └── utils.go │ │ │ │ │ ├── shell_parser.go │ │ │ │ │ ├── shell_parser_test.go │ │ │ │ │ ├── support.go │ │ │ │ │ ├── support_test.go │ │ │ │ │ ├── utils_test.go │ │ │ │ │ └── wordsTest │ │ │ │ ├── dockerignore.go │ │ │ │ ├── dockerignore │ │ │ │ │ ├── dockerignore.go │ │ │ │ │ └── dockerignore_test.go │ │ │ │ ├── dockerignore_test.go │ │ │ │ ├── git.go │ │ │ │ ├── remote.go │ │ │ │ ├── remote_test.go │ │ │ │ ├── tarsum.go │ │ │ │ ├── tarsum_test.go │ │ │ │ └── utils_test.go │ │ │ ├── cli │ │ │ │ ├── cobra.go │ │ │ │ ├── command │ │ │ │ │ ├── bundlefile │ │ │ │ │ │ ├── bundlefile.go │ │ │ │ │ │ └── bundlefile_test.go │ │ │ │ │ ├── checkpoint │ │ │ │ │ │ ├── cmd.go │ │ │ │ │ │ ├── create.go │ │ │ │ │ │ ├── list.go │ │ │ │ │ │ └── remove.go │ │ │ │ │ ├── cli.go │ │ │ │ │ ├── commands │ │ │ │ │ │ └── commands.go │ │ │ │ │ ├── container │ │ │ │ │ │ ├── attach.go │ │ │ │ │ │ ├── cmd.go │ │ │ │ │ │ ├── commit.go │ │ │ │ │ │ ├── cp.go │ │ │ │ │ │ ├── create.go │ │ │ │ │ │ ├── diff.go │ │ │ │ │ │ ├── exec.go │ │ │ │ │ │ ├── exec_test.go │ │ │ │ │ │ ├── export.go │ │ │ │ │ │ ├── hijack.go │ │ │ │ │ │ ├── inspect.go │ │ │ │ │ │ ├── kill.go │ │ │ │ │ │ ├── list.go │ │ │ │ │ │ ├── logs.go │ │ │ │ │ │ ├── opts.go │ │ │ │ │ │ ├── opts_test.go │ │ │ │ │ │ ├── pause.go │ │ │ │ │ │ ├── port.go │ │ │ │ │ │ ├── prune.go │ │ │ │ │ │ ├── ps_test.go │ │ │ │ │ │ ├── rename.go │ │ │ │ │ │ ├── restart.go │ │ │ │ │ │ ├── rm.go │ │ │ │ │ │ ├── run.go │ │ │ │ │ │ ├── start.go │ │ │ │ │ │ ├── stats.go │ │ │ │ │ │ ├── stats_helpers.go │ │ │ │ │ │ ├── stats_unit_test.go │ │ │ │ │ │ ├── stop.go │ │ │ │ │ │ ├── testdata │ │ │ │ │ │ │ ├── utf16.env │ │ │ │ │ │ │ ├── utf16be.env │ │ │ │ │ │ │ ├── utf8.env │ │ │ │ │ │ │ ├── valid.env │ │ │ │ │ │ │ └── valid.label │ │ │ │ │ │ ├── top.go │ │ │ │ │ │ ├── tty.go │ │ │ │ │ │ ├── unpause.go │ │ │ │ │ │ ├── update.go │ │ │ │ │ │ ├── utils.go │ │ │ │ │ │ └── wait.go │ │ │ │ │ ├── events_utils.go │ │ │ │ │ ├── formatter │ │ │ │ │ │ ├── container.go │ │ │ │ │ │ ├── container_test.go │ │ │ │ │ │ ├── custom.go │ │ │ │ │ │ ├── custom_test.go │ │ │ │ │ │ ├── disk_usage.go │ │ │ │ │ │ ├── disk_usage_test.go │ │ │ │ │ │ ├── formatter.go │ │ │ │ │ │ ├── image.go │ │ │ │ │ │ ├── image_test.go │ │ │ │ │ │ ├── network.go │ │ │ │ │ │ ├── network_test.go │ │ │ │ │ │ ├── plugin.go │ │ │ │ │ │ ├── plugin_test.go │ │ │ │ │ │ ├── reflect.go │ │ │ │ │ │ ├── reflect_test.go │ │ │ │ │ │ ├── service.go │ │ │ │ │ │ ├── service_test.go │ │ │ │ │ │ ├── stats.go │ │ │ │ │ │ ├── stats_test.go │ │ │ │ │ │ ├── task.go │ │ │ │ │ │ ├── task_test.go │ │ │ │ │ │ ├── volume.go │ │ │ │ │ │ └── volume_test.go │ │ │ │ │ ├── idresolver │ │ │ │ │ │ └── idresolver.go │ │ │ │ │ ├── image │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ ├── context.go │ │ │ │ │ │ │ ├── context_test.go │ │ │ │ │ │ │ ├── context_unix.go │ │ │ │ │ │ │ └── context_windows.go │ │ │ │ │ │ ├── cmd.go │ │ │ │ │ │ ├── history.go │ │ │ │ │ │ ├── import.go │ │ │ │ │ │ ├── inspect.go │ │ │ │ │ │ ├── list.go │ │ │ │ │ │ ├── load.go │ │ │ │ │ │ ├── prune.go │ │ │ │ │ │ ├── pull.go │ │ │ │ │ │ ├── push.go │ │ │ │ │ │ ├── remove.go │ │ │ │ │ │ ├── save.go │ │ │ │ │ │ ├── tag.go │ │ │ │ │ │ ├── trust.go │ │ │ │ │ │ └── trust_test.go │ │ │ │ │ ├── in.go │ │ │ │ │ ├── inspect │ │ │ │ │ │ ├── inspector.go │ │ │ │ │ │ └── inspector_test.go │ │ │ │ │ ├── network │ │ │ │ │ │ ├── cmd.go │ │ │ │ │ │ ├── connect.go │ │ │ │ │ │ ├── create.go │ │ │ │ │ │ ├── disconnect.go │ │ │ │ │ │ ├── inspect.go │ │ │ │ │ │ ├── list.go │ │ │ │ │ │ ├── prune.go │ │ │ │ │ │ └── remove.go │ │ │ │ │ ├── node │ │ │ │ │ │ ├── client_test.go │ │ │ │ │ │ ├── cmd.go │ │ │ │ │ │ ├── demote.go │ │ │ │ │ │ ├── demote_test.go │ │ │ │ │ │ ├── inspect.go │ │ │ │ │ │ ├── inspect_test.go │ │ │ │ │ │ ├── list.go │ │ │ │ │ │ ├── list_test.go │ │ │ │ │ │ ├── opts.go │ │ │ │ │ │ ├── promote.go │ │ │ │ │ │ ├── promote_test.go │ │ │ │ │ │ ├── ps.go │ │ │ │ │ │ ├── ps_test.go │ │ │ │ │ │ ├── remove.go │ │ │ │ │ │ ├── remove_test.go │ │ │ │ │ │ ├── testdata │ │ │ │ │ │ │ ├── node-inspect-pretty.manager-leader.golden │ │ │ │ │ │ │ ├── node-inspect-pretty.manager.golden │ │ │ │ │ │ │ ├── node-inspect-pretty.simple.golden │ │ │ │ │ │ │ ├── node-ps.simple.golden │ │ │ │ │ │ │ └── node-ps.with-errors.golden │ │ │ │ │ │ ├── update.go │ │ │ │ │ │ └── update_test.go │ │ │ │ │ ├── out.go │ │ │ │ │ ├── plugin │ │ │ │ │ │ ├── cmd.go │ │ │ │ │ │ ├── create.go │ │ │ │ │ │ ├── disable.go │ │ │ │ │ │ ├── enable.go │ │ │ │ │ │ ├── inspect.go │ │ │ │ │ │ ├── install.go │ │ │ │ │ │ ├── list.go │ │ │ │ │ │ ├── push.go │ │ │ │ │ │ ├── remove.go │ │ │ │ │ │ ├── set.go │ │ │ │ │ │ └── upgrade.go │ │ │ │ │ ├── prune │ │ │ │ │ │ └── prune.go │ │ │ │ │ ├── registry.go │ │ │ │ │ ├── registry │ │ │ │ │ │ ├── login.go │ │ │ │ │ │ ├── logout.go │ │ │ │ │ │ └── search.go │ │ │ │ │ ├── secret │ │ │ │ │ │ ├── cmd.go │ │ │ │ │ │ ├── create.go │ │ │ │ │ │ ├── inspect.go │ │ │ │ │ │ ├── ls.go │ │ │ │ │ │ └── remove.go │ │ │ │ │ ├── service │ │ │ │ │ │ ├── cmd.go │ │ │ │ │ │ ├── create.go │ │ │ │ │ │ ├── inspect.go │ │ │ │ │ │ ├── inspect_test.go │ │ │ │ │ │ ├── list.go │ │ │ │ │ │ ├── logs.go │ │ │ │ │ │ ├── opts.go │ │ │ │ │ │ ├── opts_test.go │ │ │ │ │ │ ├── parse.go │ │ │ │ │ │ ├── ps.go │ │ │ │ │ │ ├── remove.go │ │ │ │ │ │ ├── scale.go │ │ │ │ │ │ ├── trust.go │ │ │ │ │ │ ├── update.go │ │ │ │ │ │ └── update_test.go │ │ │ │ │ ├── stack │ │ │ │ │ │ ├── cmd.go │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ ├── deploy.go │ │ │ │ │ │ ├── deploy_bundlefile.go │ │ │ │ │ │ ├── deploy_composefile.go │ │ │ │ │ │ ├── list.go │ │ │ │ │ │ ├── opts.go │ │ │ │ │ │ ├── ps.go │ │ │ │ │ │ ├── remove.go │ │ │ │ │ │ └── services.go │ │ │ │ │ ├── swarm │ │ │ │ │ │ ├── client_test.go │ │ │ │ │ │ ├── cmd.go │ │ │ │ │ │ ├── init.go │ │ │ │ │ │ ├── init_test.go │ │ │ │ │ │ ├── join.go │ │ │ │ │ │ ├── join_test.go │ │ │ │ │ │ ├── join_token.go │ │ │ │ │ │ ├── join_token_test.go │ │ │ │ │ │ ├── leave.go │ │ │ │ │ │ ├── leave_test.go │ │ │ │ │ │ ├── opts.go │ │ │ │ │ │ ├── opts_test.go │ │ │ │ │ │ ├── testdata │ │ │ │ │ │ │ ├── init-init-autolock.golden │ │ │ │ │ │ │ ├── init-init.golden │ │ │ │ │ │ │ ├── jointoken-manager-quiet.golden │ │ │ │ │ │ │ ├── jointoken-manager-rotate.golden │ │ │ │ │ │ │ ├── jointoken-manager.golden │ │ │ │ │ │ │ ├── jointoken-worker-quiet.golden │ │ │ │ │ │ │ ├── jointoken-worker.golden │ │ │ │ │ │ │ ├── unlockkeys-unlock-key-quiet.golden │ │ │ │ │ │ │ ├── unlockkeys-unlock-key-rotate-quiet.golden │ │ │ │ │ │ │ ├── unlockkeys-unlock-key-rotate.golden │ │ │ │ │ │ │ ├── unlockkeys-unlock-key.golden │ │ │ │ │ │ │ ├── update-all-flags-quiet.golden │ │ │ │ │ │ │ ├── update-autolock-unlock-key.golden │ │ │ │ │ │ │ └── update-noargs.golden │ │ │ │ │ │ ├── unlock.go │ │ │ │ │ │ ├── unlock_key.go │ │ │ │ │ │ ├── unlock_key_test.go │ │ │ │ │ │ ├── unlock_test.go │ │ │ │ │ │ ├── update.go │ │ │ │ │ │ └── update_test.go │ │ │ │ │ ├── system │ │ │ │ │ │ ├── cmd.go │ │ │ │ │ │ ├── df.go │ │ │ │ │ │ ├── events.go │ │ │ │ │ │ ├── info.go │ │ │ │ │ │ ├── inspect.go │ │ │ │ │ │ ├── prune.go │ │ │ │ │ │ └── version.go │ │ │ │ │ ├── task │ │ │ │ │ │ └── print.go │ │ │ │ │ ├── trust.go │ │ │ │ │ ├── utils.go │ │ │ │ │ └── volume │ │ │ │ │ │ ├── client_test.go │ │ │ │ │ │ ├── cmd.go │ │ │ │ │ │ ├── create.go │ │ │ │ │ │ ├── create_test.go │ │ │ │ │ │ ├── inspect.go │ │ │ │ │ │ ├── inspect_test.go │ │ │ │ │ │ ├── list.go │ │ │ │ │ │ ├── list_test.go │ │ │ │ │ │ ├── prune.go │ │ │ │ │ │ ├── prune_test.go │ │ │ │ │ │ ├── remove.go │ │ │ │ │ │ ├── remove_test.go │ │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── volume-inspect-with-format.json-template.golden │ │ │ │ │ │ ├── volume-inspect-with-format.simple-template.golden │ │ │ │ │ │ ├── volume-inspect-without-format.multiple-volume-with-labels.golden │ │ │ │ │ │ ├── volume-inspect-without-format.single-volume.golden │ │ │ │ │ │ ├── volume-list-with-config-format.golden │ │ │ │ │ │ ├── volume-list-with-format.golden │ │ │ │ │ │ ├── volume-list-without-format.golden │ │ │ │ │ │ ├── volume-prune-no.golden │ │ │ │ │ │ ├── volume-prune-yes.golden │ │ │ │ │ │ ├── volume-prune.deletedVolumes.golden │ │ │ │ │ │ └── volume-prune.empty.golden │ │ │ │ ├── compose │ │ │ │ │ ├── convert │ │ │ │ │ │ ├── compose.go │ │ │ │ │ │ ├── compose_test.go │ │ │ │ │ │ ├── service.go │ │ │ │ │ │ ├── service_test.go │ │ │ │ │ │ ├── volume.go │ │ │ │ │ │ └── volume_test.go │ │ │ │ │ ├── interpolation │ │ │ │ │ │ ├── interpolation.go │ │ │ │ │ │ └── interpolation_test.go │ │ │ │ │ ├── loader │ │ │ │ │ │ ├── example1.env │ │ │ │ │ │ ├── example2.env │ │ │ │ │ │ ├── full-example.yml │ │ │ │ │ │ ├── loader.go │ │ │ │ │ │ ├── loader_test.go │ │ │ │ │ │ ├── volume.go │ │ │ │ │ │ └── volume_test.go │ │ │ │ │ ├── schema │ │ │ │ │ │ ├── bindata.go │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── config_schema_v3.0.json │ │ │ │ │ │ │ ├── config_schema_v3.1.json │ │ │ │ │ │ │ └── config_schema_v3.2.json │ │ │ │ │ │ ├── schema.go │ │ │ │ │ │ └── schema_test.go │ │ │ │ │ ├── template │ │ │ │ │ │ ├── template.go │ │ │ │ │ │ └── template_test.go │ │ │ │ │ └── types │ │ │ │ │ │ └── types.go │ │ │ │ ├── config │ │ │ │ │ ├── config.go │ │ │ │ │ ├── config_test.go │ │ │ │ │ ├── configfile │ │ │ │ │ │ ├── file.go │ │ │ │ │ │ └── file_test.go │ │ │ │ │ └── credentials │ │ │ │ │ │ ├── credentials.go │ │ │ │ │ │ ├── default_store.go │ │ │ │ │ │ ├── default_store_darwin.go │ │ │ │ │ │ ├── default_store_linux.go │ │ │ │ │ │ ├── default_store_unsupported.go │ │ │ │ │ │ ├── default_store_windows.go │ │ │ │ │ │ ├── file_store.go │ │ │ │ │ │ ├── file_store_test.go │ │ │ │ │ │ ├── native_store.go │ │ │ │ │ │ └── native_store_test.go │ │ │ │ ├── debug │ │ │ │ │ ├── debug.go │ │ │ │ │ └── debug_test.go │ │ │ │ ├── error.go │ │ │ │ ├── flags │ │ │ │ │ ├── client.go │ │ │ │ │ ├── common.go │ │ │ │ │ └── common_test.go │ │ │ │ ├── internal │ │ │ │ │ └── test │ │ │ │ │ │ ├── builders │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── node.go │ │ │ │ │ │ ├── swarm.go │ │ │ │ │ │ ├── task.go │ │ │ │ │ │ └── volume.go │ │ │ │ │ │ ├── cli.go │ │ │ │ │ │ └── doc.go │ │ │ │ ├── required.go │ │ │ │ └── trust │ │ │ │ │ └── trust.go │ │ │ ├── client │ │ │ │ ├── README.md │ │ │ │ ├── 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_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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── swarm_get_unlock_key.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_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.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 │ │ │ │ ├── docker │ │ │ │ │ ├── daemon_none.go │ │ │ │ │ ├── daemon_none_test.go │ │ │ │ │ ├── daemon_unit_test.go │ │ │ │ │ ├── daemon_unix.go │ │ │ │ │ ├── docker.go │ │ │ │ │ ├── docker_test.go │ │ │ │ │ └── docker_windows.go │ │ │ │ └── dockerd │ │ │ │ │ ├── README.md │ │ │ │ │ ├── config.go │ │ │ │ │ ├── config_common_unix.go │ │ │ │ │ ├── config_experimental.go │ │ │ │ │ ├── config_solaris.go │ │ │ │ │ ├── config_unix.go │ │ │ │ │ ├── config_unix_test.go │ │ │ │ │ ├── config_windows.go │ │ │ │ │ ├── daemon.go │ │ │ │ │ ├── daemon_freebsd.go │ │ │ │ │ ├── daemon_linux.go │ │ │ │ │ ├── daemon_solaris.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 │ │ │ │ │ ├── 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_solaris.go │ │ │ │ ├── state_test.go │ │ │ │ ├── state_unix.go │ │ │ │ ├── state_windows.go │ │ │ │ ├── store.go │ │ │ │ └── stream │ │ │ │ │ ├── attach.go │ │ │ │ │ └── streams.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-precise │ │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ │ ├── ubuntu-trusty │ │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ │ ├── ubuntu-xenial │ │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ │ └── ubuntu-yakkety │ │ │ │ │ │ │ │ └── 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 │ │ │ │ │ │ ├── fedora-24 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ └── generate.sh │ │ │ │ ├── check-config.sh │ │ │ │ ├── completion │ │ │ │ │ ├── REVIEWERS │ │ │ │ │ ├── bash │ │ │ │ │ │ └── docker │ │ │ │ │ ├── fish │ │ │ │ │ │ └── docker.fish │ │ │ │ │ ├── powershell │ │ │ │ │ │ └── readme.txt │ │ │ │ │ └── zsh │ │ │ │ │ │ ├── REVIEWERS │ │ │ │ │ │ └── _docker │ │ │ │ ├── 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 │ │ │ │ │ ├── Dockerfile.solaris │ │ │ │ │ └── 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-busybox.sh │ │ │ │ ├── mkimage-crux.sh │ │ │ │ ├── mkimage-debootstrap.sh │ │ │ │ ├── mkimage-pld.sh │ │ │ │ ├── mkimage-rinse.sh │ │ │ │ ├── mkimage-yum.sh │ │ │ │ ├── mkimage.sh │ │ │ │ ├── mkimage │ │ │ │ │ ├── .febootstrap-minimize │ │ │ │ │ ├── busybox-static │ │ │ │ │ ├── debootstrap │ │ │ │ │ ├── mageia-urpmi │ │ │ │ │ ├── rinse │ │ │ │ │ └── solaris │ │ │ │ ├── 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 │ │ │ │ ├── selinux │ │ │ │ │ └── docker-engine-selinux │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── appletalk.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_unix.go │ │ │ │ ├── archive_windows.go │ │ │ │ ├── attach.go │ │ │ │ ├── auth.go │ │ │ │ ├── bindmount_solaris.go │ │ │ │ ├── bindmount_unix.go │ │ │ │ ├── cache.go │ │ │ │ ├── caps │ │ │ │ │ └── utils_unix.go │ │ │ │ ├── changes.go │ │ │ │ ├── checkpoint.go │ │ │ │ ├── cluster.go │ │ │ │ ├── cluster │ │ │ │ │ ├── cluster.go │ │ │ │ │ ├── convert │ │ │ │ │ │ ├── container.go │ │ │ │ │ │ ├── network.go │ │ │ │ │ │ ├── node.go │ │ │ │ │ │ ├── secret.go │ │ │ │ │ │ ├── service.go │ │ │ │ │ │ ├── swarm.go │ │ │ │ │ │ └── task.go │ │ │ │ │ ├── executor │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ └── container │ │ │ │ │ │ │ ├── adapter.go │ │ │ │ │ │ │ ├── attachment.go │ │ │ │ │ │ │ ├── container.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 │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── listen_addr.go │ │ │ │ │ ├── listen_addr_linux.go │ │ │ │ │ ├── listen_addr_others.go │ │ │ │ │ ├── listen_addr_solaris.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_solaris.go │ │ │ │ │ ├── config_test.go │ │ │ │ │ ├── config_unix.go │ │ │ │ │ ├── config_unix_test.go │ │ │ │ │ ├── config_windows.go │ │ │ │ │ └── config_windows_test.go │ │ │ │ ├── container.go │ │ │ │ ├── container_linux.go │ │ │ │ ├── container_operations.go │ │ │ │ ├── container_operations_solaris.go │ │ │ │ ├── container_operations_unix.go │ │ │ │ ├── container_operations_windows.go │ │ │ │ ├── container_windows.go │ │ │ │ ├── create.go │ │ │ │ ├── create_unix.go │ │ │ │ ├── create_windows.go │ │ │ │ ├── daemon.go │ │ │ │ ├── daemon_experimental.go │ │ │ │ ├── daemon_linux.go │ │ │ │ ├── daemon_linux_test.go │ │ │ │ ├── daemon_solaris.go │ │ │ │ ├── daemon_test.go │ │ │ │ ├── daemon_unix.go │ │ │ │ ├── daemon_unix_test.go │ │ │ │ ├── daemon_unsupported.go │ │ │ │ ├── daemon_windows.go │ │ │ │ ├── debugtrap.go │ │ │ │ ├── debugtrap_unix.go │ │ │ │ ├── debugtrap_unsupported.go │ │ │ │ ├── debugtrap_windows.go │ │ │ │ ├── delete.go │ │ │ │ ├── delete_test.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_solaris.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 │ │ │ │ │ ├── counter.go │ │ │ │ │ ├── devmapper │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── deviceset.go │ │ │ │ │ │ ├── devmapper_doc.go │ │ │ │ │ │ ├── devmapper_test.go │ │ │ │ │ │ ├── driver.go │ │ │ │ │ │ └── mount.go │ │ │ │ │ ├── driver.go │ │ │ │ │ ├── driver_freebsd.go │ │ │ │ │ ├── driver_linux.go │ │ │ │ │ ├── driver_solaris.go │ │ │ │ │ ├── driver_unsupported.go │ │ │ │ │ ├── driver_windows.go │ │ │ │ │ ├── fsdiff.go │ │ │ │ │ ├── graphtest │ │ │ │ │ │ ├── graphbench_unix.go │ │ │ │ │ │ ├── graphtest_unix.go │ │ │ │ │ │ ├── graphtest_windows.go │ │ │ │ │ │ ├── testutil.go │ │ │ │ │ │ └── testutil_unix.go │ │ │ │ │ ├── overlay │ │ │ │ │ │ ├── copy.go │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ └── projectquota.go │ │ │ │ │ ├── register │ │ │ │ │ │ ├── register_aufs.go │ │ │ │ │ │ ├── register_btrfs.go │ │ │ │ │ │ ├── register_devicemapper.go │ │ │ │ │ │ ├── register_overlay.go │ │ │ │ │ │ ├── register_vfs.go │ │ │ │ │ │ ├── register_windows.go │ │ │ │ │ │ └── register_zfs.go │ │ │ │ │ ├── vfs │ │ │ │ │ │ ├── driver.go │ │ │ │ │ │ └── vfs_test.go │ │ │ │ │ ├── windows │ │ │ │ │ │ └── windows.go │ │ │ │ │ └── zfs │ │ │ │ │ │ ├── MAINTAINERS │ │ │ │ │ │ ├── zfs.go │ │ │ │ │ │ ├── zfs_freebsd.go │ │ │ │ │ │ ├── zfs_linux.go │ │ │ │ │ │ ├── zfs_solaris.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_windows.go │ │ │ │ ├── initlayer │ │ │ │ │ ├── setup_solaris.go │ │ │ │ │ ├── setup_unix.go │ │ │ │ │ └── setup_windows.go │ │ │ │ ├── inspect.go │ │ │ │ ├── inspect_solaris.go │ │ │ │ ├── inspect_unix.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 │ │ │ │ ├── logdrivers_linux.go │ │ │ │ ├── logdrivers_windows.go │ │ │ │ ├── logger │ │ │ │ │ ├── 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_unsupported.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 │ │ │ │ │ │ └── read.go │ │ │ │ │ ├── logentries │ │ │ │ │ │ └── logentries.go │ │ │ │ │ ├── logger.go │ │ │ │ │ ├── loggerutils │ │ │ │ │ │ ├── log_tag.go │ │ │ │ │ │ ├── log_tag_test.go │ │ │ │ │ │ └── rotatefilewriter.go │ │ │ │ │ ├── loginfo.go │ │ │ │ │ ├── ring.go │ │ │ │ │ ├── ring_test.go │ │ │ │ │ ├── splunk │ │ │ │ │ │ ├── splunk.go │ │ │ │ │ │ ├── splunk_test.go │ │ │ │ │ │ └── splunkhecmock_test.go │ │ │ │ │ └── syslog │ │ │ │ │ │ ├── syslog.go │ │ │ │ │ │ └── syslog_test.go │ │ │ │ ├── logs.go │ │ │ │ ├── logs_test.go │ │ │ │ ├── metrics.go │ │ │ │ ├── monitor.go │ │ │ │ ├── monitor_linux.go │ │ │ │ ├── monitor_solaris.go │ │ │ │ ├── monitor_windows.go │ │ │ │ ├── mounts.go │ │ │ │ ├── names.go │ │ │ │ ├── network.go │ │ │ │ ├── network │ │ │ │ │ └── settings.go │ │ │ │ ├── oci_linux.go │ │ │ │ ├── oci_solaris.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 │ │ │ │ ├── selinux_linux.go │ │ │ │ ├── selinux_unsupported.go │ │ │ │ ├── start.go │ │ │ │ ├── start_unix.go │ │ │ │ ├── start_windows.go │ │ │ │ ├── stats.go │ │ │ │ ├── stats │ │ │ │ │ ├── collector.go │ │ │ │ │ ├── collector_solaris.go │ │ │ │ │ ├── collector_unix.go │ │ │ │ │ ├── collector_windows.go │ │ │ │ │ └── types.go │ │ │ │ ├── stats_collector.go │ │ │ │ ├── stats_unix.go │ │ │ │ ├── stats_windows.go │ │ │ │ ├── stop.go │ │ │ │ ├── top_unix.go │ │ │ │ ├── top_unix_test.go │ │ │ │ ├── top_windows.go │ │ │ │ ├── unpause.go │ │ │ │ ├── update.go │ │ │ │ ├── update_linux.go │ │ │ │ ├── update_solaris.go │ │ │ │ ├── update_windows.go │ │ │ │ ├── volumes.go │ │ │ │ ├── volumes_unit_test.go │ │ │ │ ├── volumes_unix.go │ │ │ │ ├── volumes_windows.go │ │ │ │ ├── wait.go │ │ │ │ └── workdir.go │ │ │ ├── distribution │ │ │ │ ├── config.go │ │ │ │ ├── errors.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 │ │ │ │ ├── README.md │ │ │ │ ├── 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 │ │ │ │ ├── deprecated.md │ │ │ │ ├── extend │ │ │ │ │ ├── EBS_volume.md │ │ │ │ │ ├── config.md │ │ │ │ │ ├── images │ │ │ │ │ │ ├── authz_additional_info.png │ │ │ │ │ │ ├── authz_allow.png │ │ │ │ │ │ ├── authz_chunked.png │ │ │ │ │ │ ├── authz_connection_hijack.png │ │ │ │ │ │ └── authz_deny.png │ │ │ │ │ ├── index.md │ │ │ │ │ ├── legacy_plugins.md │ │ │ │ │ ├── plugin_api.md │ │ │ │ │ ├── plugins_authorization.md │ │ │ │ │ ├── plugins_graphdriver.md │ │ │ │ │ ├── plugins_network.md │ │ │ │ │ ├── plugins_services.md │ │ │ │ │ └── plugins_volume.md │ │ │ │ ├── reference │ │ │ │ │ ├── builder.md │ │ │ │ │ ├── commandline │ │ │ │ │ │ ├── attach.md │ │ │ │ │ │ ├── build.md │ │ │ │ │ │ ├── cli.md │ │ │ │ │ │ ├── commit.md │ │ │ │ │ │ ├── container.md │ │ │ │ │ │ ├── container_prune.md │ │ │ │ │ │ ├── cp.md │ │ │ │ │ │ ├── create.md │ │ │ │ │ │ ├── deploy.md │ │ │ │ │ │ ├── diff.md │ │ │ │ │ │ ├── dockerd.md │ │ │ │ │ │ ├── events.md │ │ │ │ │ │ ├── exec.md │ │ │ │ │ │ ├── export.md │ │ │ │ │ │ ├── history.md │ │ │ │ │ │ ├── image.md │ │ │ │ │ │ ├── image_prune.md │ │ │ │ │ │ ├── images.md │ │ │ │ │ │ ├── import.md │ │ │ │ │ │ ├── index.md │ │ │ │ │ │ ├── info.md │ │ │ │ │ │ ├── inspect.md │ │ │ │ │ │ ├── kill.md │ │ │ │ │ │ ├── load.md │ │ │ │ │ │ ├── login.md │ │ │ │ │ │ ├── logout.md │ │ │ │ │ │ ├── logs.md │ │ │ │ │ │ ├── network.md │ │ │ │ │ │ ├── network_connect.md │ │ │ │ │ │ ├── network_create.md │ │ │ │ │ │ ├── network_disconnect.md │ │ │ │ │ │ ├── network_inspect.md │ │ │ │ │ │ ├── network_ls.md │ │ │ │ │ │ ├── network_prune.md │ │ │ │ │ │ ├── network_rm.md │ │ │ │ │ │ ├── node.md │ │ │ │ │ │ ├── node_demote.md │ │ │ │ │ │ ├── node_inspect.md │ │ │ │ │ │ ├── node_ls.md │ │ │ │ │ │ ├── node_promote.md │ │ │ │ │ │ ├── node_ps.md │ │ │ │ │ │ ├── node_rm.md │ │ │ │ │ │ ├── node_update.md │ │ │ │ │ │ ├── pause.md │ │ │ │ │ │ ├── plugin.md │ │ │ │ │ │ ├── plugin_create.md │ │ │ │ │ │ ├── plugin_disable.md │ │ │ │ │ │ ├── plugin_enable.md │ │ │ │ │ │ ├── plugin_inspect.md │ │ │ │ │ │ ├── plugin_install.md │ │ │ │ │ │ ├── plugin_ls.md │ │ │ │ │ │ ├── plugin_push.md │ │ │ │ │ │ ├── plugin_rm.md │ │ │ │ │ │ ├── plugin_set.md │ │ │ │ │ │ ├── plugin_upgrade.md │ │ │ │ │ │ ├── port.md │ │ │ │ │ │ ├── ps.md │ │ │ │ │ │ ├── pull.md │ │ │ │ │ │ ├── push.md │ │ │ │ │ │ ├── rename.md │ │ │ │ │ │ ├── restart.md │ │ │ │ │ │ ├── rm.md │ │ │ │ │ │ ├── rmi.md │ │ │ │ │ │ ├── run.md │ │ │ │ │ │ ├── save.md │ │ │ │ │ │ ├── search.md │ │ │ │ │ │ ├── secret.md │ │ │ │ │ │ ├── secret_create.md │ │ │ │ │ │ ├── secret_inspect.md │ │ │ │ │ │ ├── secret_ls.md │ │ │ │ │ │ ├── secret_rm.md │ │ │ │ │ │ ├── service.md │ │ │ │ │ │ ├── service_create.md │ │ │ │ │ │ ├── service_inspect.md │ │ │ │ │ │ ├── service_logs.md │ │ │ │ │ │ ├── service_ls.md │ │ │ │ │ │ ├── service_ps.md │ │ │ │ │ │ ├── service_rm.md │ │ │ │ │ │ ├── service_scale.md │ │ │ │ │ │ ├── service_update.md │ │ │ │ │ │ ├── stack.md │ │ │ │ │ │ ├── stack_deploy.md │ │ │ │ │ │ ├── stack_ls.md │ │ │ │ │ │ ├── stack_ps.md │ │ │ │ │ │ ├── stack_rm.md │ │ │ │ │ │ ├── stack_services.md │ │ │ │ │ │ ├── start.md │ │ │ │ │ │ ├── stats.md │ │ │ │ │ │ ├── stop.md │ │ │ │ │ │ ├── swarm.md │ │ │ │ │ │ ├── swarm_init.md │ │ │ │ │ │ ├── swarm_join.md │ │ │ │ │ │ ├── swarm_join_token.md │ │ │ │ │ │ ├── swarm_leave.md │ │ │ │ │ │ ├── swarm_unlock.md │ │ │ │ │ │ ├── swarm_unlock_key.md │ │ │ │ │ │ ├── swarm_update.md │ │ │ │ │ │ ├── system.md │ │ │ │ │ │ ├── system_df.md │ │ │ │ │ │ ├── system_prune.md │ │ │ │ │ │ ├── tag.md │ │ │ │ │ │ ├── top.md │ │ │ │ │ │ ├── unpause.md │ │ │ │ │ │ ├── update.md │ │ │ │ │ │ ├── version.md │ │ │ │ │ │ ├── volume.md │ │ │ │ │ │ ├── volume_create.md │ │ │ │ │ │ ├── volume_inspect.md │ │ │ │ │ │ ├── volume_ls.md │ │ │ │ │ │ ├── volume_prune.md │ │ │ │ │ │ ├── volume_rm.md │ │ │ │ │ │ └── wait.md │ │ │ │ │ ├── glossary.md │ │ │ │ │ ├── index.md │ │ │ │ │ └── run.md │ │ │ │ ├── static_files │ │ │ │ │ ├── contributors.png │ │ │ │ │ └── docker-logo-compressed.png │ │ │ │ └── yaml │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── generate.go │ │ │ │ │ └── yaml.go │ │ │ ├── experimental │ │ │ │ ├── README.md │ │ │ │ ├── checkpoint-restore.md │ │ │ │ ├── docker-stacks-and-bundles.md │ │ │ │ ├── images │ │ │ │ │ ├── ipvlan-l3.gliffy │ │ │ │ │ ├── ipvlan-l3.png │ │ │ │ │ ├── ipvlan-l3.svg │ │ │ │ │ ├── ipvlan_l2_simple.gliffy │ │ │ │ │ ├── ipvlan_l2_simple.png │ │ │ │ │ ├── ipvlan_l2_simple.svg │ │ │ │ │ ├── macvlan-bridge-ipvlan-l2.gliffy │ │ │ │ │ ├── macvlan-bridge-ipvlan-l2.png │ │ │ │ │ ├── macvlan-bridge-ipvlan-l2.svg │ │ │ │ │ ├── multi_tenant_8021q_vlans.gliffy │ │ │ │ │ ├── multi_tenant_8021q_vlans.png │ │ │ │ │ ├── multi_tenant_8021q_vlans.svg │ │ │ │ │ ├── vlans-deeper-look.gliffy │ │ │ │ │ ├── vlans-deeper-look.png │ │ │ │ │ └── vlans-deeper-look.svg │ │ │ │ └── vlan-networks.md │ │ │ ├── hack │ │ │ │ ├── Jenkins │ │ │ │ │ ├── W2L │ │ │ │ │ │ ├── postbuild.sh │ │ │ │ │ │ └── setup.sh │ │ │ │ │ └── readme.md │ │ │ │ ├── dind │ │ │ │ ├── dockerfile │ │ │ │ │ ├── binaries-commits │ │ │ │ │ └── install-binaries.sh │ │ │ │ ├── generate-authors.sh │ │ │ │ ├── generate-swagger-api.sh │ │ │ │ ├── install.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 │ │ │ │ │ ├── .build-deb │ │ │ │ │ │ ├── compat │ │ │ │ │ │ ├── control │ │ │ │ │ │ ├── docker-engine.bash-completion │ │ │ │ │ │ ├── docker-engine.docker.default │ │ │ │ │ │ ├── docker-engine.docker.init │ │ │ │ │ │ ├── docker-engine.docker.upstart │ │ │ │ │ │ ├── docker-engine.install │ │ │ │ │ │ ├── docker-engine.manpages │ │ │ │ │ │ ├── docker-engine.postinst │ │ │ │ │ │ ├── docker-engine.udev │ │ │ │ │ │ ├── docs │ │ │ │ │ │ └── rules │ │ │ │ │ ├── .build-rpm │ │ │ │ │ │ ├── docker-engine-selinux.spec │ │ │ │ │ │ └── docker-engine.spec │ │ │ │ │ ├── .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-client │ │ │ │ │ ├── binary-daemon │ │ │ │ │ ├── build-deb │ │ │ │ │ ├── build-integration-test-binary │ │ │ │ │ ├── build-rpm │ │ │ │ │ ├── clean-apt-repo │ │ │ │ │ ├── clean-yum-repo │ │ │ │ │ ├── cover │ │ │ │ │ ├── cross │ │ │ │ │ ├── dynbinary │ │ │ │ │ ├── dynbinary-client │ │ │ │ │ ├── dynbinary-daemon │ │ │ │ │ ├── generate-index-listing │ │ │ │ │ ├── install-binary │ │ │ │ │ ├── install-binary-client │ │ │ │ │ ├── install-binary-daemon │ │ │ │ │ ├── install-script │ │ │ │ │ ├── release-deb │ │ │ │ │ ├── release-rpm │ │ │ │ │ ├── run │ │ │ │ │ ├── sign-repos │ │ │ │ │ ├── test-deb-install │ │ │ │ │ ├── test-docker-py │ │ │ │ │ ├── test-install-script │ │ │ │ │ ├── test-integration-cli │ │ │ │ │ ├── test-integration-shell │ │ │ │ │ ├── test-old-apt-repo │ │ │ │ │ ├── test-unit │ │ │ │ │ ├── tgz │ │ │ │ │ ├── ubuntu │ │ │ │ │ ├── update-apt-repo │ │ │ │ │ ├── win │ │ │ │ │ └── yaml-docs-generator │ │ │ │ ├── release.sh │ │ │ │ ├── validate │ │ │ │ │ ├── .swagger-yamllint │ │ │ │ │ ├── .validate │ │ │ │ │ ├── all │ │ │ │ │ ├── changelog-date-descending │ │ │ │ │ ├── changelog-well-formed │ │ │ │ │ ├── compose-bindata │ │ │ │ │ ├── dco │ │ │ │ │ ├── default │ │ │ │ │ ├── default-seccomp │ │ │ │ │ ├── gofmt │ │ │ │ │ ├── lint │ │ │ │ │ ├── pkg-imports │ │ │ │ │ ├── swagger │ │ │ │ │ ├── swagger-gen │ │ │ │ │ ├── test-imports │ │ │ │ │ ├── toml │ │ │ │ │ ├── vendor │ │ │ │ │ └── vet │ │ │ │ └── vendor.sh │ │ │ ├── hooks │ │ │ │ └── post_build │ │ │ ├── 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 │ │ │ │ ├── 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_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_logs_test.go │ │ │ │ ├── docker_api_network_test.go │ │ │ │ ├── docker_api_resize_test.go │ │ │ │ ├── docker_api_stats_test.go │ │ │ │ ├── docker_api_stats_unix_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_version_test.go │ │ │ │ ├── docker_api_volumes_test.go │ │ │ │ ├── docker_cli_attach_test.go │ │ │ │ ├── docker_cli_attach_unix_test.go │ │ │ │ ├── docker_cli_authz_plugin_v2_test.go │ │ │ │ ├── docker_cli_authz_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_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.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_experimental_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_help_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_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_service_create_test.go │ │ │ │ ├── docker_cli_service_health_test.go │ │ │ │ ├── docker_cli_service_logs_experimental_test.go │ │ │ │ ├── docker_cli_service_scale_test.go │ │ │ │ ├── docker_cli_service_update_test.go │ │ │ │ ├── docker_cli_sni_test.go │ │ │ │ ├── docker_cli_stack_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_version_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 │ │ │ │ │ ├── clean.go │ │ │ │ │ ├── environment.go │ │ │ │ │ └── protect.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 │ │ │ │ │ ├── registry │ │ │ │ │ │ └── cert.pem │ │ │ │ │ └── secrets │ │ │ │ │ │ └── default │ │ │ │ ├── fixtures_linux_daemon_test.go │ │ │ │ ├── fixtures_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 │ │ │ ├── keys │ │ │ │ └── launchpad-ppa-zfs.asc │ │ │ ├── layer │ │ │ │ ├── empty.go │ │ │ │ ├── empty_test.go │ │ │ │ ├── filestore.go │ │ │ │ ├── filestore_test.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_windows.go │ │ │ ├── libcontainerd │ │ │ │ ├── client.go │ │ │ │ ├── client_linux.go │ │ │ │ ├── client_solaris.go │ │ │ │ ├── client_unix.go │ │ │ │ ├── client_windows.go │ │ │ │ ├── container.go │ │ │ │ ├── container_unix.go │ │ │ │ ├── container_windows.go │ │ │ │ ├── oom_linux.go │ │ │ │ ├── oom_solaris.go │ │ │ │ ├── pausemonitor_unix.go │ │ │ │ ├── process.go │ │ │ │ ├── process_unix.go │ │ │ │ ├── process_windows.go │ │ │ │ ├── queue_unix.go │ │ │ │ ├── remote.go │ │ │ │ ├── remote_unix.go │ │ │ │ ├── remote_windows.go │ │ │ │ ├── types.go │ │ │ │ ├── types_linux.go │ │ │ │ ├── types_solaris.go │ │ │ │ ├── types_windows.go │ │ │ │ ├── utils_linux.go │ │ │ │ ├── utils_solaris.go │ │ │ │ ├── utils_windows.go │ │ │ │ └── utils_windows_test.go │ │ │ ├── man │ │ │ │ ├── Dockerfile │ │ │ │ ├── Dockerfile.5.md │ │ │ │ ├── Dockerfile.aarch64 │ │ │ │ ├── Dockerfile.armhf │ │ │ │ ├── Dockerfile.ppc64le │ │ │ │ ├── Dockerfile.s390x │ │ │ │ ├── README.md │ │ │ │ ├── docker-build.1.md │ │ │ │ ├── docker-config-json.5.md │ │ │ │ ├── docker-run.1.md │ │ │ │ ├── docker.1.md │ │ │ │ ├── dockerd.8.md │ │ │ │ ├── generate.go │ │ │ │ ├── generate.sh │ │ │ │ ├── glide.lock │ │ │ │ ├── glide.yaml │ │ │ │ ├── md2man-all.sh │ │ │ │ └── src │ │ │ │ │ ├── attach.md │ │ │ │ │ ├── commit.md │ │ │ │ │ ├── container │ │ │ │ │ ├── attach.md │ │ │ │ │ ├── commit.md │ │ │ │ │ ├── cp.md │ │ │ │ │ ├── create-example.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── diff.md │ │ │ │ │ ├── exec.md │ │ │ │ │ ├── export.md │ │ │ │ │ ├── kill.md │ │ │ │ │ ├── logs.md │ │ │ │ │ ├── ls.md │ │ │ │ │ ├── pause.md │ │ │ │ │ ├── port.md │ │ │ │ │ ├── rename.md │ │ │ │ │ ├── restart.md │ │ │ │ │ ├── rm.md │ │ │ │ │ ├── run.md │ │ │ │ │ ├── start.md │ │ │ │ │ ├── stats.md │ │ │ │ │ ├── stop.md │ │ │ │ │ ├── top.md │ │ │ │ │ ├── unpause.md │ │ │ │ │ ├── update.md │ │ │ │ │ └── wait.md │ │ │ │ │ ├── cp.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── diff.md │ │ │ │ │ ├── events.md │ │ │ │ │ ├── exec.md │ │ │ │ │ ├── export.md │ │ │ │ │ ├── history.md │ │ │ │ │ ├── image │ │ │ │ │ ├── build.md │ │ │ │ │ ├── history.md │ │ │ │ │ ├── import.md │ │ │ │ │ ├── load.md │ │ │ │ │ ├── ls.md │ │ │ │ │ ├── pull.md │ │ │ │ │ ├── push.md │ │ │ │ │ ├── rm.md │ │ │ │ │ ├── save.md │ │ │ │ │ └── tag.md │ │ │ │ │ ├── images.md │ │ │ │ │ ├── import.md │ │ │ │ │ ├── info.md │ │ │ │ │ ├── inspect.md │ │ │ │ │ ├── kill.md │ │ │ │ │ ├── load.md │ │ │ │ │ ├── login.md │ │ │ │ │ ├── logout.md │ │ │ │ │ ├── logs.md │ │ │ │ │ ├── network │ │ │ │ │ ├── connect.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── disconnect.md │ │ │ │ │ ├── inspect.md │ │ │ │ │ ├── ls.md │ │ │ │ │ └── rm.md │ │ │ │ │ ├── pause.md │ │ │ │ │ ├── plugin │ │ │ │ │ └── ls.md │ │ │ │ │ ├── port.md │ │ │ │ │ ├── ps.md │ │ │ │ │ ├── pull.md │ │ │ │ │ ├── push.md │ │ │ │ │ ├── rename.md │ │ │ │ │ ├── restart.md │ │ │ │ │ ├── rm.md │ │ │ │ │ ├── rmi.md │ │ │ │ │ ├── save.md │ │ │ │ │ ├── search.md │ │ │ │ │ ├── start.md │ │ │ │ │ ├── stats.md │ │ │ │ │ ├── stop.md │ │ │ │ │ ├── system │ │ │ │ │ ├── events.md │ │ │ │ │ └── info.md │ │ │ │ │ ├── tag.md │ │ │ │ │ ├── top.md │ │ │ │ │ ├── unpause.md │ │ │ │ │ ├── update.md │ │ │ │ │ ├── version.md │ │ │ │ │ ├── volume.md │ │ │ │ │ ├── volume │ │ │ │ │ ├── create.md │ │ │ │ │ ├── inspect.md │ │ │ │ │ └── ls.md │ │ │ │ │ └── wait.md │ │ │ ├── migrate │ │ │ │ └── v1 │ │ │ │ │ ├── migratev1.go │ │ │ │ │ └── migratev1_test.go │ │ │ ├── oci │ │ │ │ ├── defaults_linux.go │ │ │ │ ├── defaults_solaris.go │ │ │ │ ├── defaults_windows.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 │ │ │ │ ├── mount.go │ │ │ │ ├── mount_test.go │ │ │ │ ├── opts.go │ │ │ │ ├── opts_test.go │ │ │ │ ├── opts_unix.go │ │ │ │ ├── opts_windows.go │ │ │ │ ├── port.go │ │ │ │ ├── port_test.go │ │ │ │ ├── quotedstring.go │ │ │ │ ├── quotedstring_test.go │ │ │ │ ├── runtime.go │ │ │ │ ├── secret.go │ │ │ │ ├── secret_test.go │ │ │ │ ├── throttledevice.go │ │ │ │ ├── ulimit.go │ │ │ │ ├── ulimit_test.go │ │ │ │ └── weightdevice.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 │ │ │ │ │ ├── authz.go │ │ │ │ │ ├── authz_unix_test.go │ │ │ │ │ ├── middleware.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 │ │ │ │ ├── devicemapper │ │ │ │ │ ├── devmapper.go │ │ │ │ │ ├── devmapper_log.go │ │ │ │ │ ├── devmapper_wrapper.go │ │ │ │ │ ├── devmapper_wrapper_deferred_remove.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 │ │ │ │ ├── filenotify │ │ │ │ │ ├── filenotify.go │ │ │ │ │ ├── fsnotify.go │ │ │ │ │ ├── poller.go │ │ │ │ │ └── poller_test.go │ │ │ │ ├── fileutils │ │ │ │ │ ├── fileutils.go │ │ │ │ │ ├── fileutils_darwin.go │ │ │ │ │ ├── fileutils_solaris.go │ │ │ │ │ ├── fileutils_test.go │ │ │ │ │ ├── fileutils_unix.go │ │ │ │ │ └── fileutils_windows.go │ │ │ │ ├── fsutils │ │ │ │ │ ├── fsutils_linux.go │ │ │ │ │ └── fsutils_linux_test.go │ │ │ │ ├── gitutils │ │ │ │ │ ├── gitutils.go │ │ │ │ │ └── gitutils_test.go │ │ │ │ ├── homedir │ │ │ │ │ ├── homedir.go │ │ │ │ │ ├── homedir_linux.go │ │ │ │ │ ├── homedir_others.go │ │ │ │ │ └── homedir_test.go │ │ │ │ ├── httputils │ │ │ │ │ ├── httputils.go │ │ │ │ │ ├── httputils_test.go │ │ │ │ │ ├── mimetype.go │ │ │ │ │ ├── mimetype_test.go │ │ │ │ │ ├── resumablerequestreader.go │ │ │ │ │ └── resumablerequestreader_test.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 │ │ │ │ │ ├── fmt.go │ │ │ │ │ ├── fmt_test.go │ │ │ │ │ ├── fswriters.go │ │ │ │ │ ├── fswriters_test.go │ │ │ │ │ ├── multireader.go │ │ │ │ │ ├── multireader_test.go │ │ │ │ │ ├── readers.go │ │ │ │ │ ├── readers_test.go │ │ │ │ │ ├── temp_unix.go │ │ │ │ │ ├── temp_windows.go │ │ │ │ │ ├── writeflusher.go │ │ │ │ │ ├── writers.go │ │ │ │ │ └── writers_test.go │ │ │ │ ├── jsonlog │ │ │ │ │ ├── jsonlog.go │ │ │ │ │ ├── jsonlog_marshalling.go │ │ │ │ │ ├── jsonlog_marshalling_test.go │ │ │ │ │ ├── jsonlogbytes.go │ │ │ │ │ ├── jsonlogbytes_test.go │ │ │ │ │ ├── time_marshalling.go │ │ │ │ │ └── time_marshalling_test.go │ │ │ │ ├── jsonmessage │ │ │ │ │ ├── jsonmessage.go │ │ │ │ │ └── jsonmessage_test.go │ │ │ │ ├── listeners │ │ │ │ │ ├── group_unix.go │ │ │ │ │ ├── listeners_solaris.go │ │ │ │ │ ├── listeners_unix.go │ │ │ │ │ └── listeners_windows.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_solaris.go │ │ │ │ │ ├── mounter_unsupported.go │ │ │ │ │ ├── mountinfo.go │ │ │ │ │ ├── mountinfo_freebsd.go │ │ │ │ │ ├── mountinfo_linux.go │ │ │ │ │ ├── mountinfo_linux_test.go │ │ │ │ │ ├── mountinfo_solaris.go │ │ │ │ │ ├── mountinfo_unsupported.go │ │ │ │ │ ├── mountinfo_windows.go │ │ │ │ │ ├── sharedsubtree_linux.go │ │ │ │ │ ├── sharedsubtree_linux_test.go │ │ │ │ │ └── sharedsubtree_solaris.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_solaris.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 │ │ │ │ │ ├── utsname_int8.go │ │ │ │ │ └── utsname_uint8.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_linux.go │ │ │ │ │ ├── plugins_windows.go │ │ │ │ │ └── transport │ │ │ │ │ │ ├── http.go │ │ │ │ │ │ └── transport.go │ │ │ │ ├── pools │ │ │ │ │ ├── pools.go │ │ │ │ │ └── pools_test.go │ │ │ │ ├── progress │ │ │ │ │ ├── progress.go │ │ │ │ │ ├── progressreader.go │ │ │ │ │ └── progressreader_test.go │ │ │ │ ├── promise │ │ │ │ │ └── promise.go │ │ │ │ ├── pubsub │ │ │ │ │ ├── publisher.go │ │ │ │ │ └── publisher_test.go │ │ │ │ ├── random │ │ │ │ │ ├── random.go │ │ │ │ │ └── random_test.go │ │ │ │ ├── reexec │ │ │ │ │ ├── README.md │ │ │ │ │ ├── command_linux.go │ │ │ │ │ ├── command_unix.go │ │ │ │ │ ├── command_unsupported.go │ │ │ │ │ ├── command_windows.go │ │ │ │ │ └── reexec.go │ │ │ │ ├── registrar │ │ │ │ │ ├── registrar.go │ │ │ │ │ └── registrar_test.go │ │ │ │ ├── signal │ │ │ │ │ ├── README.md │ │ │ │ │ ├── signal.go │ │ │ │ │ ├── signal_darwin.go │ │ │ │ │ ├── signal_freebsd.go │ │ │ │ │ ├── signal_linux.go │ │ │ │ │ ├── signal_solaris.go │ │ │ │ │ ├── signal_unix.go │ │ │ │ │ ├── signal_unsupported.go │ │ │ │ │ ├── signal_windows.go │ │ │ │ │ └── trap.go │ │ │ │ ├── stdcopy │ │ │ │ │ ├── stdcopy.go │ │ │ │ │ └── stdcopy_test.go │ │ │ │ ├── streamformatter │ │ │ │ │ ├── streamformatter.go │ │ │ │ │ └── streamformatter_test.go │ │ │ │ ├── stringid │ │ │ │ │ ├── README.md │ │ │ │ │ ├── stringid.go │ │ │ │ │ └── stringid_test.go │ │ │ │ ├── stringutils │ │ │ │ │ ├── README.md │ │ │ │ │ ├── stringutils.go │ │ │ │ │ └── stringutils_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_solaris.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 │ │ │ │ │ ├── events_windows.go │ │ │ │ │ ├── exitcode.go │ │ │ │ │ ├── filesys.go │ │ │ │ │ ├── filesys_windows.go │ │ │ │ │ ├── lstat.go │ │ │ │ │ ├── lstat_unix_test.go │ │ │ │ │ ├── lstat_windows.go │ │ │ │ │ ├── meminfo.go │ │ │ │ │ ├── meminfo_linux.go │ │ │ │ │ ├── meminfo_solaris.go │ │ │ │ │ ├── meminfo_unix_test.go │ │ │ │ │ ├── meminfo_unsupported.go │ │ │ │ │ ├── meminfo_windows.go │ │ │ │ │ ├── mknod.go │ │ │ │ │ ├── mknod_windows.go │ │ │ │ │ ├── path_unix.go │ │ │ │ │ ├── path_windows.go │ │ │ │ │ ├── path_windows_test.go │ │ │ │ │ ├── process_unix.go │ │ │ │ │ ├── process_windows.go │ │ │ │ │ ├── stat.go │ │ │ │ │ ├── stat_darwin.go │ │ │ │ │ ├── stat_freebsd.go │ │ │ │ │ ├── stat_linux.go │ │ │ │ │ ├── stat_openbsd.go │ │ │ │ │ ├── stat_solaris.go │ │ │ │ │ ├── stat_unix_test.go │ │ │ │ │ ├── stat_unsupported.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 │ │ │ │ ├── templates │ │ │ │ │ ├── templates.go │ │ │ │ │ └── templates_test.go │ │ │ │ ├── term │ │ │ │ │ ├── ascii.go │ │ │ │ │ ├── ascii_test.go │ │ │ │ │ ├── tc_linux_cgo.go │ │ │ │ │ ├── tc_other.go │ │ │ │ │ ├── tc_solaris_cgo.go │ │ │ │ │ ├── term.go │ │ │ │ │ ├── term_solaris.go │ │ │ │ │ ├── term_unix.go │ │ │ │ │ ├── term_windows.go │ │ │ │ │ ├── termios_darwin.go │ │ │ │ │ ├── termios_freebsd.go │ │ │ │ │ ├── termios_linux.go │ │ │ │ │ ├── termios_openbsd.go │ │ │ │ │ └── windows │ │ │ │ │ │ ├── ansi_reader.go │ │ │ │ │ │ ├── ansi_writer.go │ │ │ │ │ │ ├── console.go │ │ │ │ │ │ ├── windows.go │ │ │ │ │ │ └── windows_test.go │ │ │ │ ├── testutil │ │ │ │ │ ├── assert │ │ │ │ │ │ └── assert.go │ │ │ │ │ ├── cmd │ │ │ │ │ │ ├── command.go │ │ │ │ │ │ └── command_test.go │ │ │ │ │ ├── golden │ │ │ │ │ │ └── golden.go │ │ │ │ │ ├── pkg.go │ │ │ │ │ ├── tempfile │ │ │ │ │ │ └── tempfile.go │ │ │ │ │ ├── utils.go │ │ │ │ │ └── utils_test.go │ │ │ │ ├── tlsconfig │ │ │ │ │ ├── tlsconfig_clone.go │ │ │ │ │ ├── tlsconfig_clone_go16.go │ │ │ │ │ └── tlsconfig_clone_go17.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 │ │ │ │ ├── manager.go │ │ │ │ ├── manager_linux.go │ │ │ │ ├── manager_solaris.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 │ │ │ │ ├── CONTRIBUTORS.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 │ │ │ │ ├── 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 │ │ │ │ ├── registry.go │ │ │ │ ├── registry_mock_test.go │ │ │ │ ├── registry_test.go │ │ │ │ ├── service.go │ │ │ │ ├── service_v1.go │ │ │ │ ├── service_v1_test.go │ │ │ │ ├── service_v2.go │ │ │ │ ├── session.go │ │ │ │ └── types.go │ │ │ ├── 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_solaris.go │ │ │ │ ├── hostconfig_test.go │ │ │ │ ├── hostconfig_unix.go │ │ │ │ ├── hostconfig_windows.go │ │ │ │ ├── hostconfig_windows_test.go │ │ │ │ └── opts │ │ │ │ │ ├── envfile.go │ │ │ │ │ ├── envfile_test.go │ │ │ │ │ └── parse.go │ │ │ ├── vendor.conf │ │ │ ├── vendor │ │ │ │ ├── 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 │ │ │ │ │ │ │ ├── reader.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 │ │ │ │ │ │ │ ├── file.go │ │ │ │ │ │ │ ├── fileinfo.go │ │ │ │ │ │ │ ├── pipe.go │ │ │ │ │ │ │ ├── privilege.go │ │ │ │ │ │ │ ├── reparse.go │ │ │ │ │ │ │ ├── sd.go │ │ │ │ │ │ │ ├── syscall.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 │ │ │ │ │ │ │ ├── hnsfuncs.go │ │ │ │ │ │ │ ├── importlayer.go │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ ├── layerexists.go │ │ │ │ │ │ │ ├── layerutils.go │ │ │ │ │ │ │ ├── legacy.go │ │ │ │ │ │ │ ├── mksyscall_windows.go │ │ │ │ │ │ │ ├── nametoguid.go │ │ │ │ │ │ │ ├── preparelayer.go │ │ │ │ │ │ │ ├── process.go │ │ │ │ │ │ │ ├── processimage.go │ │ │ │ │ │ │ ├── unpreparelayer.go │ │ │ │ │ │ │ ├── utils.go │ │ │ │ │ │ │ ├── version.go │ │ │ │ │ │ │ ├── waithelper.go │ │ │ │ │ │ │ └── zhcsshim.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 │ │ │ │ │ ├── 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_appengine.go │ │ │ │ │ │ │ ├── terminal_bsd.go │ │ │ │ │ │ │ ├── terminal_linux.go │ │ │ │ │ │ │ ├── terminal_notwindows.go │ │ │ │ │ │ │ ├── terminal_solaris.go │ │ │ │ │ │ │ ├── terminal_windows.go │ │ │ │ │ │ │ ├── text_formatter.go │ │ │ │ │ │ │ └── writer.go │ │ │ │ │ ├── agl │ │ │ │ │ │ └── ed25519 │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── ed25519.go │ │ │ │ │ │ │ └── edwards25519 │ │ │ │ │ │ │ ├── const.go │ │ │ │ │ │ │ └── edwards25519.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 │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ │ ├── srv.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 │ │ │ │ │ │ │ │ └── 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 │ │ │ │ │ │ │ └── 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-systemd │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── activation │ │ │ │ │ │ │ │ ├── files.go │ │ │ │ │ │ │ │ ├── listeners.go │ │ │ │ │ │ │ │ └── packetconns.go │ │ │ │ │ │ │ ├── daemon │ │ │ │ │ │ │ │ └── sdnotify.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 │ │ │ │ │ ├── docker │ │ │ │ │ │ ├── containerd │ │ │ │ │ │ │ ├── LICENSE.code │ │ │ │ │ │ │ ├── LICENSE.docs │ │ │ │ │ │ │ ├── NOTICE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── api │ │ │ │ │ │ │ │ └── grpc │ │ │ │ │ │ │ │ └── types │ │ │ │ │ │ │ │ ├── api.pb.go │ │ │ │ │ │ │ │ └── api.proto │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── docker-credential-helpers │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ │ │ └── command.go │ │ │ │ │ │ │ ├── credentials │ │ │ │ │ │ │ │ ├── credentials.go │ │ │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ │ │ └── helper.go │ │ │ │ │ │ │ ├── osxkeychain │ │ │ │ │ │ │ │ ├── osxkeychain_darwin.c │ │ │ │ │ │ │ │ ├── osxkeychain_darwin.go │ │ │ │ │ │ │ │ └── osxkeychain_darwin.h │ │ │ │ │ │ │ └── secretservice │ │ │ │ │ │ │ │ ├── secretservice_linux.c │ │ │ │ │ │ │ │ ├── secretservice_linux.go │ │ │ │ │ │ │ │ └── secretservice_linux.h │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── go │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── canonical │ │ │ │ │ │ │ │ └── json │ │ │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ │ │ ├── fold.go │ │ │ │ │ │ │ │ ├── indent.go │ │ │ │ │ │ │ │ ├── scanner.go │ │ │ │ │ │ │ │ ├── stream.go │ │ │ │ │ │ │ │ └── tags.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 │ │ │ │ │ │ │ ├── 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_solaris.go │ │ │ │ │ │ │ ├── default_gateway_windows.go │ │ │ │ │ │ │ ├── discoverapi │ │ │ │ │ │ │ │ └── discoverapi.go │ │ │ │ │ │ │ ├── driverapi │ │ │ │ │ │ │ │ ├── driverapi.go │ │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ │ └── ipamdata.go │ │ │ │ │ │ │ ├── drivers │ │ │ │ │ │ │ │ ├── bridge │ │ │ │ │ │ │ │ │ ├── bridge.go │ │ │ │ │ │ │ │ │ ├── bridge_store.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 │ │ │ │ │ │ │ │ ├── macvlan │ │ │ │ │ │ │ │ │ ├── macvlan.go │ │ │ │ │ │ │ │ │ ├── macvlan_endpoint.go │ │ │ │ │ │ │ │ │ ├── macvlan_joinleave.go │ │ │ │ │ │ │ │ │ ├── macvlan_network.go │ │ │ │ │ │ │ │ │ ├── macvlan_setup.go │ │ │ │ │ │ │ │ │ ├── macvlan_state.go │ │ │ │ │ │ │ │ │ └── macvlan_store.go │ │ │ │ │ │ │ │ ├── null │ │ │ │ │ │ │ │ │ └── null.go │ │ │ │ │ │ │ │ ├── overlay │ │ │ │ │ │ │ │ │ ├── encryption.go │ │ │ │ │ │ │ │ │ ├── filter.go │ │ │ │ │ │ │ │ │ ├── joinleave.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 │ │ │ │ │ │ │ │ ├── solaris │ │ │ │ │ │ │ │ │ ├── bridge │ │ │ │ │ │ │ │ │ │ ├── bridge.go │ │ │ │ │ │ │ │ │ │ ├── bridge_store.go │ │ │ │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ │ │ │ └── port_mapping.go │ │ │ │ │ │ │ │ │ └── overlay │ │ │ │ │ │ │ │ │ │ ├── encryption.go │ │ │ │ │ │ │ │ │ │ ├── joinleave.go │ │ │ │ │ │ │ │ │ │ ├── ov_endpoint.go │ │ │ │ │ │ │ │ │ │ ├── ov_network.go │ │ │ │ │ │ │ │ │ │ ├── ov_serf.go │ │ │ │ │ │ │ │ │ │ ├── ov_utils.go │ │ │ │ │ │ │ │ │ │ ├── overlay.go │ │ │ │ │ │ │ │ │ │ ├── overlay.pb.go │ │ │ │ │ │ │ │ │ │ ├── overlay.proto │ │ │ │ │ │ │ │ │ │ └── peerdb.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 │ │ │ │ │ │ │ ├── drivers_experimental_linux.go │ │ │ │ │ │ │ ├── drivers_freebsd.go │ │ │ │ │ │ │ ├── drivers_ipam.go │ │ │ │ │ │ │ ├── drivers_linux.go │ │ │ │ │ │ │ ├── drivers_solaris.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 │ │ │ │ │ │ │ ├── hostdiscovery │ │ │ │ │ │ │ │ ├── hostdiscovery.go │ │ │ │ │ │ │ │ └── hostdiscovery_api.go │ │ │ │ │ │ │ ├── idm │ │ │ │ │ │ │ │ └── idm.go │ │ │ │ │ │ │ ├── ipam │ │ │ │ │ │ │ │ ├── allocator.go │ │ │ │ │ │ │ │ ├── store.go │ │ │ │ │ │ │ │ ├── structures.go │ │ │ │ │ │ │ │ └── utils.go │ │ │ │ │ │ │ ├── ipamapi │ │ │ │ │ │ │ │ └── contract.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 │ │ │ │ │ │ │ │ ├── firewalld.go │ │ │ │ │ │ │ │ └── iptables.go │ │ │ │ │ │ │ ├── ipvs │ │ │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ │ │ ├── ipvs.go │ │ │ │ │ │ │ │ └── netlink.go │ │ │ │ │ │ │ ├── netlabel │ │ │ │ │ │ │ │ └── labels.go │ │ │ │ │ │ │ ├── netutils │ │ │ │ │ │ │ │ ├── utils.go │ │ │ │ │ │ │ │ ├── utils_freebsd.go │ │ │ │ │ │ │ │ ├── utils_linux.go │ │ │ │ │ │ │ │ ├── utils_solaris.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 │ │ │ │ │ │ │ │ └── watch.go │ │ │ │ │ │ │ ├── ns │ │ │ │ │ │ │ │ └── init_linux.go │ │ │ │ │ │ │ ├── options │ │ │ │ │ │ │ │ └── options.go │ │ │ │ │ │ │ ├── osl │ │ │ │ │ │ │ │ ├── interface_freebsd.go │ │ │ │ │ │ │ │ ├── interface_linux.go │ │ │ │ │ │ │ │ ├── interface_solaris.go │ │ │ │ │ │ │ │ ├── interface_windows.go │ │ │ │ │ │ │ │ ├── namespace_linux.go │ │ │ │ │ │ │ │ ├── namespace_unsupported.go │ │ │ │ │ │ │ │ ├── namespace_windows.go │ │ │ │ │ │ │ │ ├── neigh_freebsd.go │ │ │ │ │ │ │ │ ├── neigh_linux.go │ │ │ │ │ │ │ │ ├── neigh_solaris.go │ │ │ │ │ │ │ │ ├── neigh_windows.go │ │ │ │ │ │ │ │ ├── options_linux.go │ │ │ │ │ │ │ │ ├── route_linux.go │ │ │ │ │ │ │ │ ├── sandbox.go │ │ │ │ │ │ │ │ ├── sandbox_freebsd.go │ │ │ │ │ │ │ │ ├── sandbox_solaris.go │ │ │ │ │ │ │ │ └── sandbox_unsupported.go │ │ │ │ │ │ │ ├── portallocator │ │ │ │ │ │ │ │ ├── portallocator.go │ │ │ │ │ │ │ │ ├── portallocator_linux.go │ │ │ │ │ │ │ │ └── portallocator_solaris.go │ │ │ │ │ │ │ ├── portmapper │ │ │ │ │ │ │ │ ├── mapper.go │ │ │ │ │ │ │ │ ├── mock_proxy.go │ │ │ │ │ │ │ │ ├── proxy.go │ │ │ │ │ │ │ │ ├── proxy_linux.go │ │ │ │ │ │ │ │ └── proxy_solaris.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_solaris.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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── notary │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ │ ├── changelist │ │ │ │ │ │ │ │ │ ├── change.go │ │ │ │ │ │ │ │ │ ├── changelist.go │ │ │ │ │ │ │ │ │ ├── file_changelist.go │ │ │ │ │ │ │ │ │ └── interface.go │ │ │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ │ │ ├── delegations.go │ │ │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ │ │ ├── repo.go │ │ │ │ │ │ │ │ ├── repo_pkcs11.go │ │ │ │ │ │ │ │ ├── tufclient.go │ │ │ │ │ │ │ │ └── witness.go │ │ │ │ │ │ │ ├── const.go │ │ │ │ │ │ │ ├── const_nowindows.go │ │ │ │ │ │ │ ├── const_windows.go │ │ │ │ │ │ │ ├── cryptoservice │ │ │ │ │ │ │ │ ├── certificate.go │ │ │ │ │ │ │ │ └── crypto_service.go │ │ │ │ │ │ │ ├── notary.go │ │ │ │ │ │ │ ├── passphrase │ │ │ │ │ │ │ │ └── passphrase.go │ │ │ │ │ │ │ ├── storage │ │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ │ ├── filestore.go │ │ │ │ │ │ │ │ ├── httpstore.go │ │ │ │ │ │ │ │ ├── interfaces.go │ │ │ │ │ │ │ │ ├── memorystore.go │ │ │ │ │ │ │ │ └── offlinestore.go │ │ │ │ │ │ │ ├── trustmanager │ │ │ │ │ │ │ │ ├── interfaces.go │ │ │ │ │ │ │ │ ├── keystore.go │ │ │ │ │ │ │ │ └── yubikey │ │ │ │ │ │ │ │ │ ├── import.go │ │ │ │ │ │ │ │ │ ├── non_pkcs11.go │ │ │ │ │ │ │ │ │ ├── pkcs11_darwin.go │ │ │ │ │ │ │ │ │ ├── pkcs11_interface.go │ │ │ │ │ │ │ │ │ ├── pkcs11_linux.go │ │ │ │ │ │ │ │ │ └── yubikeystore.go │ │ │ │ │ │ │ ├── trustpinning │ │ │ │ │ │ │ │ ├── certs.go │ │ │ │ │ │ │ │ └── trustpin.go │ │ │ │ │ │ │ └── tuf │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── builder.go │ │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ │ ├── keys.go │ │ │ │ │ │ │ │ ├── roles.go │ │ │ │ │ │ │ │ ├── root.go │ │ │ │ │ │ │ │ ├── serializer.go │ │ │ │ │ │ │ │ ├── snapshot.go │ │ │ │ │ │ │ │ ├── targets.go │ │ │ │ │ │ │ │ ├── timestamp.go │ │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ │ │ ├── signed │ │ │ │ │ │ │ │ ├── ed25519.go │ │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ │ ├── sign.go │ │ │ │ │ │ │ │ ├── verifiers.go │ │ │ │ │ │ │ │ └── verify.go │ │ │ │ │ │ │ │ ├── tuf.go │ │ │ │ │ │ │ │ ├── utils │ │ │ │ │ │ │ │ ├── role_sort.go │ │ │ │ │ │ │ │ ├── stack.go │ │ │ │ │ │ │ │ ├── utils.go │ │ │ │ │ │ │ │ └── x509.go │ │ │ │ │ │ │ │ └── validation │ │ │ │ │ │ │ │ └── errors.go │ │ │ │ │ │ └── swarmkit │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── agent │ │ │ │ │ │ │ ├── agent.go │ │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ ├── exec │ │ │ │ │ │ │ │ ├── controller.go │ │ │ │ │ │ │ │ ├── controller_test.mock.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 │ │ │ │ │ │ │ ├── dispatcher.pb.go │ │ │ │ │ │ │ ├── dispatcher.proto │ │ │ │ │ │ │ ├── equality │ │ │ │ │ │ │ │ └── equality.go │ │ │ │ │ │ │ ├── gen.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 │ │ │ │ │ │ │ ├── types.pb.go │ │ │ │ │ │ │ └── types.proto │ │ │ │ │ │ │ ├── ca │ │ │ │ │ │ │ ├── auth.go │ │ │ │ │ │ │ ├── certificates.go │ │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ │ ├── external.go │ │ │ │ │ │ │ ├── forward.go │ │ │ │ │ │ │ ├── keyreadwriter.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 │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── network.go │ │ │ │ │ │ │ │ └── networkallocator │ │ │ │ │ │ │ │ │ ├── drivers_darwin.go │ │ │ │ │ │ │ │ │ ├── drivers_ipam.go │ │ │ │ │ │ │ │ │ ├── drivers_network.go │ │ │ │ │ │ │ │ │ ├── drivers_unsupported.go │ │ │ │ │ │ │ │ │ ├── networkallocator.go │ │ │ │ │ │ │ │ │ └── portallocator.go │ │ │ │ │ │ │ ├── constraint │ │ │ │ │ │ │ │ └── constraint.go │ │ │ │ │ │ │ ├── controlapi │ │ │ │ │ │ │ │ ├── cluster.go │ │ │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ │ │ ├── network.go │ │ │ │ │ │ │ │ ├── node.go │ │ │ │ │ │ │ │ ├── secret.go │ │ │ │ │ │ │ │ ├── server.go │ │ │ │ │ │ │ │ ├── service.go │ │ │ │ │ │ │ │ └── task.go │ │ │ │ │ │ │ ├── deks.go │ │ │ │ │ │ │ ├── dirty.go │ │ │ │ │ │ │ ├── dispatcher │ │ │ │ │ │ │ │ ├── dispatcher.go │ │ │ │ │ │ │ │ ├── heartbeat │ │ │ │ │ │ │ │ │ └── heartbeat.go │ │ │ │ │ │ │ │ ├── nodes.go │ │ │ │ │ │ │ │ └── period.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── encryption │ │ │ │ │ │ │ │ ├── encryption.go │ │ │ │ │ │ │ │ └── nacl.go │ │ │ │ │ │ │ ├── health │ │ │ │ │ │ │ │ └── health.go │ │ │ │ │ │ │ ├── keymanager │ │ │ │ │ │ │ │ └── keymanager.go │ │ │ │ │ │ │ ├── logbroker │ │ │ │ │ │ │ │ ├── broker.go │ │ │ │ │ │ │ │ └── subscription.go │ │ │ │ │ │ │ ├── manager.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 │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ │ ├── memory.go │ │ │ │ │ │ │ │ ├── networks.go │ │ │ │ │ │ │ │ ├── nodes.go │ │ │ │ │ │ │ │ ├── object.go │ │ │ │ │ │ │ │ ├── secrets.go │ │ │ │ │ │ │ │ ├── services.go │ │ │ │ │ │ │ │ └── tasks.go │ │ │ │ │ │ │ │ └── watch.go │ │ │ │ │ │ │ ├── node │ │ │ │ │ │ │ └── node.go │ │ │ │ │ │ │ ├── protobuf │ │ │ │ │ │ │ ├── plugin │ │ │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ │ │ ├── plugin.pb.go │ │ │ │ │ │ │ │ └── plugin.proto │ │ │ │ │ │ │ └── ptypes │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ └── timestamp.go │ │ │ │ │ │ │ ├── remotes │ │ │ │ │ │ │ └── remotes.go │ │ │ │ │ │ │ ├── template │ │ │ │ │ │ │ ├── context.go │ │ │ │ │ │ │ ├── expand.go │ │ │ │ │ │ │ └── template.go │ │ │ │ │ │ │ ├── watch │ │ │ │ │ │ │ └── watch.go │ │ │ │ │ │ │ └── xnet │ │ │ │ │ │ │ ├── xnet_unix.go │ │ │ │ │ │ │ └── xnet_windows.go │ │ │ │ │ ├── fluent │ │ │ │ │ │ └── fluent-logger-golang │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── fluent │ │ │ │ │ │ │ ├── fluent.go │ │ │ │ │ │ │ ├── proto.go │ │ │ │ │ │ │ ├── proto_gen.go │ │ │ │ │ │ │ └── version.go │ │ │ │ │ ├── flynn-archive │ │ │ │ │ │ └── go-shlex │ │ │ │ │ │ │ ├── COPYING │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── shlex.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 │ │ │ │ │ │ │ ├── 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_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.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 │ │ │ │ │ │ ├── mock │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── gomock │ │ │ │ │ │ │ │ ├── call.go │ │ │ │ │ │ │ │ ├── callset.go │ │ │ │ │ │ │ │ ├── controller.go │ │ │ │ │ │ │ │ └── matchers.go │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── golang-lru │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── simplelru │ │ │ │ │ │ │ │ └── lru.go │ │ │ │ │ │ ├── memberlist │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── alive_delegate.go │ │ │ │ │ │ │ ├── broadcast.go │ │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ │ ├── conflict_delegate.go │ │ │ │ │ │ │ ├── delegate.go │ │ │ │ │ │ │ ├── event_delegate.go │ │ │ │ │ │ │ ├── keyring.go │ │ │ │ │ │ │ ├── logging.go │ │ │ │ │ │ │ ├── memberlist.go │ │ │ │ │ │ │ ├── merge_delegate.go │ │ │ │ │ │ │ ├── net.go │ │ │ │ │ │ │ ├── ping_delegate.go │ │ │ │ │ │ │ ├── queue.go │ │ │ │ │ │ │ ├── security.go │ │ │ │ │ │ │ ├── state.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 │ │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ │ ├── types_freebsd.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 │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ ├── types_generate.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 │ │ │ │ │ │ └── pkcs11 │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── const.go │ │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ │ ├── pkcs11.go │ │ │ │ │ │ │ ├── pkcs11.h │ │ │ │ │ │ │ ├── pkcs11f.h │ │ │ │ │ │ │ ├── pkcs11t.h │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── mistifyio │ │ │ │ │ │ └── go-zfs │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ │ ├── utils.go │ │ │ │ │ │ │ ├── utils_notsolaris.go │ │ │ │ │ │ │ ├── utils_solaris.go │ │ │ │ │ │ │ ├── zfs.go │ │ │ │ │ │ │ └── zpool.go │ │ │ │ │ ├── mitchellh │ │ │ │ │ │ └── mapstructure │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── decode_hooks.go │ │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ │ └── mapstructure.go │ │ │ │ │ ├── opencontainers │ │ │ │ │ │ ├── go-digest │ │ │ │ │ │ │ ├── LICENSE.code │ │ │ │ │ │ │ ├── LICENSE.docs │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── algorithm.go │ │ │ │ │ │ │ ├── digest.go │ │ │ │ │ │ │ ├── digester.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── verifiers.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_unix.go │ │ │ │ │ │ │ │ ├── cgroup_unsupported.go │ │ │ │ │ │ │ │ ├── cgroup_windows.go │ │ │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ │ │ ├── config_unix.go │ │ │ │ │ │ │ │ ├── device.go │ │ │ │ │ │ │ │ ├── device_defaults.go │ │ │ │ │ │ │ │ ├── hugepage_limit.go │ │ │ │ │ │ │ │ ├── interface_priority_map.go │ │ │ │ │ │ │ │ ├── mount.go │ │ │ │ │ │ │ │ ├── namespaces.go │ │ │ │ │ │ │ │ ├── namespaces_syscall.go │ │ │ │ │ │ │ │ ├── namespaces_syscall_unsupported.go │ │ │ │ │ │ │ │ ├── namespaces_unix.go │ │ │ │ │ │ │ │ ├── namespaces_unsupported.go │ │ │ │ │ │ │ │ └── network.go │ │ │ │ │ │ │ │ ├── devices │ │ │ │ │ │ │ │ ├── devices_unix.go │ │ │ │ │ │ │ │ ├── devices_unsupported.go │ │ │ │ │ │ │ │ └── number.go │ │ │ │ │ │ │ │ ├── label │ │ │ │ │ │ │ │ ├── label.go │ │ │ │ │ │ │ │ └── label_selinux.go │ │ │ │ │ │ │ │ ├── nsenter │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── namespace.h │ │ │ │ │ │ │ │ ├── nsenter.go │ │ │ │ │ │ │ │ ├── nsenter_gccgo.go │ │ │ │ │ │ │ │ ├── nsenter_unsupported.go │ │ │ │ │ │ │ │ └── nsexec.c │ │ │ │ │ │ │ │ ├── selinux │ │ │ │ │ │ │ │ └── selinux.go │ │ │ │ │ │ │ │ ├── system │ │ │ │ │ │ │ │ ├── linux.go │ │ │ │ │ │ │ │ ├── proc.go │ │ │ │ │ │ │ │ ├── setns_linux.go │ │ │ │ │ │ │ │ ├── syscall_linux_386.go │ │ │ │ │ │ │ │ ├── syscall_linux_64.go │ │ │ │ │ │ │ │ ├── syscall_linux_arm.go │ │ │ │ │ │ │ │ ├── sysconfig.go │ │ │ │ │ │ │ │ ├── sysconfig_notcgo.go │ │ │ │ │ │ │ │ ├── unsupported.go │ │ │ │ │ │ │ │ └── xattrs_linux.go │ │ │ │ │ │ │ │ └── user │ │ │ │ │ │ │ │ ├── lookup.go │ │ │ │ │ │ │ │ ├── lookup_unix.go │ │ │ │ │ │ │ │ ├── lookup_unsupported.go │ │ │ │ │ │ │ │ └── user.go │ │ │ │ │ │ └── runtime-spec │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── specs-go │ │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ │ ├── state.go │ │ │ │ │ │ │ └── version.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 │ │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── seccomp │ │ │ │ │ │ └── libseccomp-golang │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── seccomp.go │ │ │ │ │ │ │ └── seccomp_internal.go │ │ │ │ │ ├── spf13 │ │ │ │ │ │ ├── cobra │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── args.go │ │ │ │ │ │ │ ├── bash_completions.go │ │ │ │ │ │ │ ├── cobra.go │ │ │ │ │ │ │ ├── command.go │ │ │ │ │ │ │ ├── command_notwin.go │ │ │ │ │ │ │ ├── command_win.go │ │ │ │ │ │ │ └── doc │ │ │ │ │ │ │ │ ├── man_docs.go │ │ │ │ │ │ │ │ ├── md_docs.go │ │ │ │ │ │ │ │ └── util.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 │ │ │ │ │ ├── stretchr │ │ │ │ │ │ └── testify │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── assert │ │ │ │ │ │ │ ├── assertion_forward.go │ │ │ │ │ │ │ ├── assertions.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ ├── forward_assertions.go │ │ │ │ │ │ │ └── http_assertions.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 │ │ │ │ │ │ │ ├── circular.go │ │ │ │ │ │ │ ├── defs.go │ │ │ │ │ │ │ ├── edit.go │ │ │ │ │ │ │ ├── elsize.go │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ ├── extension.go │ │ │ │ │ │ │ ├── integers.go │ │ │ │ │ │ │ ├── json.go │ │ │ │ │ │ │ ├── json_bytes.go │ │ │ │ │ │ │ ├── number.go │ │ │ │ │ │ │ ├── number_appengine.go │ │ │ │ │ │ │ ├── number_unsafe.go │ │ │ │ │ │ │ ├── read.go │ │ │ │ │ │ │ ├── read_bytes.go │ │ │ │ │ │ │ ├── size.go │ │ │ │ │ │ │ ├── write.go │ │ │ │ │ │ │ └── write_bytes.go │ │ │ │ │ ├── tonistiigi │ │ │ │ │ │ └── fifo │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── fifo.go │ │ │ │ │ │ │ ├── handle_linux.go │ │ │ │ │ │ │ ├── handle_nolinux.go │ │ │ │ │ │ │ └── readme.md │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ ├── class.go │ │ │ │ │ │ │ ├── class_linux.go │ │ │ │ │ │ │ ├── filter.go │ │ │ │ │ │ │ ├── filter_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 │ │ │ │ │ │ │ │ ├── link_linux.go │ │ │ │ │ │ │ │ ├── nl_linux.go │ │ │ │ │ │ │ │ ├── route_linux.go │ │ │ │ │ │ │ │ ├── syscall.go │ │ │ │ │ │ │ │ ├── tc_linux.go │ │ │ │ │ │ │ │ ├── xfrm_linux.go │ │ │ │ │ │ │ │ ├── xfrm_policy_linux.go │ │ │ │ │ │ │ │ └── xfrm_state_linux.go │ │ │ │ │ │ │ ├── protinfo.go │ │ │ │ │ │ │ ├── protinfo_linux.go │ │ │ │ │ │ │ ├── qdisc.go │ │ │ │ │ │ │ ├── qdisc_linux.go │ │ │ │ │ │ │ ├── route.go │ │ │ │ │ │ │ ├── route_linux.go │ │ │ │ │ │ │ ├── route_unspecified.go │ │ │ │ │ │ │ ├── rule.go │ │ │ │ │ │ │ ├── rule_linux.go │ │ │ │ │ │ │ ├── xfrm.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 │ │ │ │ │ └── xeipuuv │ │ │ │ │ │ ├── gojsonpointer │ │ │ │ │ │ ├── LICENSE-APACHE-2.0.txt │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── pointer.go │ │ │ │ │ │ ├── gojsonreference │ │ │ │ │ │ ├── LICENSE-APACHE-2.0.txt │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── reference.go │ │ │ │ │ │ └── gojsonschema │ │ │ │ │ │ ├── LICENSE-APACHE-2.0.txt │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── format_checkers.go │ │ │ │ │ │ ├── internalLog.go │ │ │ │ │ │ ├── jsonContext.go │ │ │ │ │ │ ├── jsonLoader.go │ │ │ │ │ │ ├── locales.go │ │ │ │ │ │ ├── result.go │ │ │ │ │ │ ├── schema.go │ │ │ │ │ │ ├── schemaPool.go │ │ │ │ │ │ ├── schemaReferencePool.go │ │ │ │ │ │ ├── schemaType.go │ │ │ │ │ │ ├── subSchema.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── utils.go │ │ │ │ │ │ └── validation.go │ │ │ │ ├── golang.org │ │ │ │ │ └── x │ │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── PATENTS │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ ├── const_amd64.s │ │ │ │ │ │ │ ├── poly1305.go │ │ │ │ │ │ │ ├── poly1305_amd64.s │ │ │ │ │ │ │ ├── poly1305_arm.s │ │ │ │ │ │ │ ├── sum_amd64.go │ │ │ │ │ │ │ ├── sum_arm.go │ │ │ │ │ │ │ └── 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_windows.go │ │ │ │ │ │ ├── net │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── PATENTS │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── context │ │ │ │ │ │ │ ├── context.go │ │ │ │ │ │ │ ├── ctxhttp │ │ │ │ │ │ │ │ ├── ctxhttp.go │ │ │ │ │ │ │ │ └── ctxhttp_pre17.go │ │ │ │ │ │ │ ├── go17.go │ │ │ │ │ │ │ └── pre_go17.go │ │ │ │ │ │ ├── http2 │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── client_conn_pool.go │ │ │ │ │ │ │ ├── configure_transport.go │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ ├── fixed_buffer.go │ │ │ │ │ │ │ ├── flow.go │ │ │ │ │ │ │ ├── frame.go │ │ │ │ │ │ │ ├── go16.go │ │ │ │ │ │ │ ├── go17.go │ │ │ │ │ │ │ ├── go17_not18.go │ │ │ │ │ │ │ ├── go18.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 │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ └── 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 │ │ │ │ │ │ ├── sys │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── PATENTS │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── unix │ │ │ │ │ │ │ ├── asm.s │ │ │ │ │ │ │ ├── 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_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_solaris_amd64.s │ │ │ │ │ │ │ ├── bluetooth_linux.go │ │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ │ ├── env_unix.go │ │ │ │ │ │ │ ├── env_unset.go │ │ │ │ │ │ │ ├── flock.go │ │ │ │ │ │ │ ├── flock_linux_32bit.go │ │ │ │ │ │ │ ├── gccgo.go │ │ │ │ │ │ │ ├── gccgo_c.c │ │ │ │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ │ │ │ ├── mkpost.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_arm.go │ │ │ │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ │ │ │ ├── syscall_linux_mips64x.go │ │ │ │ │ │ │ ├── syscall_linux_ppc64x.go │ │ │ │ │ │ │ ├── syscall_linux_s390x.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_solaris.go │ │ │ │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ │ │ ├── types_darwin.go │ │ │ │ │ │ │ ├── types_dragonfly.go │ │ │ │ │ │ │ ├── types_freebsd.go │ │ │ │ │ │ │ ├── types_linux.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_mips64.go │ │ │ │ │ │ │ ├── zerrors_linux_mips64le.go │ │ │ │ │ │ │ ├── zerrors_linux_ppc64.go │ │ │ │ │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ │ │ │ │ ├── zerrors_linux_s390x.go │ │ │ │ │ │ │ ├── zerrors_netbsd_386.go │ │ │ │ │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ │ │ │ │ ├── zerrors_netbsd_arm.go │ │ │ │ │ │ │ ├── zerrors_openbsd_386.go │ │ │ │ │ │ │ ├── zerrors_openbsd_amd64.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_mips64.go │ │ │ │ │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ │ │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ │ │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ │ │ │ │ ├── zsyscall_linux_s390x.go │ │ │ │ │ │ │ ├── zsyscall_netbsd_386.go │ │ │ │ │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ │ │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ │ │ │ │ ├── zsyscall_openbsd_386.go │ │ │ │ │ │ │ ├── zsyscall_openbsd_amd64.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_mips64.go │ │ │ │ │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ │ │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ │ │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ │ │ │ │ ├── zsysnum_linux_s390x.go │ │ │ │ │ │ │ ├── zsysnum_netbsd_386.go │ │ │ │ │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ │ │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ │ │ │ │ ├── zsysnum_openbsd_386.go │ │ │ │ │ │ │ ├── zsysnum_openbsd_amd64.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_mips64.go │ │ │ │ │ │ │ ├── ztypes_linux_mips64le.go │ │ │ │ │ │ │ ├── ztypes_linux_ppc64.go │ │ │ │ │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ │ │ │ │ ├── ztypes_linux_s390x.go │ │ │ │ │ │ │ ├── ztypes_netbsd_386.go │ │ │ │ │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ │ │ │ │ ├── ztypes_netbsd_arm.go │ │ │ │ │ │ │ ├── ztypes_openbsd_386.go │ │ │ │ │ │ │ ├── ztypes_openbsd_amd64.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 │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ ├── zsyscall_windows.go │ │ │ │ │ │ │ ├── ztypes_windows.go │ │ │ │ │ │ │ ├── ztypes_windows_386.go │ │ │ │ │ │ │ └── ztypes_windows_amd64.go │ │ │ │ │ │ ├── text │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── PATENTS │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── gen │ │ │ │ │ │ │ │ ├── code.go │ │ │ │ │ │ │ │ └── gen.go │ │ │ │ │ │ │ ├── triegen │ │ │ │ │ │ │ │ ├── compact.go │ │ │ │ │ │ │ │ ├── print.go │ │ │ │ │ │ │ │ └── triegen.go │ │ │ │ │ │ │ └── ucd │ │ │ │ │ │ │ │ └── ucd.go │ │ │ │ │ │ ├── secure │ │ │ │ │ │ │ └── bidirule │ │ │ │ │ │ │ │ └── bidirule.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 │ │ │ │ │ │ │ ├── cldr │ │ │ │ │ │ │ ├── base.go │ │ │ │ │ │ │ ├── cldr.go │ │ │ │ │ │ │ ├── collate.go │ │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ │ ├── makexml.go │ │ │ │ │ │ │ ├── resolve.go │ │ │ │ │ │ │ ├── slice.go │ │ │ │ │ │ │ └── xml.go │ │ │ │ │ │ │ ├── norm │ │ │ │ │ │ │ ├── composition.go │ │ │ │ │ │ │ ├── forminfo.go │ │ │ │ │ │ │ ├── input.go │ │ │ │ │ │ │ ├── iter.go │ │ │ │ │ │ │ ├── maketables.go │ │ │ │ │ │ │ ├── normalize.go │ │ │ │ │ │ │ ├── readwriter.go │ │ │ │ │ │ │ ├── tables.go │ │ │ │ │ │ │ ├── transform.go │ │ │ │ │ │ │ ├── trie.go │ │ │ │ │ │ │ └── triegen.go │ │ │ │ │ │ │ └── rangetable │ │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ │ ├── merge.go │ │ │ │ │ │ │ ├── rangetable.go │ │ │ │ │ │ │ └── tables.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 │ │ │ │ │ │ │ ├── label │ │ │ │ │ │ │ │ └── label.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 │ │ │ │ │ │ ├── codes │ │ │ │ │ │ ├── code_string.go │ │ │ │ │ │ └── codes.go │ │ │ │ │ │ ├── credentials │ │ │ │ │ │ ├── credentials.go │ │ │ │ │ │ ├── credentials_util_go17.go │ │ │ │ │ │ ├── credentials_util_pre_go17.go │ │ │ │ │ │ └── oauth │ │ │ │ │ │ │ └── oauth.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── grpclog │ │ │ │ │ │ └── logger.go │ │ │ │ │ │ ├── health │ │ │ │ │ │ └── grpc_health_v1 │ │ │ │ │ │ │ ├── health.pb.go │ │ │ │ │ │ │ └── health.proto │ │ │ │ │ │ ├── interceptor.go │ │ │ │ │ │ ├── internal │ │ │ │ │ │ └── internal.go │ │ │ │ │ │ ├── metadata │ │ │ │ │ │ └── metadata.go │ │ │ │ │ │ ├── naming │ │ │ │ │ │ └── naming.go │ │ │ │ │ │ ├── peer │ │ │ │ │ │ └── peer.go │ │ │ │ │ │ ├── rpc_util.go │ │ │ │ │ │ ├── server.go │ │ │ │ │ │ ├── stream.go │ │ │ │ │ │ ├── trace.go │ │ │ │ │ │ └── transport │ │ │ │ │ │ ├── control.go │ │ │ │ │ │ ├── go16.go │ │ │ │ │ │ ├── go17.go │ │ │ │ │ │ ├── handler_server.go │ │ │ │ │ │ ├── http2_client.go │ │ │ │ │ │ ├── http2_server.go │ │ │ │ │ │ ├── http_util.go │ │ │ │ │ │ ├── pre_go16.go │ │ │ │ │ │ └── transport.go │ │ │ │ └── gopkg.in │ │ │ │ │ └── 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 │ │ │ └── volume │ │ │ │ ├── drivers │ │ │ │ ├── adapter.go │ │ │ │ ├── extpoint.go │ │ │ │ ├── extpoint_test.go │ │ │ │ ├── proxy.go │ │ │ │ └── proxy_test.go │ │ │ │ ├── local │ │ │ │ ├── local.go │ │ │ │ ├── local_test.go │ │ │ │ ├── local_unix.go │ │ │ │ └── local_windows.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_test_unix.go │ │ │ │ ├── validate_test_windows.go │ │ │ │ ├── volume.go │ │ │ │ ├── volume_copy.go │ │ │ │ ├── volume_copy_unix.go │ │ │ │ ├── volume_copy_windows.go │ │ │ │ ├── volume_linux.go │ │ │ │ ├── volume_linux_test.go │ │ │ │ ├── volume_propagation_linux.go │ │ │ │ ├── volume_propagation_linux_test.go │ │ │ │ ├── volume_propagation_unsupported.go │ │ │ │ ├── volume_test.go │ │ │ │ ├── volume_unix.go │ │ │ │ ├── volume_unsupported.go │ │ │ │ └── volume_windows.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 │ │ │ │ ├── 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 │ │ │ │ ├── config.go │ │ │ │ ├── config_client_ciphers.go │ │ │ │ ├── config_legacy_client_ciphers.go │ │ │ │ └── config_test.go │ │ ├── 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 │ │ ├── libkv │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.code │ │ │ ├── LICENSE.docs │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── docs │ │ │ │ ├── compatibility.md │ │ │ │ └── examples.md │ │ │ ├── libkv.go │ │ │ ├── libkv_test.go │ │ │ ├── script │ │ │ │ ├── .validate │ │ │ │ ├── coverage │ │ │ │ ├── travis_consul.sh │ │ │ │ ├── travis_etcd.sh │ │ │ │ ├── travis_zk.sh │ │ │ │ └── validate-gofmt │ │ │ ├── store │ │ │ │ ├── boltdb │ │ │ │ │ ├── boltdb.go │ │ │ │ │ └── boltdb_test.go │ │ │ │ ├── consul │ │ │ │ │ ├── consul.go │ │ │ │ │ └── consul_test.go │ │ │ │ ├── etcd │ │ │ │ │ ├── etcd.go │ │ │ │ │ └── etcd_test.go │ │ │ │ ├── helpers.go │ │ │ │ ├── mock │ │ │ │ │ └── mock.go │ │ │ │ ├── store.go │ │ │ │ └── zookeeper │ │ │ │ │ ├── zookeeper.go │ │ │ │ │ └── zookeeper_test.go │ │ │ └── testutils │ │ │ │ └── utils.go │ │ └── libtrust │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── certificates.go │ │ │ ├── certificates_test.go │ │ │ ├── doc.go │ │ │ ├── ec_key.go │ │ │ ├── ec_key_test.go │ │ │ ├── filter.go │ │ │ ├── filter_test.go │ │ │ ├── hash.go │ │ │ ├── jsonsign.go │ │ │ ├── jsonsign_test.go │ │ │ ├── key.go │ │ │ ├── key_files.go │ │ │ ├── key_files_test.go │ │ │ ├── key_manager.go │ │ │ ├── key_test.go │ │ │ ├── rsa_key.go │ │ │ ├── rsa_key_test.go │ │ │ ├── testutil │ │ │ └── certificates.go │ │ │ ├── tlsdemo │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── gencert.go │ │ │ ├── genkeys.go │ │ │ └── server.go │ │ │ ├── trustgraph │ │ │ ├── graph.go │ │ │ ├── memory_graph.go │ │ │ ├── memory_graph_test.go │ │ │ ├── statement.go │ │ │ └── statement_test.go │ │ │ ├── util.go │ │ │ └── util_test.go │ ├── ehazlett │ │ └── ttlcache │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── get.go │ │ │ ├── reap.go │ │ │ ├── set.go │ │ │ ├── ttlcache.go │ │ │ └── ttlcache_test.go │ ├── golang │ │ └── protobuf │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── Make.protobuf │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── jsonpb │ │ │ ├── jsonpb.go │ │ │ ├── jsonpb_test.go │ │ │ └── jsonpb_test_proto │ │ │ │ ├── Makefile │ │ │ │ ├── more_test_objects.pb.go │ │ │ │ ├── more_test_objects.proto │ │ │ │ ├── test_objects.pb.go │ │ │ │ └── test_objects.proto │ │ │ ├── proto │ │ │ ├── Makefile │ │ │ ├── all_test.go │ │ │ ├── any_test.go │ │ │ ├── clone.go │ │ │ ├── clone_test.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── equal.go │ │ │ ├── equal_test.go │ │ │ ├── extensions.go │ │ │ ├── extensions_test.go │ │ │ ├── lib.go │ │ │ ├── message_set.go │ │ │ ├── message_set_test.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── properties.go │ │ │ ├── proto3_proto │ │ │ │ ├── proto3.pb.go │ │ │ │ └── proto3.proto │ │ │ ├── proto3_test.go │ │ │ ├── size2_test.go │ │ │ ├── size_test.go │ │ │ ├── testdata │ │ │ │ ├── Makefile │ │ │ │ ├── golden_test.go │ │ │ │ ├── test.pb.go │ │ │ │ └── test.proto │ │ │ ├── text.go │ │ │ ├── text_parser.go │ │ │ ├── text_parser_test.go │ │ │ └── text_test.go │ │ │ ├── protoc-gen-go │ │ │ ├── Makefile │ │ │ ├── descriptor │ │ │ │ ├── Makefile │ │ │ │ └── descriptor.pb.go │ │ │ ├── doc.go │ │ │ ├── generator │ │ │ │ ├── Makefile │ │ │ │ ├── generator.go │ │ │ │ └── name_test.go │ │ │ ├── grpc │ │ │ │ └── grpc.go │ │ │ ├── link_grpc.go │ │ │ ├── main.go │ │ │ ├── plugin │ │ │ │ ├── Makefile │ │ │ │ ├── plugin.pb.go │ │ │ │ └── plugin.pb.golden │ │ │ └── testdata │ │ │ │ ├── Makefile │ │ │ │ ├── extension_base.proto │ │ │ │ ├── extension_extra.proto │ │ │ │ ├── extension_test.go │ │ │ │ ├── extension_user.proto │ │ │ │ ├── grpc.proto │ │ │ │ ├── imp.pb.go.golden │ │ │ │ ├── imp.proto │ │ │ │ ├── imp2.proto │ │ │ │ ├── imp3.proto │ │ │ │ ├── main_test.go │ │ │ │ ├── multi │ │ │ │ ├── multi1.proto │ │ │ │ ├── multi2.proto │ │ │ │ └── multi3.proto │ │ │ │ ├── my_test │ │ │ │ ├── test.pb.go │ │ │ │ ├── test.pb.go.golden │ │ │ │ └── test.proto │ │ │ │ └── proto3.proto │ │ │ └── ptypes │ │ │ ├── any.go │ │ │ ├── any │ │ │ ├── any.pb.go │ │ │ └── any.proto │ │ │ ├── any_test.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── duration │ │ │ ├── duration.pb.go │ │ │ └── duration.proto │ │ │ ├── duration_test.go │ │ │ ├── empty │ │ │ ├── empty.pb.go │ │ │ └── empty.proto │ │ │ ├── regen.sh │ │ │ ├── struct │ │ │ ├── struct.pb.go │ │ │ └── struct.proto │ │ │ ├── timestamp.go │ │ │ ├── timestamp │ │ │ ├── timestamp.pb.go │ │ │ └── timestamp.proto │ │ │ ├── timestamp_test.go │ │ │ └── wrappers │ │ │ ├── wrappers.pb.go │ │ │ └── wrappers.proto │ ├── hashicorp │ │ ├── consul │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── GNUmakefile │ │ │ ├── Godeps │ │ │ │ ├── Godeps.json │ │ │ │ └── Readme │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── acl │ │ │ │ ├── acl.go │ │ │ │ ├── acl_test.go │ │ │ │ ├── cache.go │ │ │ │ ├── cache_test.go │ │ │ │ ├── policy.go │ │ │ │ └── policy_test.go │ │ │ ├── api │ │ │ │ ├── README.md │ │ │ │ ├── acl.go │ │ │ │ ├── acl_test.go │ │ │ │ ├── agent.go │ │ │ │ ├── agent_test.go │ │ │ │ ├── api.go │ │ │ │ ├── api_test.go │ │ │ │ ├── catalog.go │ │ │ │ ├── catalog_test.go │ │ │ │ ├── coordinate.go │ │ │ │ ├── coordinate_test.go │ │ │ │ ├── event.go │ │ │ │ ├── event_test.go │ │ │ │ ├── health.go │ │ │ │ ├── health_test.go │ │ │ │ ├── kv.go │ │ │ │ ├── kv_test.go │ │ │ │ ├── lock.go │ │ │ │ ├── lock_test.go │ │ │ │ ├── prepared_query.go │ │ │ │ ├── prepared_query_test.go │ │ │ │ ├── raw.go │ │ │ │ ├── semaphore.go │ │ │ │ ├── semaphore_test.go │ │ │ │ ├── session.go │ │ │ │ ├── session_test.go │ │ │ │ ├── status.go │ │ │ │ └── status_test.go │ │ │ ├── bench │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── bench-aws.json │ │ │ │ ├── bench.json │ │ │ │ ├── conf │ │ │ │ │ ├── bootstrap.json │ │ │ │ │ ├── common-aws.conf │ │ │ │ │ ├── common.json │ │ │ │ │ ├── server.json │ │ │ │ │ └── upstart.conf │ │ │ │ ├── results-0.2.md │ │ │ │ └── results-0.3.md │ │ │ ├── command │ │ │ │ ├── agent │ │ │ │ │ ├── acl_endpoint.go │ │ │ │ │ ├── acl_endpoint_test.go │ │ │ │ │ ├── agent.go │ │ │ │ │ ├── agent_endpoint.go │ │ │ │ │ ├── agent_endpoint_test.go │ │ │ │ │ ├── agent_test.go │ │ │ │ │ ├── bindata_assetfs.go │ │ │ │ │ ├── catalog_endpoint.go │ │ │ │ │ ├── catalog_endpoint_test.go │ │ │ │ │ ├── check.go │ │ │ │ │ ├── check_test.go │ │ │ │ │ ├── command.go │ │ │ │ │ ├── command_test.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── config_test.go │ │ │ │ │ ├── coordinate_endpoint.go │ │ │ │ │ ├── coordinate_endpoint_test.go │ │ │ │ │ ├── dns.go │ │ │ │ │ ├── dns_test.go │ │ │ │ │ ├── event_endpoint.go │ │ │ │ │ ├── event_endpoint_test.go │ │ │ │ │ ├── flag_slice_value.go │ │ │ │ │ ├── flag_slice_value_test.go │ │ │ │ │ ├── gated_writer.go │ │ │ │ │ ├── gated_writer_test.go │ │ │ │ │ ├── health_endpoint.go │ │ │ │ │ ├── health_endpoint_test.go │ │ │ │ │ ├── http.go │ │ │ │ │ ├── http_api.md │ │ │ │ │ ├── http_test.go │ │ │ │ │ ├── keyring.go │ │ │ │ │ ├── keyring_test.go │ │ │ │ │ ├── kvs_endpoint.go │ │ │ │ │ ├── kvs_endpoint_test.go │ │ │ │ │ ├── local.go │ │ │ │ │ ├── local_test.go │ │ │ │ │ ├── log_levels.go │ │ │ │ │ ├── log_writer.go │ │ │ │ │ ├── log_writer_test.go │ │ │ │ │ ├── prepared_query_endpoint.go │ │ │ │ │ ├── prepared_query_endpoint_test.go │ │ │ │ │ ├── remote_exec.go │ │ │ │ │ ├── remote_exec_test.go │ │ │ │ │ ├── rpc.go │ │ │ │ │ ├── rpc_client.go │ │ │ │ │ ├── rpc_client_test.go │ │ │ │ │ ├── rpc_log_stream.go │ │ │ │ │ ├── rpc_log_stream_test.go │ │ │ │ │ ├── session_endpoint.go │ │ │ │ │ ├── session_endpoint_test.go │ │ │ │ │ ├── status_endpoint.go │ │ │ │ │ ├── status_endpoint_test.go │ │ │ │ │ ├── structs.go │ │ │ │ │ ├── structs_test.go │ │ │ │ │ ├── syslog.go │ │ │ │ │ ├── syslog_test.go │ │ │ │ │ ├── txn_endpoint.go │ │ │ │ │ ├── txn_endpoint_test.go │ │ │ │ │ ├── ui_endpoint.go │ │ │ │ │ ├── ui_endpoint_test.go │ │ │ │ │ ├── user_event.go │ │ │ │ │ ├── user_event_test.go │ │ │ │ │ ├── util.go │ │ │ │ │ ├── util_test.go │ │ │ │ │ ├── watch_handler.go │ │ │ │ │ └── watch_handler_test.go │ │ │ │ ├── configtest.go │ │ │ │ ├── configtest_test.go │ │ │ │ ├── event.go │ │ │ │ ├── event_test.go │ │ │ │ ├── exec.go │ │ │ │ ├── exec_test.go │ │ │ │ ├── force_leave.go │ │ │ │ ├── force_leave_test.go │ │ │ │ ├── info.go │ │ │ │ ├── info_test.go │ │ │ │ ├── join.go │ │ │ │ ├── join_test.go │ │ │ │ ├── keygen.go │ │ │ │ ├── keygen_test.go │ │ │ │ ├── keyring.go │ │ │ │ ├── keyring_test.go │ │ │ │ ├── leave.go │ │ │ │ ├── leave_test.go │ │ │ │ ├── lock.go │ │ │ │ ├── lock_test.go │ │ │ │ ├── maint.go │ │ │ │ ├── maint_test.go │ │ │ │ ├── members.go │ │ │ │ ├── members_test.go │ │ │ │ ├── monitor.go │ │ │ │ ├── reload.go │ │ │ │ ├── reload_test.go │ │ │ │ ├── rpc.go │ │ │ │ ├── rpc_test.go │ │ │ │ ├── rtt.go │ │ │ │ ├── rtt_test.go │ │ │ │ ├── util_test.go │ │ │ │ ├── util_unix.go │ │ │ │ ├── util_windows.go │ │ │ │ ├── version.go │ │ │ │ ├── version_test.go │ │ │ │ ├── watch.go │ │ │ │ └── watch_test.go │ │ │ ├── commands.go │ │ │ ├── consul │ │ │ │ ├── acl.go │ │ │ │ ├── acl_endpoint.go │ │ │ │ ├── acl_endpoint_test.go │ │ │ │ ├── acl_test.go │ │ │ │ ├── agent │ │ │ │ │ ├── server.go │ │ │ │ │ ├── server_internal_test.go │ │ │ │ │ └── server_test.go │ │ │ │ ├── catalog_endpoint.go │ │ │ │ ├── catalog_endpoint_test.go │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── config.go │ │ │ │ ├── coordinate_endpoint.go │ │ │ │ ├── coordinate_endpoint_test.go │ │ │ │ ├── endpoints.md │ │ │ │ ├── filter.go │ │ │ │ ├── filter_test.go │ │ │ │ ├── fsm.go │ │ │ │ ├── fsm_test.go │ │ │ │ ├── health_endpoint.go │ │ │ │ ├── health_endpoint_test.go │ │ │ │ ├── internal_endpoint.go │ │ │ │ ├── internal_endpoint_test.go │ │ │ │ ├── issue_test.go │ │ │ │ ├── kvs_endpoint.go │ │ │ │ ├── kvs_endpoint_test.go │ │ │ │ ├── leader.go │ │ │ │ ├── leader_test.go │ │ │ │ ├── merge.go │ │ │ │ ├── pool.go │ │ │ │ ├── prepared_query │ │ │ │ │ ├── template.go │ │ │ │ │ ├── template_test.go │ │ │ │ │ ├── walk.go │ │ │ │ │ └── walk_test.go │ │ │ │ ├── prepared_query_endpoint.go │ │ │ │ ├── prepared_query_endpoint_test.go │ │ │ │ ├── raft_rpc.go │ │ │ │ ├── rpc.go │ │ │ │ ├── rtt.go │ │ │ │ ├── rtt_test.go │ │ │ │ ├── serf.go │ │ │ │ ├── serf_test.go │ │ │ │ ├── server.go │ │ │ │ ├── server_test.go │ │ │ │ ├── servers │ │ │ │ │ ├── manager.go │ │ │ │ │ ├── manager_internal_test.go │ │ │ │ │ └── manager_test.go │ │ │ │ ├── session_endpoint.go │ │ │ │ ├── session_endpoint_test.go │ │ │ │ ├── session_ttl.go │ │ │ │ ├── session_ttl_test.go │ │ │ │ ├── state │ │ │ │ │ ├── delay.go │ │ │ │ │ ├── delay_test.go │ │ │ │ │ ├── graveyard.go │ │ │ │ │ ├── graveyard_test.go │ │ │ │ │ ├── kvs.go │ │ │ │ │ ├── kvs_test.go │ │ │ │ │ ├── notify.go │ │ │ │ │ ├── notify_test.go │ │ │ │ │ ├── prepared_query.go │ │ │ │ │ ├── prepared_query_index.go │ │ │ │ │ ├── prepared_query_index_test.go │ │ │ │ │ ├── prepared_query_test.go │ │ │ │ │ ├── schema.go │ │ │ │ │ ├── schema_test.go │ │ │ │ │ ├── state_store.go │ │ │ │ │ ├── state_store_test.go │ │ │ │ │ ├── tombstone_gc.go │ │ │ │ │ ├── tombstone_gc_test.go │ │ │ │ │ ├── txn.go │ │ │ │ │ ├── txn_test.go │ │ │ │ │ ├── watch.go │ │ │ │ │ └── watch_test.go │ │ │ │ ├── status_endpoint.go │ │ │ │ ├── status_endpoint_test.go │ │ │ │ ├── structs │ │ │ │ │ ├── prepared_query.go │ │ │ │ │ ├── prepared_query_test.go │ │ │ │ │ ├── structs.go │ │ │ │ │ ├── structs_test.go │ │ │ │ │ └── txn.go │ │ │ │ ├── txn_endpoint.go │ │ │ │ ├── txn_endpoint_test.go │ │ │ │ ├── util.go │ │ │ │ └── util_test.go │ │ │ ├── contrib │ │ │ │ └── zsh-completion │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _consul │ │ │ │ │ └── install.sh │ │ │ ├── demo │ │ │ │ └── vagrant-cluster │ │ │ │ │ ├── README.md │ │ │ │ │ └── Vagrantfile │ │ │ ├── lib │ │ │ │ ├── cluster.go │ │ │ │ ├── cluster_test.go │ │ │ │ ├── math.go │ │ │ │ ├── math_test.go │ │ │ │ ├── rand.go │ │ │ │ ├── string.go │ │ │ │ └── string_test.go │ │ │ ├── main.go │ │ │ ├── main_test.go │ │ │ ├── make.bat │ │ │ ├── scripts │ │ │ │ ├── build.sh │ │ │ │ ├── consul-builder │ │ │ │ │ └── Dockerfile │ │ │ │ ├── dist.sh │ │ │ │ ├── dist_build.sh │ │ │ │ ├── fixup_times.sh │ │ │ │ ├── test.sh │ │ │ │ ├── verify_no_uuid.sh │ │ │ │ └── windows │ │ │ │ │ ├── build.bat │ │ │ │ │ └── verify_no_uuid.bat │ │ │ ├── terraform │ │ │ │ ├── README.md │ │ │ │ ├── aws │ │ │ │ │ ├── README.md │ │ │ │ │ ├── consul.tf │ │ │ │ │ ├── outputs.tf │ │ │ │ │ ├── scripts │ │ │ │ │ │ ├── debian_upstart.conf │ │ │ │ │ │ ├── install.sh │ │ │ │ │ │ ├── ip_tables.sh │ │ │ │ │ │ ├── rhel_consul.service │ │ │ │ │ │ ├── rhel_upstart.conf │ │ │ │ │ │ └── service.sh │ │ │ │ │ └── variables.tf │ │ │ │ └── openstack │ │ │ │ │ ├── README.org │ │ │ │ │ ├── consul.tf │ │ │ │ │ ├── outputs.tf │ │ │ │ │ ├── scripts │ │ │ │ │ ├── install.sh │ │ │ │ │ ├── server.sh │ │ │ │ │ ├── service.sh │ │ │ │ │ ├── upstart-join.conf │ │ │ │ │ └── upstart.conf │ │ │ │ │ └── variables.tf │ │ │ ├── test │ │ │ │ ├── ca │ │ │ │ │ ├── certindex │ │ │ │ │ ├── myca.conf │ │ │ │ │ ├── privkey.pem │ │ │ │ │ ├── root.cer │ │ │ │ │ └── serialfile │ │ │ │ ├── hostname │ │ │ │ │ ├── Alice.crt │ │ │ │ │ ├── Alice.key │ │ │ │ │ └── CertAuth.crt │ │ │ │ ├── key │ │ │ │ │ ├── ourdomain.cer │ │ │ │ │ ├── ourdomain.csr │ │ │ │ │ ├── ourdomain.key │ │ │ │ │ ├── ssl-cert-snakeoil.key │ │ │ │ │ └── ssl-cert-snakeoil.pem │ │ │ │ └── notes.txt │ │ │ ├── testutil │ │ │ │ ├── README.md │ │ │ │ ├── server.go │ │ │ │ ├── wait.go │ │ │ │ └── wait_test.go │ │ │ ├── tlsutil │ │ │ │ ├── config.go │ │ │ │ └── config_test.go │ │ │ ├── types │ │ │ │ ├── README.md │ │ │ │ └── checks.go │ │ │ ├── ui │ │ │ │ ├── GNUmakefile │ │ │ │ ├── Gemfile │ │ │ │ ├── Gemfile.lock │ │ │ │ ├── README.md │ │ │ │ ├── development_config.json │ │ │ │ ├── index.html │ │ │ │ ├── javascripts │ │ │ │ │ ├── app │ │ │ │ │ │ ├── controllers.js │ │ │ │ │ │ ├── helpers.js │ │ │ │ │ │ ├── mixins.js │ │ │ │ │ │ ├── models.js │ │ │ │ │ │ ├── router.js │ │ │ │ │ │ ├── routes.js │ │ │ │ │ │ └── views.js │ │ │ │ │ ├── fixtures.js │ │ │ │ │ └── libs │ │ │ │ │ │ ├── base64.min.js │ │ │ │ │ │ ├── classie.js │ │ │ │ │ │ ├── classie.min.js │ │ │ │ │ │ ├── ember-debug.min.js │ │ │ │ │ │ ├── ember-validations.min.js │ │ │ │ │ │ ├── ember.min.js │ │ │ │ │ │ ├── handlebars-1.3.0.min.js │ │ │ │ │ │ ├── jquery-1.10.2.min.js │ │ │ │ │ │ ├── list-view.min.js │ │ │ │ │ │ └── notificationFx.js │ │ │ │ ├── scripts │ │ │ │ │ ├── compile.rb │ │ │ │ │ └── dist.sh │ │ │ │ ├── static │ │ │ │ │ ├── base.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── consul-logo.png │ │ │ │ │ ├── favicon.png │ │ │ │ │ └── loading-cylon-purple.svg │ │ │ │ ├── style-guide.html │ │ │ │ ├── styles │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _forms.scss │ │ │ │ │ ├── _lists.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _nav.scss │ │ │ │ │ ├── _notifications.scss │ │ │ │ │ ├── _panels.scss │ │ │ │ │ ├── _type.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── base.scss │ │ │ │ └── tests │ │ │ │ │ ├── runner.css │ │ │ │ │ ├── runner.js │ │ │ │ │ ├── tests.js │ │ │ │ │ └── vendor │ │ │ │ │ ├── qunit-1.12.0.css │ │ │ │ │ └── qunit-1.12.0.js │ │ │ ├── vendor │ │ │ │ ├── github.com │ │ │ │ │ ├── DataDog │ │ │ │ │ │ └── datadog-go │ │ │ │ │ │ │ └── statsd │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── statsd.go │ │ │ │ │ ├── armon │ │ │ │ │ │ ├── circbuf │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── circbuf.go │ │ │ │ │ │ ├── go-metrics │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── const_unix.go │ │ │ │ │ │ │ ├── const_windows.go │ │ │ │ │ │ │ ├── datadog │ │ │ │ │ │ │ │ └── dogstatsd.go │ │ │ │ │ │ │ ├── inmem.go │ │ │ │ │ │ │ ├── inmem_signal.go │ │ │ │ │ │ │ ├── metrics.go │ │ │ │ │ │ │ ├── prometheus │ │ │ │ │ │ │ │ └── prometheus.go │ │ │ │ │ │ │ ├── sink.go │ │ │ │ │ │ │ ├── start.go │ │ │ │ │ │ │ ├── statsd.go │ │ │ │ │ │ │ └── statsite.go │ │ │ │ │ │ └── go-radix │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── radix.go │ │ │ │ │ ├── bgentry │ │ │ │ │ │ └── speakeasy │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── LICENSE_WINDOWS │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ └── main.go │ │ │ │ │ │ │ ├── speakeasy.go │ │ │ │ │ │ │ ├── speakeasy_unix.go │ │ │ │ │ │ │ └── speakeasy_windows.go │ │ │ │ │ ├── boltdb │ │ │ │ │ │ └── bolt │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── appveyor.yml │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── elazarl │ │ │ │ │ │ └── go-bindata-assetfs │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── assetfs.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── go-bindata-assetfs │ │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── fsouza │ │ │ │ │ │ └── go-dockerclient │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── AUTHORS │ │ │ │ │ │ │ ├── DOCKER-LICENSE │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── README.markdown │ │ │ │ │ │ │ ├── auth.go │ │ │ │ │ │ │ ├── change.go │ │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ │ ├── container.go │ │ │ │ │ │ │ ├── env.go │ │ │ │ │ │ │ ├── event.go │ │ │ │ │ │ │ ├── exec.go │ │ │ │ │ │ │ ├── external │ │ │ │ │ │ │ ├── github.com │ │ │ │ │ │ │ │ ├── Sirupsen │ │ │ │ │ │ │ │ │ └── logrus │ │ │ │ │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ │ │ ├── entry.go │ │ │ │ │ │ │ │ │ │ ├── exported.go │ │ │ │ │ │ │ │ │ │ ├── formatter.go │ │ │ │ │ │ │ │ │ │ ├── hooks.go │ │ │ │ │ │ │ │ │ │ ├── json_formatter.go │ │ │ │ │ │ │ │ │ │ ├── logger.go │ │ │ │ │ │ │ │ │ │ ├── logrus.go │ │ │ │ │ │ │ │ │ │ ├── terminal_bsd.go │ │ │ │ │ │ │ │ │ │ ├── terminal_linux.go │ │ │ │ │ │ │ │ │ │ ├── terminal_notwindows.go │ │ │ │ │ │ │ │ │ │ ├── terminal_solaris.go │ │ │ │ │ │ │ │ │ │ ├── terminal_windows.go │ │ │ │ │ │ │ │ │ │ ├── text_formatter.go │ │ │ │ │ │ │ │ │ │ └── writer.go │ │ │ │ │ │ │ │ ├── docker │ │ │ │ │ │ │ │ │ ├── docker │ │ │ │ │ │ │ │ │ │ ├── opts │ │ │ │ │ │ │ │ │ │ │ ├── envfile.go │ │ │ │ │ │ │ │ │ │ │ ├── hosts.go │ │ │ │ │ │ │ │ │ │ │ ├── hosts_unix.go │ │ │ │ │ │ │ │ │ │ │ ├── hosts_windows.go │ │ │ │ │ │ │ │ │ │ │ ├── ip.go │ │ │ │ │ │ │ │ │ │ │ ├── opts.go │ │ │ │ │ │ │ │ │ │ │ ├── opts_unix.go │ │ │ │ │ │ │ │ │ │ │ └── opts_windows.go │ │ │ │ │ │ │ │ │ │ └── pkg │ │ │ │ │ │ │ │ │ │ │ ├── archive │ │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ │ ├── archive.go │ │ │ │ │ │ │ │ │ │ │ ├── archive_unix.go │ │ │ │ │ │ │ │ │ │ │ ├── archive_windows.go │ │ │ │ │ │ │ │ │ │ │ ├── changes.go │ │ │ │ │ │ │ │ │ │ │ ├── changes_linux.go │ │ │ │ │ │ │ │ │ │ │ ├── changes_other.go │ │ │ │ │ │ │ │ │ │ │ ├── changes_unix.go │ │ │ │ │ │ │ │ │ │ │ ├── changes_windows.go │ │ │ │ │ │ │ │ │ │ │ ├── copy.go │ │ │ │ │ │ │ │ │ │ │ ├── copy_unix.go │ │ │ │ │ │ │ │ │ │ │ ├── copy_windows.go │ │ │ │ │ │ │ │ │ │ │ ├── diff.go │ │ │ │ │ │ │ │ │ │ │ ├── example_changes.go │ │ │ │ │ │ │ │ │ │ │ ├── time_linux.go │ │ │ │ │ │ │ │ │ │ │ ├── time_unsupported.go │ │ │ │ │ │ │ │ │ │ │ ├── whiteouts.go │ │ │ │ │ │ │ │ │ │ │ └── wrap.go │ │ │ │ │ │ │ │ │ │ │ ├── fileutils │ │ │ │ │ │ │ │ │ │ │ ├── fileutils.go │ │ │ │ │ │ │ │ │ │ │ ├── fileutils_unix.go │ │ │ │ │ │ │ │ │ │ │ └── fileutils_windows.go │ │ │ │ │ │ │ │ │ │ │ ├── homedir │ │ │ │ │ │ │ │ │ │ │ └── homedir.go │ │ │ │ │ │ │ │ │ │ │ ├── idtools │ │ │ │ │ │ │ │ │ │ │ ├── idtools.go │ │ │ │ │ │ │ │ │ │ │ ├── idtools_unix.go │ │ │ │ │ │ │ │ │ │ │ ├── idtools_windows.go │ │ │ │ │ │ │ │ │ │ │ ├── usergroupadd_linux.go │ │ │ │ │ │ │ │ │ │ │ └── usergroupadd_unsupported.go │ │ │ │ │ │ │ │ │ │ │ ├── ioutils │ │ │ │ │ │ │ │ │ │ │ ├── bytespipe.go │ │ │ │ │ │ │ │ │ │ │ ├── fmt.go │ │ │ │ │ │ │ │ │ │ │ ├── multireader.go │ │ │ │ │ │ │ │ │ │ │ ├── readers.go │ │ │ │ │ │ │ │ │ │ │ ├── scheduler.go │ │ │ │ │ │ │ │ │ │ │ ├── scheduler_gccgo.go │ │ │ │ │ │ │ │ │ │ │ ├── temp_unix.go │ │ │ │ │ │ │ │ │ │ │ ├── temp_windows.go │ │ │ │ │ │ │ │ │ │ │ ├── writeflusher.go │ │ │ │ │ │ │ │ │ │ │ └── writers.go │ │ │ │ │ │ │ │ │ │ │ ├── longpath │ │ │ │ │ │ │ │ │ │ │ └── longpath.go │ │ │ │ │ │ │ │ │ │ │ ├── pools │ │ │ │ │ │ │ │ │ │ │ └── pools.go │ │ │ │ │ │ │ │ │ │ │ ├── promise │ │ │ │ │ │ │ │ │ │ │ └── promise.go │ │ │ │ │ │ │ │ │ │ │ ├── stdcopy │ │ │ │ │ │ │ │ │ │ │ └── stdcopy.go │ │ │ │ │ │ │ │ │ │ │ └── system │ │ │ │ │ │ │ │ │ │ │ ├── chtimes.go │ │ │ │ │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ │ │ │ │ ├── events_windows.go │ │ │ │ │ │ │ │ │ │ │ ├── filesys.go │ │ │ │ │ │ │ │ │ │ │ ├── filesys_windows.go │ │ │ │ │ │ │ │ │ │ │ ├── lstat.go │ │ │ │ │ │ │ │ │ │ │ ├── lstat_windows.go │ │ │ │ │ │ │ │ │ │ │ ├── meminfo.go │ │ │ │ │ │ │ │ │ │ │ ├── meminfo_linux.go │ │ │ │ │ │ │ │ │ │ │ ├── meminfo_unsupported.go │ │ │ │ │ │ │ │ │ │ │ ├── meminfo_windows.go │ │ │ │ │ │ │ │ │ │ │ ├── mknod.go │ │ │ │ │ │ │ │ │ │ │ ├── mknod_windows.go │ │ │ │ │ │ │ │ │ │ │ ├── path_unix.go │ │ │ │ │ │ │ │ │ │ │ ├── path_windows.go │ │ │ │ │ │ │ │ │ │ │ ├── stat.go │ │ │ │ │ │ │ │ │ │ │ ├── stat_freebsd.go │ │ │ │ │ │ │ │ │ │ │ ├── stat_linux.go │ │ │ │ │ │ │ │ │ │ │ ├── stat_solaris.go │ │ │ │ │ │ │ │ │ │ │ ├── stat_unsupported.go │ │ │ │ │ │ │ │ │ │ │ ├── stat_windows.go │ │ │ │ │ │ │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ │ │ │ │ │ │ ├── syscall_windows.go │ │ │ │ │ │ │ │ │ │ │ ├── umask.go │ │ │ │ │ │ │ │ │ │ │ ├── umask_windows.go │ │ │ │ │ │ │ │ │ │ │ ├── utimes_darwin.go │ │ │ │ │ │ │ │ │ │ │ ├── utimes_freebsd.go │ │ │ │ │ │ │ │ │ │ │ ├── utimes_linux.go │ │ │ │ │ │ │ │ │ │ │ ├── utimes_unsupported.go │ │ │ │ │ │ │ │ │ │ │ ├── xattrs_linux.go │ │ │ │ │ │ │ │ │ │ │ └── xattrs_unsupported.go │ │ │ │ │ │ │ │ │ └── go-units │ │ │ │ │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ │ │ │ │ ├── LICENSE.code │ │ │ │ │ │ │ │ │ │ ├── LICENSE.docs │ │ │ │ │ │ │ │ │ │ ├── MAINTAINERS │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ ├── circle.yml │ │ │ │ │ │ │ │ │ │ ├── duration.go │ │ │ │ │ │ │ │ │ │ ├── size.go │ │ │ │ │ │ │ │ │ │ └── ulimit.go │ │ │ │ │ │ │ │ ├── hashicorp │ │ │ │ │ │ │ │ │ └── go-cleanhttp │ │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ └── cleanhttp.go │ │ │ │ │ │ │ │ └── opencontainers │ │ │ │ │ │ │ │ │ └── runc │ │ │ │ │ │ │ │ │ └── libcontainer │ │ │ │ │ │ │ │ │ └── user │ │ │ │ │ │ │ │ │ ├── MAINTAINERS │ │ │ │ │ │ │ │ │ ├── lookup.go │ │ │ │ │ │ │ │ │ ├── lookup_unix.go │ │ │ │ │ │ │ │ │ ├── lookup_unsupported.go │ │ │ │ │ │ │ │ │ └── user.go │ │ │ │ │ │ │ └── golang.org │ │ │ │ │ │ │ │ └── x │ │ │ │ │ │ │ │ ├── net │ │ │ │ │ │ │ │ └── context │ │ │ │ │ │ │ │ │ └── context.go │ │ │ │ │ │ │ │ └── sys │ │ │ │ │ │ │ │ └── unix │ │ │ │ │ │ │ │ ├── asm.s │ │ │ │ │ │ │ │ ├── asm_darwin_386.s │ │ │ │ │ │ │ │ ├── asm_darwin_amd64.s │ │ │ │ │ │ │ │ ├── asm_darwin_arm.s │ │ │ │ │ │ │ │ ├── asm_darwin_arm64.s │ │ │ │ │ │ │ │ ├── asm_dragonfly_386.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_ppc64x.s │ │ │ │ │ │ │ │ ├── asm_netbsd_386.s │ │ │ │ │ │ │ │ ├── asm_netbsd_amd64.s │ │ │ │ │ │ │ │ ├── asm_netbsd_arm.s │ │ │ │ │ │ │ │ ├── asm_openbsd_386.s │ │ │ │ │ │ │ │ ├── asm_openbsd_amd64.s │ │ │ │ │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ │ │ ├── env_unix.go │ │ │ │ │ │ │ │ ├── env_unset.go │ │ │ │ │ │ │ │ ├── flock.go │ │ │ │ │ │ │ │ ├── flock_linux_32bit.go │ │ │ │ │ │ │ │ ├── gccgo.go │ │ │ │ │ │ │ │ ├── gccgo_c.c │ │ │ │ │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ │ │ │ │ ├── mkall.sh │ │ │ │ │ │ │ │ ├── mkerrors.sh │ │ │ │ │ │ │ │ ├── mksyscall.pl │ │ │ │ │ │ │ │ ├── mksyscall_solaris.pl │ │ │ │ │ │ │ │ ├── mksysctl_openbsd.pl │ │ │ │ │ │ │ │ ├── mksysnum_darwin.pl │ │ │ │ │ │ │ │ ├── mksysnum_dragonfly.pl │ │ │ │ │ │ │ │ ├── mksysnum_freebsd.pl │ │ │ │ │ │ │ │ ├── mksysnum_linux.pl │ │ │ │ │ │ │ │ ├── mksysnum_netbsd.pl │ │ │ │ │ │ │ │ ├── mksysnum_openbsd.pl │ │ │ │ │ │ │ │ ├── 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_386.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_arm.go │ │ │ │ │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ │ │ │ │ ├── syscall_linux_ppc64x.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_solaris.go │ │ │ │ │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ │ │ │ ├── types_darwin.go │ │ │ │ │ │ │ │ ├── types_dragonfly.go │ │ │ │ │ │ │ │ ├── types_freebsd.go │ │ │ │ │ │ │ │ ├── types_linux.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_386.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_ppc64.go │ │ │ │ │ │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ │ │ │ │ │ ├── zerrors_netbsd_386.go │ │ │ │ │ │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ │ │ │ │ │ ├── zerrors_netbsd_arm.go │ │ │ │ │ │ │ │ ├── zerrors_openbsd_386.go │ │ │ │ │ │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ │ │ │ │ │ ├── zerrors_solaris_amd64.go │ │ │ │ │ │ │ │ ├── zsyscall_darwin_386.go │ │ │ │ │ │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ │ │ │ │ │ ├── zsyscall_darwin_arm.go │ │ │ │ │ │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ │ │ │ │ │ ├── zsyscall_dragonfly_386.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_ppc64.go │ │ │ │ │ │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ │ │ │ │ │ ├── zsyscall_netbsd_386.go │ │ │ │ │ │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ │ │ │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ │ │ │ │ │ ├── zsyscall_openbsd_386.go │ │ │ │ │ │ │ │ ├── zsyscall_openbsd_amd64.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_386.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_ppc64.go │ │ │ │ │ │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ │ │ │ │ │ ├── zsysnum_netbsd_386.go │ │ │ │ │ │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ │ │ │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ │ │ │ │ │ ├── zsysnum_openbsd_386.go │ │ │ │ │ │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ │ │ │ │ │ ├── zsysnum_solaris_amd64.go │ │ │ │ │ │ │ │ ├── ztypes_darwin_386.go │ │ │ │ │ │ │ │ ├── ztypes_darwin_amd64.go │ │ │ │ │ │ │ │ ├── ztypes_darwin_arm.go │ │ │ │ │ │ │ │ ├── ztypes_darwin_arm64.go │ │ │ │ │ │ │ │ ├── ztypes_dragonfly_386.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_ppc64.go │ │ │ │ │ │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ │ │ │ │ │ ├── ztypes_netbsd_386.go │ │ │ │ │ │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ │ │ │ │ │ ├── ztypes_netbsd_arm.go │ │ │ │ │ │ │ │ ├── ztypes_openbsd_386.go │ │ │ │ │ │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ │ │ │ │ │ └── ztypes_solaris_amd64.go │ │ │ │ │ │ │ ├── image.go │ │ │ │ │ │ │ ├── misc.go │ │ │ │ │ │ │ ├── network.go │ │ │ │ │ │ │ ├── signal.go │ │ │ │ │ │ │ ├── tar.go │ │ │ │ │ │ │ ├── tls.go │ │ │ │ │ │ │ └── volume.go │ │ │ │ │ ├── golang │ │ │ │ │ │ └── protobuf │ │ │ │ │ │ │ └── LICENSE │ │ │ │ │ ├── hashicorp │ │ │ │ │ │ ├── errwrap │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── errwrap.go │ │ │ │ │ │ ├── go-checkpoint │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── checkpoint.go │ │ │ │ │ │ ├── go-cleanhttp │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── cleanhttp.go │ │ │ │ │ │ │ └── doc.go │ │ │ │ │ │ ├── go-immutable-radix │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── edges.go │ │ │ │ │ │ │ ├── iradix.go │ │ │ │ │ │ │ ├── iter.go │ │ │ │ │ │ │ └── node.go │ │ │ │ │ │ ├── go-memdb │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── index.go │ │ │ │ │ │ │ ├── memdb.go │ │ │ │ │ │ │ ├── schema.go │ │ │ │ │ │ │ └── txn.go │ │ │ │ │ │ ├── go-msgpack │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── codec │ │ │ │ │ │ │ │ ├── 0doc.go │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── binc.go │ │ │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ │ │ ├── helper.go │ │ │ │ │ │ │ │ ├── helper_internal.go │ │ │ │ │ │ │ │ ├── msgpack.go │ │ │ │ │ │ │ │ ├── msgpack_test.py │ │ │ │ │ │ │ │ ├── rpc.go │ │ │ │ │ │ │ │ ├── simple.go │ │ │ │ │ │ │ │ └── time.go │ │ │ │ │ │ ├── go-multierror │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── append.go │ │ │ │ │ │ │ ├── flatten.go │ │ │ │ │ │ │ ├── format.go │ │ │ │ │ │ │ ├── multierror.go │ │ │ │ │ │ │ └── prefix.go │ │ │ │ │ │ ├── go-reap │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── reap.go │ │ │ │ │ │ │ ├── reap_stub.go │ │ │ │ │ │ │ └── reap_unix.go │ │ │ │ │ │ ├── go-syslog │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── builtin.go │ │ │ │ │ │ │ ├── syslog.go │ │ │ │ │ │ │ ├── unix.go │ │ │ │ │ │ │ └── unsupported.go │ │ │ │ │ │ ├── go-uuid │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── uuid.go │ │ │ │ │ │ ├── golang-lru │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── 2q.go │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── arc.go │ │ │ │ │ │ │ ├── lru.go │ │ │ │ │ │ │ └── simplelru │ │ │ │ │ │ │ │ └── lru.go │ │ │ │ │ │ ├── hcl │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── decoder.go │ │ │ │ │ │ │ ├── hcl.go │ │ │ │ │ │ │ ├── hcl │ │ │ │ │ │ │ │ ├── ast │ │ │ │ │ │ │ │ │ ├── ast.go │ │ │ │ │ │ │ │ │ └── walk.go │ │ │ │ │ │ │ │ ├── parser │ │ │ │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ │ │ │ └── parser.go │ │ │ │ │ │ │ │ ├── printer │ │ │ │ │ │ │ │ │ ├── nodes.go │ │ │ │ │ │ │ │ │ └── printer.go │ │ │ │ │ │ │ │ ├── scanner │ │ │ │ │ │ │ │ │ └── scanner.go │ │ │ │ │ │ │ │ ├── strconv │ │ │ │ │ │ │ │ │ └── quote.go │ │ │ │ │ │ │ │ ├── test-fixtures │ │ │ │ │ │ │ │ │ ├── array_comment.hcl │ │ │ │ │ │ │ │ │ ├── assign_colon.hcl │ │ │ │ │ │ │ │ │ ├── assign_deep.hcl │ │ │ │ │ │ │ │ │ ├── comment.hcl │ │ │ │ │ │ │ │ │ ├── comment_single.hcl │ │ │ │ │ │ │ │ │ ├── complex.hcl │ │ │ │ │ │ │ │ │ ├── complex_key.hcl │ │ │ │ │ │ │ │ │ ├── empty.hcl │ │ │ │ │ │ │ │ │ ├── list.hcl │ │ │ │ │ │ │ │ │ ├── list_comma.hcl │ │ │ │ │ │ │ │ │ ├── multiple.hcl │ │ │ │ │ │ │ │ │ ├── old.hcl │ │ │ │ │ │ │ │ │ ├── structure.hcl │ │ │ │ │ │ │ │ │ ├── structure_basic.hcl │ │ │ │ │ │ │ │ │ ├── structure_empty.hcl │ │ │ │ │ │ │ │ │ └── types.hcl │ │ │ │ │ │ │ │ └── token │ │ │ │ │ │ │ │ │ ├── position.go │ │ │ │ │ │ │ │ │ └── token.go │ │ │ │ │ │ │ ├── json │ │ │ │ │ │ │ │ ├── parser │ │ │ │ │ │ │ │ │ ├── flatten.go │ │ │ │ │ │ │ │ │ └── parser.go │ │ │ │ │ │ │ │ ├── scanner │ │ │ │ │ │ │ │ │ └── scanner.go │ │ │ │ │ │ │ │ ├── test-fixtures │ │ │ │ │ │ │ │ │ ├── array.json │ │ │ │ │ │ │ │ │ ├── basic.json │ │ │ │ │ │ │ │ │ ├── object.json │ │ │ │ │ │ │ │ │ └── types.json │ │ │ │ │ │ │ │ └── token │ │ │ │ │ │ │ │ │ ├── position.go │ │ │ │ │ │ │ │ │ └── token.go │ │ │ │ │ │ │ ├── lex.go │ │ │ │ │ │ │ ├── parse.go │ │ │ │ │ │ │ └── test-fixtures │ │ │ │ │ │ │ │ ├── basic.hcl │ │ │ │ │ │ │ │ ├── basic.json │ │ │ │ │ │ │ │ ├── basic_int_string.hcl │ │ │ │ │ │ │ │ ├── basic_squish.hcl │ │ │ │ │ │ │ │ ├── decode_policy.hcl │ │ │ │ │ │ │ │ ├── decode_policy.json │ │ │ │ │ │ │ │ ├── decode_tf_variable.hcl │ │ │ │ │ │ │ │ ├── decode_tf_variable.json │ │ │ │ │ │ │ │ ├── empty.hcl │ │ │ │ │ │ │ │ ├── escape.hcl │ │ │ │ │ │ │ │ ├── flat.hcl │ │ │ │ │ │ │ │ ├── float.hcl │ │ │ │ │ │ │ │ ├── float.json │ │ │ │ │ │ │ │ ├── interpolate_escape.hcl │ │ │ │ │ │ │ │ ├── multiline.hcl │ │ │ │ │ │ │ │ ├── multiline.json │ │ │ │ │ │ │ │ ├── multiline_bad.hcl │ │ │ │ │ │ │ │ ├── multiline_no_eof.hcl │ │ │ │ │ │ │ │ ├── multiline_no_marker.hcl │ │ │ │ │ │ │ │ ├── nested_block_comment.hcl │ │ │ │ │ │ │ │ ├── object_list.json │ │ │ │ │ │ │ │ ├── scientific.hcl │ │ │ │ │ │ │ │ ├── scientific.json │ │ │ │ │ │ │ │ ├── slice_expand.hcl │ │ │ │ │ │ │ │ ├── structure.hcl │ │ │ │ │ │ │ │ ├── structure.json │ │ │ │ │ │ │ │ ├── structure2.hcl │ │ │ │ │ │ │ │ ├── structure2.json │ │ │ │ │ │ │ │ ├── structure_flat.json │ │ │ │ │ │ │ │ ├── structure_flatmap.hcl │ │ │ │ │ │ │ │ ├── structure_list.hcl │ │ │ │ │ │ │ │ ├── structure_list.json │ │ │ │ │ │ │ │ ├── structure_list_deep.json │ │ │ │ │ │ │ │ ├── structure_multi.hcl │ │ │ │ │ │ │ │ ├── structure_multi.json │ │ │ │ │ │ │ │ ├── terraform_heroku.hcl │ │ │ │ │ │ │ │ ├── terraform_heroku.json │ │ │ │ │ │ │ │ ├── tfvars.hcl │ │ │ │ │ │ │ │ └── unterminated_block_comment.hcl │ │ │ │ │ │ ├── hil │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── ast │ │ │ │ │ │ │ │ ├── arithmetic.go │ │ │ │ │ │ │ │ ├── arithmetic_op.go │ │ │ │ │ │ │ │ ├── ast.go │ │ │ │ │ │ │ │ ├── call.go │ │ │ │ │ │ │ │ ├── concat.go │ │ │ │ │ │ │ │ ├── index.go │ │ │ │ │ │ │ │ ├── literal.go │ │ │ │ │ │ │ │ ├── scope.go │ │ │ │ │ │ │ │ ├── stack.go │ │ │ │ │ │ │ │ ├── type_string.go │ │ │ │ │ │ │ │ └── variable_access.go │ │ │ │ │ │ │ ├── builtins.go │ │ │ │ │ │ │ ├── check_identifier.go │ │ │ │ │ │ │ ├── check_types.go │ │ │ │ │ │ │ ├── eval.go │ │ │ │ │ │ │ ├── lang.y │ │ │ │ │ │ │ ├── lex.go │ │ │ │ │ │ │ ├── parse.go │ │ │ │ │ │ │ ├── transform_fixed.go │ │ │ │ │ │ │ ├── walk.go │ │ │ │ │ │ │ ├── y.go │ │ │ │ │ │ │ └── y.output │ │ │ │ │ │ ├── logutils │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── level.go │ │ │ │ │ │ ├── memberlist │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ ├── net.go │ │ │ │ │ │ │ ├── ping_delegate.go │ │ │ │ │ │ │ ├── queue.go │ │ │ │ │ │ │ ├── security.go │ │ │ │ │ │ │ ├── state.go │ │ │ │ │ │ │ ├── suspicion.go │ │ │ │ │ │ │ ├── todo.md │ │ │ │ │ │ │ └── util.go │ │ │ │ │ │ ├── net-rpc-msgpackrpc │ │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ │ ├── codec.go │ │ │ │ │ │ │ └── msgpackrpc.go │ │ │ │ │ │ ├── raft-boltdb │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── bolt_store.go │ │ │ │ │ │ │ └── util.go │ │ │ │ │ │ ├── raft │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── bench │ │ │ │ │ │ │ │ └── bench.go │ │ │ │ │ │ │ ├── commands.go │ │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ │ ├── discard_snapshot.go │ │ │ │ │ │ │ ├── file_snapshot.go │ │ │ │ │ │ │ ├── fsm.go │ │ │ │ │ │ │ ├── future.go │ │ │ │ │ │ │ ├── inflight.go │ │ │ │ │ │ │ ├── inmem_store.go │ │ │ │ │ │ │ ├── inmem_transport.go │ │ │ │ │ │ │ ├── log.go │ │ │ │ │ │ │ ├── log_cache.go │ │ │ │ │ │ │ ├── net_transport.go │ │ │ │ │ │ │ ├── peer.go │ │ │ │ │ │ │ ├── raft.go │ │ │ │ │ │ │ ├── replication.go │ │ │ │ │ │ │ ├── snapshot.go │ │ │ │ │ │ │ ├── stable.go │ │ │ │ │ │ │ ├── state.go │ │ │ │ │ │ │ ├── tcp_transport.go │ │ │ │ │ │ │ ├── transport.go │ │ │ │ │ │ │ └── util.go │ │ │ │ │ │ ├── scada-client │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ │ ├── provider.go │ │ │ │ │ │ │ ├── scada │ │ │ │ │ │ │ │ ├── scada.go │ │ │ │ │ │ │ │ └── scada_test.go │ │ │ │ │ │ │ ├── structs.go │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── cert.pem │ │ │ │ │ │ │ │ └── key.pem │ │ │ │ │ │ ├── serf │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── coordinate │ │ │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ │ │ ├── coordinate.go │ │ │ │ │ │ │ │ └── phantom.go │ │ │ │ │ │ │ ├── ops-misc │ │ │ │ │ │ │ │ └── debian │ │ │ │ │ │ │ │ │ └── copyright │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ └── website │ │ │ │ │ │ │ │ └── LICENSE.md │ │ │ │ │ │ └── yamux │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── addr.go │ │ │ │ │ │ │ ├── const.go │ │ │ │ │ │ │ ├── mux.go │ │ │ │ │ │ │ ├── session.go │ │ │ │ │ │ │ ├── spec.md │ │ │ │ │ │ │ ├── stream.go │ │ │ │ │ │ │ └── util.go │ │ │ │ │ ├── inconshreveable │ │ │ │ │ │ └── muxado │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── TODO │ │ │ │ │ │ │ ├── adaptor.go │ │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ ├── proto │ │ │ │ │ │ │ ├── buffer │ │ │ │ │ │ │ │ ├── circular.go │ │ │ │ │ │ │ │ ├── inbound.go │ │ │ │ │ │ │ │ ├── outbound.go │ │ │ │ │ │ │ │ └── shared.go │ │ │ │ │ │ │ ├── ext │ │ │ │ │ │ │ │ ├── const.go │ │ │ │ │ │ │ │ └── heartbeat.go │ │ │ │ │ │ │ ├── frame │ │ │ │ │ │ │ │ ├── data.go │ │ │ │ │ │ │ │ ├── debug.go │ │ │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ │ │ ├── goaway.go │ │ │ │ │ │ │ │ ├── header.go │ │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ │ ├── rst.go │ │ │ │ │ │ │ │ ├── syn.go │ │ │ │ │ │ │ │ ├── transport.go │ │ │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ │ │ └── wndinc.go │ │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ │ ├── session.go │ │ │ │ │ │ │ ├── stream.go │ │ │ │ │ │ │ └── stream_map.go │ │ │ │ │ │ │ └── server.go │ │ │ │ │ ├── mattn │ │ │ │ │ │ └── go-isatty │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── isatty_appengine.go │ │ │ │ │ │ │ ├── isatty_bsd.go │ │ │ │ │ │ │ ├── isatty_linux.go │ │ │ │ │ │ │ ├── isatty_solaris.go │ │ │ │ │ │ │ └── isatty_windows.go │ │ │ │ │ ├── matttproud │ │ │ │ │ │ └── golang_protobuf_extensions │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── NOTICE │ │ │ │ │ ├── miekg │ │ │ │ │ │ └── dns │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── AUTHORS │ │ │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ │ │ ├── COPYRIGHT │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ ├── idn │ │ │ │ │ │ │ ├── code_points.go │ │ │ │ │ │ │ └── punycode.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 │ │ │ │ │ │ │ ├── types_generate.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 │ │ │ │ │ ├── mitchellh │ │ │ │ │ │ ├── cli │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── cli.go │ │ │ │ │ │ │ ├── command.go │ │ │ │ │ │ │ ├── command_mock.go │ │ │ │ │ │ │ ├── help.go │ │ │ │ │ │ │ ├── ui.go │ │ │ │ │ │ │ ├── ui_colored.go │ │ │ │ │ │ │ ├── ui_concurrent.go │ │ │ │ │ │ │ ├── ui_mock.go │ │ │ │ │ │ │ └── ui_writer.go │ │ │ │ │ │ ├── copystructure │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── copier_time.go │ │ │ │ │ │ │ └── copystructure.go │ │ │ │ │ │ ├── mapstructure │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── decode_hooks.go │ │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ │ └── mapstructure.go │ │ │ │ │ │ └── reflectwalk │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── location.go │ │ │ │ │ │ │ ├── location_string.go │ │ │ │ │ │ │ └── reflectwalk.go │ │ │ │ │ ├── prometheus │ │ │ │ │ │ ├── client_golang │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── NOTICE │ │ │ │ │ │ ├── client_model │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── NOTICE │ │ │ │ │ │ │ └── ruby │ │ │ │ │ │ │ │ └── LICENSE │ │ │ │ │ │ └── common │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── NOTICE │ │ │ │ │ └── ryanuber │ │ │ │ │ │ └── columnize │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── COPYING │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── columnize.go │ │ │ │ ├── golang.org │ │ │ │ │ └── x │ │ │ │ │ │ └── sys │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── PATENTS │ │ │ │ │ │ └── unix │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── asm.s │ │ │ │ │ │ ├── asm_darwin_386.s │ │ │ │ │ │ ├── asm_darwin_amd64.s │ │ │ │ │ │ ├── asm_darwin_arm.s │ │ │ │ │ │ ├── asm_darwin_arm64.s │ │ │ │ │ │ ├── asm_dragonfly_386.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_ppc64x.s │ │ │ │ │ │ ├── asm_netbsd_386.s │ │ │ │ │ │ ├── asm_netbsd_amd64.s │ │ │ │ │ │ ├── asm_netbsd_arm.s │ │ │ │ │ │ ├── asm_openbsd_386.s │ │ │ │ │ │ ├── asm_openbsd_amd64.s │ │ │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ ├── env_unix.go │ │ │ │ │ │ ├── env_unset.go │ │ │ │ │ │ ├── flock.go │ │ │ │ │ │ ├── flock_linux_32bit.go │ │ │ │ │ │ ├── gccgo.go │ │ │ │ │ │ ├── gccgo_c.c │ │ │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ │ │ ├── mkall.sh │ │ │ │ │ │ ├── mkerrors.sh │ │ │ │ │ │ ├── mksyscall.pl │ │ │ │ │ │ ├── mksyscall_solaris.pl │ │ │ │ │ │ ├── mksysctl_openbsd.pl │ │ │ │ │ │ ├── mksysnum_darwin.pl │ │ │ │ │ │ ├── mksysnum_dragonfly.pl │ │ │ │ │ │ ├── mksysnum_freebsd.pl │ │ │ │ │ │ ├── mksysnum_linux.pl │ │ │ │ │ │ ├── mksysnum_netbsd.pl │ │ │ │ │ │ ├── mksysnum_openbsd.pl │ │ │ │ │ │ ├── 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_386.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_arm.go │ │ │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ │ │ ├── syscall_linux_ppc64x.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_solaris.go │ │ │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ │ ├── types_darwin.go │ │ │ │ │ │ ├── types_dragonfly.go │ │ │ │ │ │ ├── types_freebsd.go │ │ │ │ │ │ ├── types_linux.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_386.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_ppc64.go │ │ │ │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ │ │ │ ├── zerrors_netbsd_386.go │ │ │ │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ │ │ │ ├── zerrors_netbsd_arm.go │ │ │ │ │ │ ├── zerrors_openbsd_386.go │ │ │ │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ │ │ │ ├── zerrors_solaris_amd64.go │ │ │ │ │ │ ├── zsyscall_darwin_386.go │ │ │ │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ │ │ │ ├── zsyscall_darwin_arm.go │ │ │ │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ │ │ │ ├── zsyscall_dragonfly_386.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_ppc64.go │ │ │ │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ │ │ │ ├── zsyscall_netbsd_386.go │ │ │ │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ │ │ │ ├── zsyscall_openbsd_386.go │ │ │ │ │ │ ├── zsyscall_openbsd_amd64.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_386.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_ppc64.go │ │ │ │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ │ │ │ ├── zsysnum_netbsd_386.go │ │ │ │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ │ │ │ ├── zsysnum_openbsd_386.go │ │ │ │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ │ │ │ ├── zsysnum_solaris_amd64.go │ │ │ │ │ │ ├── ztypes_darwin_386.go │ │ │ │ │ │ ├── ztypes_darwin_amd64.go │ │ │ │ │ │ ├── ztypes_darwin_arm.go │ │ │ │ │ │ ├── ztypes_darwin_arm64.go │ │ │ │ │ │ ├── ztypes_dragonfly_386.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_ppc64.go │ │ │ │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ │ │ │ ├── ztypes_netbsd_386.go │ │ │ │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ │ │ │ ├── ztypes_netbsd_arm.go │ │ │ │ │ │ ├── ztypes_openbsd_386.go │ │ │ │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ │ │ │ └── ztypes_solaris_amd64.go │ │ │ │ └── vendor.json │ │ │ ├── version.go │ │ │ ├── watch │ │ │ │ ├── funcs.go │ │ │ │ ├── funcs_test.go │ │ │ │ ├── plan.go │ │ │ │ ├── plan_test.go │ │ │ │ ├── watch.go │ │ │ │ └── watch_test.go │ │ │ └── website │ │ │ │ ├── Gemfile │ │ │ │ ├── Gemfile.lock │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── Vagrantfile │ │ │ │ ├── config.rb │ │ │ │ ├── config.ru │ │ │ │ ├── packer.json │ │ │ │ ├── scripts │ │ │ │ └── deploy.sh │ │ │ │ └── source │ │ │ │ ├── .gitignore │ │ │ │ ├── 404.html.erb │ │ │ │ ├── assets │ │ │ │ ├── images │ │ │ │ │ ├── atlas_web_ui.png │ │ │ │ │ ├── atlas_workflow.png │ │ │ │ │ ├── consul-arch.png │ │ │ │ │ ├── consul-footer-logo.png │ │ │ │ │ ├── consul-footer-logo@2x.png │ │ │ │ │ ├── consul-header-lockup.png │ │ │ │ │ ├── consul-header-lockup@2x.png │ │ │ │ │ ├── consul-hero-logo.png │ │ │ │ │ ├── consul-hero-logo@2x.png │ │ │ │ │ ├── consul-sessions.png │ │ │ │ │ ├── consul_web_ui.png │ │ │ │ │ ├── favicon.png │ │ │ │ │ ├── feature-config.png │ │ │ │ │ ├── feature-config@2x.png │ │ │ │ │ ├── feature-discovery.png │ │ │ │ │ ├── feature-discovery@2x.png │ │ │ │ │ ├── feature-health.png │ │ │ │ │ ├── feature-health@2x.png │ │ │ │ │ ├── feature-multi.png │ │ │ │ │ ├── feature-multi@2x.png │ │ │ │ │ ├── footer-hashicorp-logo.png │ │ │ │ │ ├── footer-hashicorp-logo@2x.png │ │ │ │ │ ├── hero-dots-below.png │ │ │ │ │ ├── hero-dots-below@2x.png │ │ │ │ │ ├── hero-dots.png │ │ │ │ │ ├── hero-dots@2x.png │ │ │ │ │ ├── icon-download-purple.png │ │ │ │ │ ├── icon-download-purple@2x.png │ │ │ │ │ ├── icon-download.png │ │ │ │ │ ├── icon-download@2x.png │ │ │ │ │ ├── icon-github-purple.png │ │ │ │ │ ├── icon-github-purple@2x.png │ │ │ │ │ ├── icon-github.png │ │ │ │ │ ├── icon-github@2x.png │ │ │ │ │ ├── logo-header-gradient@2x.png │ │ │ │ │ ├── logo-header.png │ │ │ │ │ ├── logo-header@2x.png │ │ │ │ │ ├── logo_large.png │ │ │ │ │ ├── nav-dotpipes.png │ │ │ │ │ ├── nav-dotpipes@2x.png │ │ │ │ │ └── sidebar-dots.jpg │ │ │ │ ├── javascripts │ │ │ │ │ ├── _app │ │ │ │ │ │ ├── Sidebar.js │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ ├── docs.js │ │ │ │ │ │ ├── homepage.js │ │ │ │ │ │ └── util.js │ │ │ │ │ ├── application.coffee │ │ │ │ │ └── lib │ │ │ │ │ │ └── Base.js │ │ │ │ └── stylesheets │ │ │ │ │ ├── _announcement-bnr.scss │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _community.scss │ │ │ │ │ ├── _docs.scss │ │ │ │ │ ├── _downloads.scss │ │ │ │ │ ├── _fonts.scss │ │ │ │ │ ├── _footer.scss │ │ │ │ │ ├── _global.scss │ │ │ │ │ ├── _header.scss │ │ │ │ │ ├── _home.scss │ │ │ │ │ ├── _jumbotron.scss │ │ │ │ │ ├── _sidebar.scss │ │ │ │ │ ├── _utilities.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ ├── application.scss │ │ │ │ │ └── hashicorp-shared │ │ │ │ │ ├── _hashicorp-header.scss │ │ │ │ │ ├── _hashicorp-sidebar.scss │ │ │ │ │ ├── _hashicorp-utility.scss │ │ │ │ │ └── _project-utility.scss │ │ │ │ ├── community.html.erb │ │ │ │ ├── docs │ │ │ │ ├── agent │ │ │ │ │ ├── basics.html.markdown │ │ │ │ │ ├── checks.html.markdown │ │ │ │ │ ├── dns.html.markdown │ │ │ │ │ ├── encryption.html.markdown │ │ │ │ │ ├── http.html.markdown │ │ │ │ │ ├── http │ │ │ │ │ │ ├── acl.html.markdown │ │ │ │ │ │ ├── agent.html.markdown │ │ │ │ │ │ ├── catalog.html.markdown │ │ │ │ │ │ ├── coordinate.html.markdown │ │ │ │ │ │ ├── event.html.markdown │ │ │ │ │ │ ├── health.html.markdown │ │ │ │ │ │ ├── kv.html.markdown │ │ │ │ │ │ ├── query.html.markdown │ │ │ │ │ │ ├── session.html.markdown │ │ │ │ │ │ └── status.html.markdown │ │ │ │ │ ├── options.html.markdown │ │ │ │ │ ├── rpc.html.markdown │ │ │ │ │ ├── services.html.markdown │ │ │ │ │ ├── telemetry.html.markdown │ │ │ │ │ └── watches.html.markdown │ │ │ │ ├── commands │ │ │ │ │ ├── agent.html.markdown │ │ │ │ │ ├── configtest.html.markdown │ │ │ │ │ ├── event.html.markdown │ │ │ │ │ ├── exec.html.markdown │ │ │ │ │ ├── force-leave.html.markdown │ │ │ │ │ ├── index.html.markdown │ │ │ │ │ ├── info.html.markdown │ │ │ │ │ ├── join.html.markdown │ │ │ │ │ ├── keygen.html.markdown │ │ │ │ │ ├── keyring.html.markdown │ │ │ │ │ ├── leave.html.markdown │ │ │ │ │ ├── lock.html.markdown │ │ │ │ │ ├── maint.html.markdown │ │ │ │ │ ├── members.html.markdown │ │ │ │ │ ├── monitor.html.markdown │ │ │ │ │ ├── reload.html.markdown │ │ │ │ │ ├── rtt.html.markdown │ │ │ │ │ └── watch.html.markdown │ │ │ │ ├── compatibility.html.markdown │ │ │ │ ├── faq.html.markdown │ │ │ │ ├── guides │ │ │ │ │ ├── atlas.html.markdown │ │ │ │ │ ├── bootstrapping.html.markdown │ │ │ │ │ ├── datacenters.html.markdown │ │ │ │ │ ├── dns-cache.html.markdown │ │ │ │ │ ├── external.html.markdown │ │ │ │ │ ├── forwarding.html.markdown │ │ │ │ │ ├── index.html.markdown │ │ │ │ │ ├── leader-election.html.markdown │ │ │ │ │ ├── manual-bootstrap.html.markdown │ │ │ │ │ ├── outage.html.markdown │ │ │ │ │ ├── semaphore.html.markdown │ │ │ │ │ └── servers.html.markdown │ │ │ │ ├── index.html.markdown │ │ │ │ ├── internals │ │ │ │ │ ├── acl.html.markdown │ │ │ │ │ ├── anti-entropy.html.markdown │ │ │ │ │ ├── architecture.html.markdown │ │ │ │ │ ├── consensus.html.markdown │ │ │ │ │ ├── coordinates.html.markdown │ │ │ │ │ ├── gossip.html.markdown │ │ │ │ │ ├── index.html.markdown │ │ │ │ │ ├── jepsen.html.markdown │ │ │ │ │ ├── security.html.markdown │ │ │ │ │ └── sessions.html.markdown │ │ │ │ ├── upgrade-specific.html.markdown │ │ │ │ └── upgrading.html.markdown │ │ │ │ ├── downloads.html.erb │ │ │ │ ├── downloads_tools.html.erb │ │ │ │ ├── index.html.erb │ │ │ │ ├── intro │ │ │ │ ├── getting-started │ │ │ │ │ ├── agent.html.markdown │ │ │ │ │ ├── checks.html.markdown │ │ │ │ │ ├── consul.d │ │ │ │ │ │ └── web.json │ │ │ │ │ ├── install.html.markdown │ │ │ │ │ ├── join.html.markdown │ │ │ │ │ ├── kv.html.markdown │ │ │ │ │ ├── next-steps.html.markdown │ │ │ │ │ ├── services.html.markdown │ │ │ │ │ └── ui.html.markdown │ │ │ │ ├── hashicorp-ecosystem.html.markdown │ │ │ │ ├── index.html.markdown │ │ │ │ └── vs │ │ │ │ │ ├── chef-puppet.html.markdown │ │ │ │ │ ├── custom.html.markdown │ │ │ │ │ ├── index.html.markdown │ │ │ │ │ ├── nagios-sensu.html.markdown │ │ │ │ │ ├── serf.html.markdown │ │ │ │ │ ├── skydns.html.markdown │ │ │ │ │ ├── smartstack.html.markdown │ │ │ │ │ └── zookeeper.html.markdown │ │ │ │ ├── layouts │ │ │ │ ├── _announcement-bnr.erb │ │ │ │ ├── _footer.erb │ │ │ │ ├── _header.erb │ │ │ │ ├── _sidebar.erb │ │ │ │ ├── docs.erb │ │ │ │ ├── downloads.erb │ │ │ │ ├── inner.erb │ │ │ │ ├── intro.erb │ │ │ │ ├── layout.erb │ │ │ │ └── svg │ │ │ │ │ ├── _svg-by-hashicorp.erb │ │ │ │ │ ├── _svg-download.erb │ │ │ │ │ ├── _svg-enterprise.erb │ │ │ │ │ ├── _svg-github.erb │ │ │ │ │ └── _svg-hashicorp-logo.erb │ │ │ │ ├── robots.txt │ │ │ │ └── sitemap.xml.builder │ │ ├── go-cleanhttp │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cleanhttp.go │ │ │ └── doc.go │ │ └── serf │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── GNUmakefile │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── client │ │ │ ├── README.md │ │ │ ├── const.go │ │ │ └── rpc_client.go │ │ │ ├── command │ │ │ ├── agent │ │ │ │ ├── agent.go │ │ │ │ ├── agent_test.go │ │ │ │ ├── command.go │ │ │ │ ├── command_test.go │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── event_handler.go │ │ │ │ ├── event_handler_mock.go │ │ │ │ ├── event_handler_test.go │ │ │ │ ├── flag_slice_value.go │ │ │ │ ├── flag_slice_value_test.go │ │ │ │ ├── gated_writer.go │ │ │ │ ├── gated_writer_test.go │ │ │ │ ├── invoke.go │ │ │ │ ├── ipc.go │ │ │ │ ├── ipc_event_stream.go │ │ │ │ ├── ipc_event_stream_test.go │ │ │ │ ├── ipc_log_stream.go │ │ │ │ ├── ipc_log_stream_test.go │ │ │ │ ├── ipc_query_response_stream.go │ │ │ │ ├── log_levels.go │ │ │ │ ├── log_writer.go │ │ │ │ ├── log_writer_test.go │ │ │ │ ├── mdns.go │ │ │ │ ├── rpc_client_test.go │ │ │ │ ├── syslog.go │ │ │ │ ├── syslog_test.go │ │ │ │ ├── util.go │ │ │ │ └── util_test.go │ │ │ ├── event.go │ │ │ ├── event_test.go │ │ │ ├── force_leave.go │ │ │ ├── force_leave_test.go │ │ │ ├── info.go │ │ │ ├── info_test.go │ │ │ ├── join.go │ │ │ ├── join_test.go │ │ │ ├── keygen.go │ │ │ ├── keygen_test.go │ │ │ ├── keys.go │ │ │ ├── keys_test.go │ │ │ ├── leave.go │ │ │ ├── leave_test.go │ │ │ ├── members.go │ │ │ ├── members_test.go │ │ │ ├── monitor.go │ │ │ ├── output.go │ │ │ ├── output_test.go │ │ │ ├── query.go │ │ │ ├── query_test.go │ │ │ ├── reachability.go │ │ │ ├── reachability_test.go │ │ │ ├── rpc.go │ │ │ ├── rtt.go │ │ │ ├── rtt_test.go │ │ │ ├── tags.go │ │ │ ├── tags_test.go │ │ │ ├── util_test.go │ │ │ ├── version.go │ │ │ └── version_test.go │ │ │ ├── commands.go │ │ │ ├── coordinate │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── config.go │ │ │ ├── coordinate.go │ │ │ ├── coordinate_test.go │ │ │ ├── performance_test.go │ │ │ ├── phantom.go │ │ │ └── util_test.go │ │ │ ├── demo │ │ │ ├── vagrant-cluster │ │ │ │ ├── README.md │ │ │ │ └── Vagrantfile │ │ │ └── web-load-balancer │ │ │ │ ├── README.md │ │ │ │ ├── cloudformation.json │ │ │ │ ├── setup_load_balancer.sh │ │ │ │ ├── setup_serf.sh │ │ │ │ ├── setup_web_server.sh │ │ │ │ └── user_data │ │ │ │ ├── README.md │ │ │ │ ├── dump_user_data.py │ │ │ │ ├── load_balancer_user_data.sh │ │ │ │ └── web_user_data.sh │ │ │ ├── deps │ │ │ ├── v0-6-2.json │ │ │ ├── v0-6-3.json │ │ │ ├── v0-6-4.json │ │ │ └── v0-7-0.json │ │ │ ├── main.go │ │ │ ├── main_test.go │ │ │ ├── ops-misc │ │ │ ├── README.md │ │ │ ├── debian │ │ │ │ ├── changelog │ │ │ │ ├── compat │ │ │ │ ├── control │ │ │ │ ├── copyright │ │ │ │ ├── dirs │ │ │ │ ├── install │ │ │ │ ├── postinst │ │ │ │ ├── postrm │ │ │ │ ├── rules │ │ │ │ ├── serf.init │ │ │ │ ├── serf.json.example │ │ │ │ └── serf.upstart │ │ │ ├── io.serfdom.serf.plist │ │ │ ├── serf.sysv.init │ │ │ └── systemd.conf │ │ │ ├── scripts │ │ │ ├── build.sh │ │ │ ├── dist.sh │ │ │ ├── setup_test_subnet.sh │ │ │ └── start_cluster.sh │ │ │ ├── serf │ │ │ ├── broadcast.go │ │ │ ├── broadcast_test.go │ │ │ ├── coalesce.go │ │ │ ├── coalesce_member.go │ │ │ ├── coalesce_member_test.go │ │ │ ├── coalesce_test.go │ │ │ ├── coalesce_user.go │ │ │ ├── coalesce_user_test.go │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── conflict_delegate.go │ │ │ ├── delegate.go │ │ │ ├── delegate_test.go │ │ │ ├── event.go │ │ │ ├── event_delegate.go │ │ │ ├── event_test.go │ │ │ ├── internal_query.go │ │ │ ├── internal_query_test.go │ │ │ ├── keymanager.go │ │ │ ├── keymanager_test.go │ │ │ ├── lamport.go │ │ │ ├── lamport_test.go │ │ │ ├── merge_delegate.go │ │ │ ├── messages.go │ │ │ ├── messages_test.go │ │ │ ├── ping_delegate.go │ │ │ ├── query.go │ │ │ ├── query_test.go │ │ │ ├── serf.go │ │ │ ├── serf_internals_test.go │ │ │ ├── serf_test.go │ │ │ ├── snapshot.go │ │ │ └── snapshot_test.go │ │ │ ├── testutil │ │ │ ├── addr.go │ │ │ ├── testutil_test.go │ │ │ └── yield.go │ │ │ ├── vendor │ │ │ ├── github.com │ │ │ │ ├── armon │ │ │ │ │ ├── circbuf │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── circbuf.go │ │ │ │ │ ├── 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 │ │ │ │ ├── bgentry │ │ │ │ │ └── speakeasy │ │ │ │ │ │ ├── LICENSE_WINDOWS │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── speakeasy.go │ │ │ │ │ │ ├── speakeasy_unix.go │ │ │ │ │ │ └── speakeasy_windows.go │ │ │ │ ├── hashicorp │ │ │ │ │ ├── errwrap │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── errwrap.go │ │ │ │ │ ├── go-msgpack │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ └── codec │ │ │ │ │ │ │ ├── 0doc.go │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── binc.go │ │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ │ ├── helper.go │ │ │ │ │ │ │ ├── helper_internal.go │ │ │ │ │ │ │ ├── msgpack.go │ │ │ │ │ │ │ ├── msgpack_test.py │ │ │ │ │ │ │ ├── rpc.go │ │ │ │ │ │ │ ├── simple.go │ │ │ │ │ │ │ └── time.go │ │ │ │ │ ├── go-multierror │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── append.go │ │ │ │ │ │ ├── flatten.go │ │ │ │ │ │ ├── format.go │ │ │ │ │ │ ├── multierror.go │ │ │ │ │ │ └── prefix.go │ │ │ │ │ ├── go-syslog │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── builtin.go │ │ │ │ │ │ ├── syslog.go │ │ │ │ │ │ ├── unix.go │ │ │ │ │ │ └── unsupported.go │ │ │ │ │ ├── go.net │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── PATENTS │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ └── iana │ │ │ │ │ │ │ │ ├── const.go │ │ │ │ │ │ │ │ └── gen.go │ │ │ │ │ │ ├── ipv4 │ │ │ │ │ │ │ ├── control.go │ │ │ │ │ │ │ ├── control_bsd.go │ │ │ │ │ │ │ ├── control_pktinfo.go │ │ │ │ │ │ │ ├── control_stub.go │ │ │ │ │ │ │ ├── control_unix.go │ │ │ │ │ │ │ ├── control_windows.go │ │ │ │ │ │ │ ├── defs_darwin.go │ │ │ │ │ │ │ ├── defs_dragonfly.go │ │ │ │ │ │ │ ├── defs_freebsd.go │ │ │ │ │ │ │ ├── defs_linux.go │ │ │ │ │ │ │ ├── defs_netbsd.go │ │ │ │ │ │ │ ├── defs_openbsd.go │ │ │ │ │ │ │ ├── defs_solaris.go │ │ │ │ │ │ │ ├── dgramopt_posix.go │ │ │ │ │ │ │ ├── dgramopt_stub.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── endpoint.go │ │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ │ ├── genericopt_posix.go │ │ │ │ │ │ │ ├── genericopt_stub.go │ │ │ │ │ │ │ ├── header.go │ │ │ │ │ │ │ ├── helper.go │ │ │ │ │ │ │ ├── helper_stub.go │ │ │ │ │ │ │ ├── helper_unix.go │ │ │ │ │ │ │ ├── helper_windows.go │ │ │ │ │ │ │ ├── iana.go │ │ │ │ │ │ │ ├── icmp.go │ │ │ │ │ │ │ ├── packet.go │ │ │ │ │ │ │ ├── payload.go │ │ │ │ │ │ │ ├── payload_cmsg.go │ │ │ │ │ │ │ ├── payload_nocmsg.go │ │ │ │ │ │ │ ├── sockopt.go │ │ │ │ │ │ │ ├── sockopt_asmreq.go │ │ │ │ │ │ │ ├── sockopt_asmreq_stub.go │ │ │ │ │ │ │ ├── sockopt_asmreq_unix.go │ │ │ │ │ │ │ ├── sockopt_asmreq_windows.go │ │ │ │ │ │ │ ├── sockopt_asmreqn_stub.go │ │ │ │ │ │ │ ├── sockopt_asmreqn_unix.go │ │ │ │ │ │ │ ├── sockopt_stub.go │ │ │ │ │ │ │ ├── sockopt_unix.go │ │ │ │ │ │ │ ├── sockopt_windows.go │ │ │ │ │ │ │ ├── sys_bsd.go │ │ │ │ │ │ │ ├── sys_darwin.go │ │ │ │ │ │ │ ├── sys_freebsd.go │ │ │ │ │ │ │ ├── sys_linux.go │ │ │ │ │ │ │ ├── sys_openbsd.go │ │ │ │ │ │ │ ├── sys_stub.go │ │ │ │ │ │ │ ├── sys_windows.go │ │ │ │ │ │ │ ├── syscall_linux_386.go │ │ │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ │ │ ├── thunk_linux_386.s │ │ │ │ │ │ │ ├── zsys_darwin.go │ │ │ │ │ │ │ ├── zsys_dragonfly.go │ │ │ │ │ │ │ ├── zsys_freebsd.go │ │ │ │ │ │ │ ├── zsys_linux.go │ │ │ │ │ │ │ ├── zsys_netbsd.go │ │ │ │ │ │ │ ├── zsys_openbsd.go │ │ │ │ │ │ │ └── zsys_solaris.go │ │ │ │ │ │ └── ipv6 │ │ │ │ │ │ │ ├── control.go │ │ │ │ │ │ │ ├── control_rfc2292_unix.go │ │ │ │ │ │ │ ├── control_rfc3542_stub.go │ │ │ │ │ │ │ ├── control_rfc3542_unix.go │ │ │ │ │ │ │ ├── control_rfc3542_windows.go │ │ │ │ │ │ │ ├── defs_darwin.go │ │ │ │ │ │ │ ├── defs_dragonfly.go │ │ │ │ │ │ │ ├── defs_freebsd.go │ │ │ │ │ │ │ ├── defs_linux.go │ │ │ │ │ │ │ ├── defs_netbsd.go │ │ │ │ │ │ │ ├── defs_openbsd.go │ │ │ │ │ │ │ ├── defs_solaris.go │ │ │ │ │ │ │ ├── dgramopt_posix.go │ │ │ │ │ │ │ ├── dgramopt_stub.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── endpoint.go │ │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ │ ├── genericopt_posix.go │ │ │ │ │ │ │ ├── genericopt_stub.go │ │ │ │ │ │ │ ├── gentest.go │ │ │ │ │ │ │ ├── helper.go │ │ │ │ │ │ │ ├── helper_stub.go │ │ │ │ │ │ │ ├── helper_unix.go │ │ │ │ │ │ │ ├── helper_windows.go │ │ │ │ │ │ │ ├── iana.go │ │ │ │ │ │ │ ├── icmp.go │ │ │ │ │ │ │ ├── icmp_bsd.go │ │ │ │ │ │ │ ├── icmp_linux.go │ │ │ │ │ │ │ ├── icmp_stub.go │ │ │ │ │ │ │ ├── icmp_windows.go │ │ │ │ │ │ │ ├── payload.go │ │ │ │ │ │ │ ├── payload_cmsg.go │ │ │ │ │ │ │ ├── payload_nocmsg.go │ │ │ │ │ │ │ ├── sockopt.go │ │ │ │ │ │ │ ├── sockopt_rfc2292_unix.go │ │ │ │ │ │ │ ├── sockopt_rfc3493_bsd.go │ │ │ │ │ │ │ ├── sockopt_rfc3493_linux.go │ │ │ │ │ │ │ ├── sockopt_rfc3493_unix.go │ │ │ │ │ │ │ ├── sockopt_rfc3493_windows.go │ │ │ │ │ │ │ ├── sockopt_rfc3542_stub.go │ │ │ │ │ │ │ ├── sockopt_rfc3542_unix.go │ │ │ │ │ │ │ ├── sockopt_rfc3542_windows.go │ │ │ │ │ │ │ ├── sys.go │ │ │ │ │ │ │ ├── sys_bsd.go │ │ │ │ │ │ │ ├── sys_darwin.go │ │ │ │ │ │ │ ├── sys_linux.go │ │ │ │ │ │ │ ├── sys_unix.go │ │ │ │ │ │ │ ├── sys_windows.go │ │ │ │ │ │ │ ├── syscall_linux_386.go │ │ │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ │ │ ├── thunk_linux_386.s │ │ │ │ │ │ │ ├── zsys_darwin.go │ │ │ │ │ │ │ ├── zsys_dragonfly.go │ │ │ │ │ │ │ ├── zsys_freebsd.go │ │ │ │ │ │ │ ├── zsys_linux.go │ │ │ │ │ │ │ ├── zsys_netbsd.go │ │ │ │ │ │ │ ├── zsys_openbsd.go │ │ │ │ │ │ │ └── zsys_solaris.go │ │ │ │ │ ├── logutils │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── level.go │ │ │ │ │ ├── mdns │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── server.go │ │ │ │ │ │ └── zone.go │ │ │ │ │ └── memberlist │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── net.go │ │ │ │ │ │ ├── ping_delegate.go │ │ │ │ │ │ ├── queue.go │ │ │ │ │ │ ├── security.go │ │ │ │ │ │ ├── state.go │ │ │ │ │ │ ├── suspicion.go │ │ │ │ │ │ ├── todo.md │ │ │ │ │ │ └── util.go │ │ │ │ ├── mattn │ │ │ │ │ └── go-isatty │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── isatty_appengine.go │ │ │ │ │ │ ├── isatty_bsd.go │ │ │ │ │ │ ├── isatty_linux.go │ │ │ │ │ │ ├── isatty_solaris.go │ │ │ │ │ │ └── isatty_windows.go │ │ │ │ ├── miekg │ │ │ │ │ └── dns │ │ │ │ │ │ ├── AUTHORS │ │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ │ ├── COPYRIGHT │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── types_generate.go │ │ │ │ │ │ ├── udp.go │ │ │ │ │ │ ├── udp_linux.go │ │ │ │ │ │ ├── udp_other.go │ │ │ │ │ │ ├── udp_plan9.go │ │ │ │ │ │ ├── udp_windows.go │ │ │ │ │ │ ├── update.go │ │ │ │ │ │ ├── xfr.go │ │ │ │ │ │ ├── zgenerate.go │ │ │ │ │ │ ├── zscan.go │ │ │ │ │ │ ├── zscan_rr.go │ │ │ │ │ │ └── ztypes.go │ │ │ │ ├── mitchellh │ │ │ │ │ ├── cli │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── cli.go │ │ │ │ │ │ ├── command.go │ │ │ │ │ │ ├── command_mock.go │ │ │ │ │ │ ├── help.go │ │ │ │ │ │ ├── ui.go │ │ │ │ │ │ ├── ui_colored.go │ │ │ │ │ │ ├── ui_concurrent.go │ │ │ │ │ │ ├── ui_mock.go │ │ │ │ │ │ └── ui_writer.go │ │ │ │ │ └── mapstructure │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── decode_hooks.go │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ └── mapstructure.go │ │ │ │ └── ryanuber │ │ │ │ │ └── columnize │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── README.md │ │ │ │ │ └── columnize.go │ │ │ ├── golang.org │ │ │ │ └── x │ │ │ │ │ └── sys │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── PATENTS │ │ │ │ │ └── unix │ │ │ │ │ ├── asm.s │ │ │ │ │ ├── asm_darwin_386.s │ │ │ │ │ ├── asm_darwin_amd64.s │ │ │ │ │ ├── asm_darwin_arm.s │ │ │ │ │ ├── asm_darwin_arm64.s │ │ │ │ │ ├── asm_dragonfly_386.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_ppc64x.s │ │ │ │ │ ├── asm_netbsd_386.s │ │ │ │ │ ├── asm_netbsd_amd64.s │ │ │ │ │ ├── asm_netbsd_arm.s │ │ │ │ │ ├── asm_openbsd_386.s │ │ │ │ │ ├── asm_openbsd_amd64.s │ │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── env_unix.go │ │ │ │ │ ├── env_unset.go │ │ │ │ │ ├── flock.go │ │ │ │ │ ├── flock_linux_32bit.go │ │ │ │ │ ├── gccgo.go │ │ │ │ │ ├── gccgo_c.c │ │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ │ ├── mkall.sh │ │ │ │ │ ├── mkerrors.sh │ │ │ │ │ ├── mksyscall.pl │ │ │ │ │ ├── mksyscall_solaris.pl │ │ │ │ │ ├── mksysctl_openbsd.pl │ │ │ │ │ ├── mksysnum_darwin.pl │ │ │ │ │ ├── mksysnum_dragonfly.pl │ │ │ │ │ ├── mksysnum_freebsd.pl │ │ │ │ │ ├── mksysnum_linux.pl │ │ │ │ │ ├── mksysnum_netbsd.pl │ │ │ │ │ ├── mksysnum_openbsd.pl │ │ │ │ │ ├── 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_386.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_arm.go │ │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ │ ├── syscall_linux_mips64x.go │ │ │ │ │ ├── syscall_linux_ppc64x.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_solaris.go │ │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ ├── types_darwin.go │ │ │ │ │ ├── types_dragonfly.go │ │ │ │ │ ├── types_freebsd.go │ │ │ │ │ ├── types_linux.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_386.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_mips64.go │ │ │ │ │ ├── zerrors_linux_mips64le.go │ │ │ │ │ ├── zerrors_linux_ppc64.go │ │ │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ │ │ ├── zerrors_netbsd_386.go │ │ │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ │ │ ├── zerrors_netbsd_arm.go │ │ │ │ │ ├── zerrors_openbsd_386.go │ │ │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ │ │ ├── zerrors_solaris_amd64.go │ │ │ │ │ ├── zsyscall_darwin_386.go │ │ │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ │ │ ├── zsyscall_darwin_arm.go │ │ │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ │ │ ├── zsyscall_dragonfly_386.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_mips64.go │ │ │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ │ │ ├── zsyscall_netbsd_386.go │ │ │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ │ │ ├── zsyscall_openbsd_386.go │ │ │ │ │ ├── zsyscall_openbsd_amd64.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_386.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_mips64.go │ │ │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ │ │ ├── zsysnum_netbsd_386.go │ │ │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ │ │ ├── zsysnum_openbsd_386.go │ │ │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ │ │ ├── zsysnum_solaris_amd64.go │ │ │ │ │ ├── ztypes_darwin_386.go │ │ │ │ │ ├── ztypes_darwin_amd64.go │ │ │ │ │ ├── ztypes_darwin_arm.go │ │ │ │ │ ├── ztypes_darwin_arm64.go │ │ │ │ │ ├── ztypes_dragonfly_386.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_mips64.go │ │ │ │ │ ├── ztypes_linux_mips64le.go │ │ │ │ │ ├── ztypes_linux_ppc64.go │ │ │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ │ │ ├── ztypes_netbsd_386.go │ │ │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ │ │ ├── ztypes_netbsd_arm.go │ │ │ │ │ ├── ztypes_openbsd_386.go │ │ │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ │ │ └── ztypes_solaris_amd64.go │ │ │ └── vendor.json │ │ │ ├── version.go │ │ │ └── website │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── config.rb │ │ │ ├── packer.json │ │ │ ├── scripts │ │ │ └── deploy.sh │ │ │ └── source │ │ │ ├── 404.html.erb │ │ │ ├── LICENSE │ │ │ ├── assets │ │ │ ├── images │ │ │ │ ├── custom-event-icon.png │ │ │ │ ├── custom-event-icon@2x.png │ │ │ │ ├── failure-detect-icon.png │ │ │ │ ├── failure-detect-icon@2x.png │ │ │ │ ├── favicon.png │ │ │ │ ├── footer-pattern.jpg │ │ │ │ ├── gossip-proto-icon.png │ │ │ │ ├── gossip-proto-icon@2x.png │ │ │ │ ├── hashi-logo-s.png │ │ │ │ ├── logo-circle-logo.png │ │ │ │ ├── logo-circle-logo@2x.png │ │ │ │ ├── logo-type-medium.png │ │ │ │ ├── logo-type-medium@2x.png │ │ │ │ ├── logo-type-small.png │ │ │ │ ├── logo-type-small@2x.png │ │ │ │ ├── logo_large.png │ │ │ │ ├── node-hero-pattern.jpg │ │ │ │ └── node-hero-pattern@2x.jpg │ │ │ ├── javascripts │ │ │ │ ├── _serf.js │ │ │ │ ├── application.js │ │ │ │ └── lib │ │ │ │ │ ├── _base.js │ │ │ │ │ ├── _classy.js │ │ │ │ │ ├── _d3.js │ │ │ │ │ ├── _highcharts.js │ │ │ │ │ ├── _sidebar.js │ │ │ │ │ └── _simulator.js │ │ │ └── stylesheets │ │ │ │ ├── _community.scss │ │ │ │ ├── _docs.scss │ │ │ │ ├── _downloads.scss │ │ │ │ ├── _fonts.scss │ │ │ │ ├── _footer.scss │ │ │ │ ├── _global.scss │ │ │ │ ├── _header.scss │ │ │ │ ├── _home.scss │ │ │ │ ├── _jumbotron.scss │ │ │ │ ├── _nodes.scss │ │ │ │ ├── _sidebar.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── application.scss │ │ │ │ └── hashicorp-shared │ │ │ │ ├── _hashicorp-header.scss │ │ │ │ ├── _hashicorp-sidebar.scss │ │ │ │ ├── _hashicorp-utility.scss │ │ │ │ └── _project-utility.scss │ │ │ ├── community.html.erb │ │ │ ├── docs │ │ │ ├── agent │ │ │ │ ├── basics.html.markdown │ │ │ │ ├── encryption.html.markdown │ │ │ │ ├── event-handlers.html.markdown │ │ │ │ ├── logging.html.markdown │ │ │ │ ├── options.html.markdown │ │ │ │ ├── rpc.html.markdown │ │ │ │ └── telemetry.html.markdown │ │ │ ├── commands │ │ │ │ ├── agent.html.markdown │ │ │ │ ├── event.html.markdown │ │ │ │ ├── force-leave.html.markdown │ │ │ │ ├── index.html.markdown │ │ │ │ ├── info.html.markdown │ │ │ │ ├── join.html.markdown │ │ │ │ ├── keygen.html.markdown │ │ │ │ ├── keys.html.markdown │ │ │ │ ├── leave.html.markdown │ │ │ │ ├── members.html.markdown │ │ │ │ ├── monitor.html.markdown │ │ │ │ ├── query.html.markdown │ │ │ │ ├── reachability.html.markdown │ │ │ │ ├── rtt.html.markdown │ │ │ │ └── tags.html.markdown │ │ │ ├── compatibility.html.markdown │ │ │ ├── index.html.markdown │ │ │ ├── internals │ │ │ │ ├── coordinates.html.markdown │ │ │ │ ├── gossip.html.markdown │ │ │ │ ├── index.html.markdown │ │ │ │ ├── security.html.markdown │ │ │ │ └── simulator.html.markdown │ │ │ ├── recipes.html.markdown │ │ │ ├── recipes │ │ │ │ ├── agent-uptime.html.markdown │ │ │ │ └── event-handler-router.html.markdown │ │ │ ├── roadmap.html.markdown │ │ │ └── upgrading.html.markdown │ │ │ ├── downloads.html.erb │ │ │ ├── index.html.erb │ │ │ ├── intro │ │ │ ├── getting-started │ │ │ │ ├── agent.html.markdown │ │ │ │ ├── event-handlers.html.markdown │ │ │ │ ├── install.html.markdown │ │ │ │ ├── join.html.markdown │ │ │ │ ├── next-steps.html.markdown │ │ │ │ ├── queries.html.markdown │ │ │ │ └── user-events.html.markdown │ │ │ ├── index.html.markdown │ │ │ ├── use-cases.html.markdown │ │ │ ├── vs-chef-puppet.html.markdown │ │ │ ├── vs-consul.html.markdown │ │ │ ├── vs-custom.html.markdown │ │ │ ├── vs-fabric.html.markdown │ │ │ ├── vs-other-sw.html.markdown │ │ │ └── vs-zookeeper.html.markdown │ │ │ ├── layouts │ │ │ ├── _sidebar.erb │ │ │ ├── docs.erb │ │ │ ├── inner.erb │ │ │ ├── intro.erb │ │ │ ├── layout.erb │ │ │ └── svg │ │ │ │ ├── _svg-by-hashicorp.erb │ │ │ │ ├── _svg-download.erb │ │ │ │ ├── _svg-github.erb │ │ │ │ └── _svg-hashicorp-logo.erb │ │ │ ├── robots.txt │ │ │ └── sitemap.xml.builder │ ├── influxdata │ │ └── influxdb │ │ │ ├── .dockerignore │ │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── .hooks │ │ │ └── pre-commit │ │ │ ├── .mention-bot │ │ │ ├── CHANGELOG.md │ │ │ ├── CODING_GUIDELINES.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── DOCKER.md │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile_build_ubuntu32 │ │ │ ├── Dockerfile_build_ubuntu64 │ │ │ ├── Dockerfile_build_ubuntu64_git │ │ │ ├── Dockerfile_test_ubuntu32 │ │ │ ├── Godeps │ │ │ ├── LICENSE │ │ │ ├── LICENSE_OF_DEPENDENCIES.md │ │ │ ├── Makefile │ │ │ ├── QUERIES.md │ │ │ ├── README.md │ │ │ ├── TODO.md │ │ │ ├── appveyor.yml │ │ │ ├── build-docker.sh │ │ │ ├── build.py │ │ │ ├── build.sh │ │ │ ├── circle-test.sh │ │ │ ├── circle.yml │ │ │ ├── client │ │ │ ├── README.md │ │ │ ├── example_test.go │ │ │ ├── influxdb.go │ │ │ ├── influxdb_test.go │ │ │ └── v2 │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── example_test.go │ │ │ │ └── udp.go │ │ │ ├── cmd │ │ │ ├── influx │ │ │ │ ├── cli │ │ │ │ │ ├── cli.go │ │ │ │ │ ├── cli_internal_test.go │ │ │ │ │ ├── cli_test.go │ │ │ │ │ ├── parser.go │ │ │ │ │ └── parser_internal_test.go │ │ │ │ └── main.go │ │ │ ├── influx_inspect │ │ │ │ ├── README.md │ │ │ │ ├── dumptsm │ │ │ │ │ ├── dumptsm.go │ │ │ │ │ └── dumptsm_test.go │ │ │ │ ├── export │ │ │ │ │ ├── export.go │ │ │ │ │ └── export_test.go │ │ │ │ ├── help │ │ │ │ │ ├── help.go │ │ │ │ │ └── help_test.go │ │ │ │ ├── main.go │ │ │ │ ├── report │ │ │ │ │ ├── report.go │ │ │ │ │ └── report_test.go │ │ │ │ └── verify │ │ │ │ │ ├── verify.go │ │ │ │ │ └── verify_test.go │ │ │ ├── influx_stress │ │ │ │ ├── README.md │ │ │ │ ├── examples │ │ │ │ │ └── template.toml │ │ │ │ └── influx_stress.go │ │ │ ├── influx_tsm │ │ │ │ ├── README.md │ │ │ │ ├── b1 │ │ │ │ │ └── reader.go │ │ │ │ ├── bz1 │ │ │ │ │ └── reader.go │ │ │ │ ├── converter.go │ │ │ │ ├── main.go │ │ │ │ ├── stats │ │ │ │ │ └── stats.go │ │ │ │ ├── tracker.go │ │ │ │ └── tsdb │ │ │ │ │ ├── codec.go │ │ │ │ │ ├── database.go │ │ │ │ │ ├── internal │ │ │ │ │ └── meta.pb.go │ │ │ │ │ └── types.go │ │ │ ├── influxd │ │ │ │ ├── backup │ │ │ │ │ └── backup.go │ │ │ │ ├── help │ │ │ │ │ └── help.go │ │ │ │ ├── main.go │ │ │ │ ├── restore │ │ │ │ │ └── restore.go │ │ │ │ └── run │ │ │ │ │ ├── backup_restore_test.go │ │ │ │ │ ├── command.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── config_command.go │ │ │ │ │ ├── config_test.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── server_bench_test.go │ │ │ │ │ ├── server_helpers_test.go │ │ │ │ │ ├── server_suite_test.go │ │ │ │ │ ├── server_test.go │ │ │ │ │ └── server_test.md │ │ │ └── parse.go │ │ │ ├── coordinator │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── meta_client.go │ │ │ ├── meta_client_test.go │ │ │ ├── points_writer.go │ │ │ ├── points_writer_internal_test.go │ │ │ ├── points_writer_test.go │ │ │ ├── shard_mapper.go │ │ │ ├── shard_mapper_test.go │ │ │ ├── statement_executor.go │ │ │ └── statement_executor_test.go │ │ │ ├── errors.go │ │ │ ├── etc │ │ │ ├── burn-in │ │ │ │ ├── .rvmrc │ │ │ │ ├── Gemfile │ │ │ │ ├── Gemfile.lock │ │ │ │ ├── burn-in.rb │ │ │ │ ├── log.rb │ │ │ │ ├── random_gaussian.rb │ │ │ │ └── random_points.rb │ │ │ └── config.sample.toml │ │ │ ├── gobuild.sh │ │ │ ├── importer │ │ │ ├── README.md │ │ │ └── v8 │ │ │ │ └── importer.go │ │ │ ├── influxdb.go │ │ │ ├── influxql │ │ │ ├── README.md │ │ │ ├── ast.go │ │ │ ├── ast_test.go │ │ │ ├── call_iterator.go │ │ │ ├── call_iterator_test.go │ │ │ ├── cast.go │ │ │ ├── doc.go │ │ │ ├── emitter.go │ │ │ ├── emitter_test.go │ │ │ ├── functions.gen.go │ │ │ ├── functions.gen.go.tmpl │ │ │ ├── functions.go │ │ │ ├── functions_test.go │ │ │ ├── influxql.go │ │ │ ├── internal │ │ │ │ ├── internal.pb.go │ │ │ │ └── internal.proto │ │ │ ├── iterator.gen.go │ │ │ ├── iterator.gen.go.tmpl │ │ │ ├── iterator.go │ │ │ ├── iterator_mapper.go │ │ │ ├── iterator_mapper_test.go │ │ │ ├── iterator_test.go │ │ │ ├── linear.go │ │ │ ├── monitor.go │ │ │ ├── neldermead │ │ │ │ ├── neldermead.go │ │ │ │ └── neldermead_test.go │ │ │ ├── parser.go │ │ │ ├── parser_test.go │ │ │ ├── point.gen.go │ │ │ ├── point.gen.go.tmpl │ │ │ ├── point.go │ │ │ ├── point_test.go │ │ │ ├── query_executor.go │ │ │ ├── query_executor_test.go │ │ │ ├── result.go │ │ │ ├── sanitize.go │ │ │ ├── sanitize_test.go │ │ │ ├── scanner.go │ │ │ ├── scanner_test.go │ │ │ ├── select.go │ │ │ ├── select_test.go │ │ │ ├── statement_rewriter.go │ │ │ ├── statement_rewriter_test.go │ │ │ ├── task_manager.go │ │ │ ├── tmpldata │ │ │ └── token.go │ │ │ ├── internal │ │ │ └── meta_client.go │ │ │ ├── man │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── footer.txt │ │ │ ├── influx.txt │ │ │ ├── influx_inspect.txt │ │ │ ├── influx_stress.txt │ │ │ ├── influx_tsm.txt │ │ │ ├── influxd-backup.txt │ │ │ ├── influxd-config.txt │ │ │ ├── influxd-restore.txt │ │ │ ├── influxd-run.txt │ │ │ ├── influxd-version.txt │ │ │ └── influxd.txt │ │ │ ├── models │ │ │ ├── consistency.go │ │ │ ├── inline_fnv.go │ │ │ ├── inline_fnv_test.go │ │ │ ├── inline_strconv_parse.go │ │ │ ├── inline_strconv_parse_test.go │ │ │ ├── points.go │ │ │ ├── points_internal_test.go │ │ │ ├── points_test.go │ │ │ ├── rows.go │ │ │ ├── statistic.go │ │ │ ├── statistic_test.go │ │ │ └── time.go │ │ │ ├── monitor │ │ │ ├── README.md │ │ │ ├── build_info.go │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── diagnostics │ │ │ │ └── diagnostics.go │ │ │ ├── go_runtime.go │ │ │ ├── network.go │ │ │ ├── reporter.go │ │ │ ├── service.go │ │ │ └── system.go │ │ │ ├── nightly.sh │ │ │ ├── node.go │ │ │ ├── package.sh │ │ │ ├── pkg │ │ │ ├── README.md │ │ │ ├── deep │ │ │ │ └── equal.go │ │ │ ├── escape │ │ │ │ ├── bytes.go │ │ │ │ ├── bytes_test.go │ │ │ │ ├── strings.go │ │ │ │ └── strings_test.go │ │ │ ├── limiter │ │ │ │ └── fixed.go │ │ │ ├── pool │ │ │ │ ├── bytes.go │ │ │ │ └── generic.go │ │ │ └── slices │ │ │ │ └── strings.go │ │ │ ├── scripts │ │ │ ├── influxdb.service │ │ │ ├── init.sh │ │ │ ├── logrotate │ │ │ ├── post-install.sh │ │ │ ├── post-uninstall.sh │ │ │ └── pre-install.sh │ │ │ ├── services │ │ │ ├── admin │ │ │ │ ├── README.md │ │ │ │ ├── admin.go │ │ │ │ ├── assets │ │ │ │ │ ├── README.md │ │ │ │ │ ├── css │ │ │ │ │ │ ├── admin.css │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ └── dropdowns-enhancement.css │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ ├── img │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ └── influxdb-light400.png │ │ │ │ │ ├── index.html │ │ │ │ │ └── js │ │ │ │ │ │ ├── admin.js │ │ │ │ │ │ └── vendor │ │ │ │ │ │ ├── bootstrap-3.3.5.min.js │ │ │ │ │ │ ├── jquery-2.1.4.min.js │ │ │ │ │ │ └── react-0.13.3.min.js │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── service.go │ │ │ │ ├── service_test.go │ │ │ │ └── statik │ │ │ │ │ ├── README.md │ │ │ │ │ └── statik.go │ │ │ ├── collectd │ │ │ │ ├── README.md │ │ │ │ ├── collectd_test.conf │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── service.go │ │ │ │ ├── service_test.go │ │ │ │ └── test_client │ │ │ │ │ ├── README.md │ │ │ │ │ └── client.go │ │ │ ├── continuous_querier │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── continuous_queries.md │ │ │ │ ├── service.go │ │ │ │ └── service_test.go │ │ │ ├── graphite │ │ │ │ ├── README.md │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── errors.go │ │ │ │ ├── parser.go │ │ │ │ ├── parser_test.go │ │ │ │ ├── service.go │ │ │ │ └── service_test.go │ │ │ ├── httpd │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── handler.go │ │ │ │ ├── handler_test.go │ │ │ │ ├── listen.go │ │ │ │ ├── listen_test.go │ │ │ │ ├── response_logger.go │ │ │ │ ├── response_writer.go │ │ │ │ └── service.go │ │ │ ├── meta │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── data.go │ │ │ │ ├── data_internal_test.go │ │ │ │ ├── data_test.go │ │ │ │ ├── errors.go │ │ │ │ ├── file_unix.go │ │ │ │ ├── file_windows.go │ │ │ │ ├── internal │ │ │ │ │ ├── meta.pb.go │ │ │ │ │ └── meta.proto │ │ │ │ ├── meta_test.go │ │ │ │ ├── query_authorizer.go │ │ │ │ └── write_authorizer.go │ │ │ ├── opentsdb │ │ │ │ ├── README.md │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── handler.go │ │ │ │ ├── service.go │ │ │ │ └── service_test.go │ │ │ ├── precreator │ │ │ │ ├── README.md │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── service.go │ │ │ │ └── service_test.go │ │ │ ├── retention │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ └── service.go │ │ │ ├── snapshotter │ │ │ │ ├── client.go │ │ │ │ ├── service.go │ │ │ │ └── service_test.go │ │ │ ├── subscriber │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── http.go │ │ │ │ ├── service.go │ │ │ │ ├── service_test.go │ │ │ │ └── udp.go │ │ │ └── udp │ │ │ │ ├── README.md │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── service.go │ │ │ │ └── service_test.go │ │ │ ├── stress │ │ │ ├── DESIGN.md │ │ │ ├── README.md │ │ │ ├── basic.go │ │ │ ├── config.go │ │ │ ├── run.go │ │ │ ├── stress.toml │ │ │ ├── stress_test.go │ │ │ ├── stress_test_server │ │ │ │ └── server.go │ │ │ ├── template.go │ │ │ ├── util.go │ │ │ └── v2 │ │ │ │ ├── DESIGN.md │ │ │ │ ├── README.md │ │ │ │ ├── influx_stress_v2.png │ │ │ │ ├── iql │ │ │ │ ├── default.iql │ │ │ │ └── file.iql │ │ │ │ ├── main.go │ │ │ │ ├── statement │ │ │ │ ├── exec.go │ │ │ │ ├── exec_test.go │ │ │ │ ├── function.go │ │ │ │ ├── function_test.go │ │ │ │ ├── go.go │ │ │ │ ├── go_test.go │ │ │ │ ├── influxql.go │ │ │ │ ├── influxql_test.go │ │ │ │ ├── insert.go │ │ │ │ ├── insert_test.go │ │ │ │ ├── query.go │ │ │ │ ├── query_test.go │ │ │ │ ├── report.go │ │ │ │ ├── report_test.go │ │ │ │ ├── response_time.go │ │ │ │ ├── response_time_test.go │ │ │ │ ├── set.go │ │ │ │ ├── set_test.go │ │ │ │ ├── statement.go │ │ │ │ ├── template.go │ │ │ │ ├── template_test.go │ │ │ │ ├── timestamp.go │ │ │ │ ├── timestamp_test.go │ │ │ │ ├── wait.go │ │ │ │ └── wait_test.go │ │ │ │ ├── stress_client │ │ │ │ ├── commune.go │ │ │ │ ├── commune_test.go │ │ │ │ ├── directive.go │ │ │ │ ├── directive_test.go │ │ │ │ ├── package.go │ │ │ │ ├── package_test.go │ │ │ │ ├── reporting.go │ │ │ │ ├── reporting_test.go │ │ │ │ ├── response.go │ │ │ │ ├── response_test.go │ │ │ │ ├── stressTest.go │ │ │ │ ├── stressTest_test.go │ │ │ │ ├── stress_client.go │ │ │ │ ├── stress_client_query.go │ │ │ │ ├── stress_client_write.go │ │ │ │ ├── tracer.go │ │ │ │ ├── tracer_test.go │ │ │ │ └── util.go │ │ │ │ └── stressql │ │ │ │ ├── parser.go │ │ │ │ ├── parser_test.go │ │ │ │ └── statement │ │ │ │ ├── parser.go │ │ │ │ └── parser_test.go │ │ │ ├── tcp │ │ │ ├── mux.go │ │ │ └── mux_test.go │ │ │ ├── test.sh │ │ │ ├── tests │ │ │ ├── README.md │ │ │ ├── create_future_writes.sh │ │ │ ├── create_write_multiple_query.sh │ │ │ ├── create_write_single_query.sh │ │ │ ├── create_write_single_with_multiple_measurements_values_tags.sh │ │ │ ├── create_write_single_with_multiple_tags_query.sh │ │ │ ├── distinct-data-scenarios.sh │ │ │ ├── read_write_gzip.sh │ │ │ ├── siege │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ └── urlgen │ │ │ ├── tmux │ │ │ │ ├── 3_shards │ │ │ │ ├── README.md │ │ │ │ ├── sample.json │ │ │ │ ├── seed.sh │ │ │ │ ├── server_8086.toml │ │ │ │ ├── server_8087.toml │ │ │ │ └── server_8088.toml │ │ │ └── urlgen │ │ │ │ └── urlgen.go │ │ │ ├── toml │ │ │ ├── toml.go │ │ │ └── toml_test.go │ │ │ ├── tsdb │ │ │ ├── README.md │ │ │ ├── batcher.go │ │ │ ├── batcher_test.go │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── cursor.go │ │ │ ├── doc.go │ │ │ ├── engine.go │ │ │ ├── engine │ │ │ │ ├── engine.go │ │ │ │ └── tsm1 │ │ │ │ │ ├── DESIGN.md │ │ │ │ │ ├── bit_reader.go │ │ │ │ │ ├── bit_reader_test.go │ │ │ │ │ ├── bool.go │ │ │ │ │ ├── bool_test.go │ │ │ │ │ ├── cache.go │ │ │ │ │ ├── cache_race_test.go │ │ │ │ │ ├── cache_test.go │ │ │ │ │ ├── compact.go │ │ │ │ │ ├── compact_test.go │ │ │ │ │ ├── cursor.go │ │ │ │ │ ├── encoding.gen.go │ │ │ │ │ ├── encoding.gen.go.tmpl │ │ │ │ │ ├── encoding.gen.go.tmpldata │ │ │ │ │ ├── encoding.go │ │ │ │ │ ├── encoding_test.go │ │ │ │ │ ├── engine.go │ │ │ │ │ ├── engine_test.go │ │ │ │ │ ├── file_store.gen.go │ │ │ │ │ ├── file_store.gen.go.tmpl │ │ │ │ │ ├── file_store.gen.go.tmpldata │ │ │ │ │ ├── file_store.go │ │ │ │ │ ├── file_store_test.go │ │ │ │ │ ├── file_unix.go │ │ │ │ │ ├── file_windows.go │ │ │ │ │ ├── float.go │ │ │ │ │ ├── float_test.go │ │ │ │ │ ├── int.go │ │ │ │ │ ├── int_test.go │ │ │ │ │ ├── iterator.gen.go │ │ │ │ │ ├── iterator.gen.go.tmpl │ │ │ │ │ ├── iterator.gen.go.tmpldata │ │ │ │ │ ├── iterator.go │ │ │ │ │ ├── mmap_solaris.go │ │ │ │ │ ├── mmap_unix.go │ │ │ │ │ ├── mmap_windows.go │ │ │ │ │ ├── pools.go │ │ │ │ │ ├── reader.go │ │ │ │ │ ├── reader_test.go │ │ │ │ │ ├── ring.go │ │ │ │ │ ├── ring_test.go │ │ │ │ │ ├── string.go │ │ │ │ │ ├── string_test.go │ │ │ │ │ ├── timestamp.go │ │ │ │ │ ├── timestamp_test.go │ │ │ │ │ ├── tombstone.go │ │ │ │ │ ├── tombstone_test.go │ │ │ │ │ ├── wal.go │ │ │ │ │ ├── wal_test.go │ │ │ │ │ ├── writer.go │ │ │ │ │ └── writer_test.go │ │ │ ├── internal │ │ │ │ ├── meta.pb.go │ │ │ │ └── meta.proto │ │ │ ├── meta.go │ │ │ ├── meta_test.go │ │ │ ├── shard.go │ │ │ ├── shard_test.go │ │ │ ├── store.go │ │ │ └── store_test.go │ │ │ └── uuid │ │ │ └── uuid.go │ ├── matttproud │ │ └── golang_protobuf_extensions │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile.TRAVIS │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── ext │ │ │ └── moved.go │ │ │ ├── pbtest │ │ │ └── deleted.go │ │ │ ├── pbutil │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── all_test.go │ │ │ ├── decode.go │ │ │ ├── decode_test.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ └── encode_test.go │ │ │ └── testdata │ │ │ ├── README.THIRD_PARTY │ │ │ ├── test.pb.go │ │ │ └── test.proto │ ├── opencontainers │ │ └── runc │ │ │ ├── .gitignore │ │ │ ├── .pullapprove.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Dockerfile │ │ │ ├── Godeps │ │ │ ├── Godeps.json │ │ │ ├── Readme │ │ │ └── _workspace │ │ │ │ ├── .gitignore │ │ │ │ └── src │ │ │ │ └── github.com │ │ │ │ ├── Sirupsen │ │ │ │ └── logrus │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── entry.go │ │ │ │ │ ├── examples │ │ │ │ │ ├── basic │ │ │ │ │ │ └── basic.go │ │ │ │ │ └── hook │ │ │ │ │ │ └── hook.go │ │ │ │ │ ├── exported.go │ │ │ │ │ ├── formatter.go │ │ │ │ │ ├── formatters │ │ │ │ │ └── logstash │ │ │ │ │ │ └── logstash.go │ │ │ │ │ ├── hooks.go │ │ │ │ │ ├── hooks │ │ │ │ │ ├── airbrake │ │ │ │ │ │ └── airbrake.go │ │ │ │ │ ├── bugsnag │ │ │ │ │ │ └── bugsnag.go │ │ │ │ │ ├── papertrail │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── papertrail.go │ │ │ │ │ ├── sentry │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── sentry.go │ │ │ │ │ └── syslog │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── syslog.go │ │ │ │ │ ├── json_formatter.go │ │ │ │ │ ├── logger.go │ │ │ │ │ ├── logrus.go │ │ │ │ │ ├── terminal_darwin.go │ │ │ │ │ ├── terminal_freebsd.go │ │ │ │ │ ├── terminal_linux.go │ │ │ │ │ ├── terminal_notwindows.go │ │ │ │ │ ├── terminal_openbsd.go │ │ │ │ │ ├── terminal_windows.go │ │ │ │ │ ├── text_formatter.go │ │ │ │ │ └── writer.go │ │ │ │ ├── coreos │ │ │ │ └── go-systemd │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── activation │ │ │ │ │ ├── files.go │ │ │ │ │ ├── listeners.go │ │ │ │ │ └── packetconns.go │ │ │ │ │ ├── dbus │ │ │ │ │ ├── dbus.go │ │ │ │ │ ├── methods.go │ │ │ │ │ ├── properties.go │ │ │ │ │ ├── set.go │ │ │ │ │ ├── subscription.go │ │ │ │ │ └── subscription_set.go │ │ │ │ │ └── util │ │ │ │ │ └── util.go │ │ │ │ ├── docker │ │ │ │ ├── docker │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── NOTICE │ │ │ │ │ ├── contrib │ │ │ │ │ │ └── syntax │ │ │ │ │ │ │ └── vim │ │ │ │ │ │ │ └── LICENSE │ │ │ │ │ ├── docs │ │ │ │ │ │ └── project │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── red_notice.png │ │ │ │ │ ├── pkg │ │ │ │ │ │ ├── mflag │ │ │ │ │ │ │ └── LICENSE │ │ │ │ │ │ ├── mount │ │ │ │ │ │ │ ├── flags.go │ │ │ │ │ │ │ ├── flags_freebsd.go │ │ │ │ │ │ │ ├── flags_linux.go │ │ │ │ │ │ │ ├── flags_unsupported.go │ │ │ │ │ │ │ ├── mount.go │ │ │ │ │ │ │ ├── mounter_freebsd.go │ │ │ │ │ │ │ ├── mounter_linux.go │ │ │ │ │ │ │ ├── mounter_unsupported.go │ │ │ │ │ │ │ ├── mountinfo.go │ │ │ │ │ │ │ ├── mountinfo_freebsd.go │ │ │ │ │ │ │ ├── mountinfo_linux.go │ │ │ │ │ │ │ ├── mountinfo_unsupported.go │ │ │ │ │ │ │ └── sharedsubtree_linux.go │ │ │ │ │ │ ├── symlink │ │ │ │ │ │ │ ├── LICENSE.APACHE │ │ │ │ │ │ │ ├── LICENSE.BSD │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── fs.go │ │ │ │ │ │ └── term │ │ │ │ │ │ │ ├── tc_linux_cgo.go │ │ │ │ │ │ │ ├── tc_other.go │ │ │ │ │ │ │ ├── term.go │ │ │ │ │ │ │ ├── term_windows.go │ │ │ │ │ │ │ ├── termios_darwin.go │ │ │ │ │ │ │ ├── termios_freebsd.go │ │ │ │ │ │ │ ├── termios_linux.go │ │ │ │ │ │ │ └── winconsole │ │ │ │ │ │ │ ├── console_windows.go │ │ │ │ │ │ │ └── term_emulator.go │ │ │ │ │ └── vendor │ │ │ │ │ │ └── src │ │ │ │ │ │ └── github.com │ │ │ │ │ │ ├── BurntSushi │ │ │ │ │ │ └── toml │ │ │ │ │ │ │ └── COPYING │ │ │ │ │ │ ├── Sirupsen │ │ │ │ │ │ └── logrus │ │ │ │ │ │ │ └── LICENSE │ │ │ │ │ │ ├── armon │ │ │ │ │ │ └── go-metrics │ │ │ │ │ │ │ └── LICENSE │ │ │ │ │ │ ├── docker │ │ │ │ │ │ ├── distribution │ │ │ │ │ │ │ └── LICENSE │ │ │ │ │ │ ├── libkv │ │ │ │ │ │ │ └── LICENSE │ │ │ │ │ │ ├── libnetwork │ │ │ │ │ │ │ └── LICENSE │ │ │ │ │ │ └── libtrust │ │ │ │ │ │ │ └── LICENSE │ │ │ │ │ │ ├── go-check │ │ │ │ │ │ └── check │ │ │ │ │ │ │ └── LICENSE │ │ │ │ │ │ ├── godbus │ │ │ │ │ │ └── dbus │ │ │ │ │ │ │ └── LICENSE │ │ │ │ │ │ ├── gorilla │ │ │ │ │ │ ├── context │ │ │ │ │ │ │ └── LICENSE │ │ │ │ │ │ └── mux │ │ │ │ │ │ │ └── LICENSE │ │ │ │ │ │ ├── hashicorp │ │ │ │ │ │ └── memberlist │ │ │ │ │ │ │ └── LICENSE │ │ │ │ │ │ ├── kr │ │ │ │ │ │ └── pty │ │ │ │ │ │ │ └── License │ │ │ │ │ │ ├── mattn │ │ │ │ │ │ └── go-sqlite3 │ │ │ │ │ │ │ └── LICENSE │ │ │ │ │ │ ├── microsoft │ │ │ │ │ │ └── hcsshim │ │ │ │ │ │ │ └── LICENSE │ │ │ │ │ │ ├── mistifyio │ │ │ │ │ │ └── go-zfs │ │ │ │ │ │ │ └── LICENSE │ │ │ │ │ │ ├── natefinch │ │ │ │ │ │ └── npipe │ │ │ │ │ │ │ └── LICENSE.txt │ │ │ │ │ │ └── vishvananda │ │ │ │ │ │ ├── netlink │ │ │ │ │ │ └── LICENSE │ │ │ │ │ │ └── netns │ │ │ │ │ │ └── LICENSE │ │ │ │ └── go-units │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── duration.go │ │ │ │ │ └── size.go │ │ │ │ ├── godbus │ │ │ │ └── dbus │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── MAINTAINERS │ │ │ │ │ ├── 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 │ │ │ │ │ ├── introspect │ │ │ │ │ ├── call.go │ │ │ │ │ ├── introspect.go │ │ │ │ │ └── introspectable.go │ │ │ │ │ ├── message.go │ │ │ │ │ ├── object.go │ │ │ │ │ ├── prop │ │ │ │ │ └── prop.go │ │ │ │ │ ├── sig.go │ │ │ │ │ ├── transport_darwin.go │ │ │ │ │ ├── transport_generic.go │ │ │ │ │ ├── transport_unix.go │ │ │ │ │ ├── transport_unixcred_dragonfly.go │ │ │ │ │ ├── transport_unixcred_linux.go │ │ │ │ │ ├── variant.go │ │ │ │ │ ├── variant_lexer.go │ │ │ │ │ └── variant_parser.go │ │ │ │ ├── golang │ │ │ │ └── protobuf │ │ │ │ │ ├── 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 │ │ │ │ │ ├── proto3_proto │ │ │ │ │ ├── Makefile │ │ │ │ │ └── proto3.proto │ │ │ │ │ ├── text.go │ │ │ │ │ └── text_parser.go │ │ │ │ ├── opencontainers │ │ │ │ └── runtime-spec │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── specs-go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── state.go │ │ │ │ │ └── version.go │ │ │ │ ├── pquerna │ │ │ │ └── ffjson │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── NOTICE │ │ │ │ │ └── fflib │ │ │ │ │ └── v1 │ │ │ │ │ ├── buffer.go │ │ │ │ │ ├── buffer_nopool.go │ │ │ │ │ ├── buffer_pool.go │ │ │ │ │ ├── bytenum.go │ │ │ │ │ ├── decimal.go │ │ │ │ │ ├── extfloat.go │ │ │ │ │ ├── fold.go │ │ │ │ │ ├── ftoa.go │ │ │ │ │ ├── internal │ │ │ │ │ ├── atof.go │ │ │ │ │ ├── atoi.go │ │ │ │ │ ├── extfloat.go │ │ │ │ │ └── ftoa.go │ │ │ │ │ ├── iota.go │ │ │ │ │ ├── jsonstring.go │ │ │ │ │ ├── lexer.go │ │ │ │ │ ├── reader.go │ │ │ │ │ ├── reader_scan_amd64.go │ │ │ │ │ ├── reader_scan_amd64.s │ │ │ │ │ └── reader_scan_generic.go │ │ │ │ ├── seccomp │ │ │ │ └── libseccomp-golang │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README │ │ │ │ │ ├── seccomp.go │ │ │ │ │ └── seccomp_internal.go │ │ │ │ ├── syndtr │ │ │ │ └── gocapability │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── capability │ │ │ │ │ ├── capability.go │ │ │ │ │ ├── capability_linux.go │ │ │ │ │ ├── capability_noop.go │ │ │ │ │ ├── enum.go │ │ │ │ │ ├── enum_gen.go │ │ │ │ │ ├── enumgen │ │ │ │ │ └── gen.go │ │ │ │ │ └── syscall_linux.go │ │ │ │ ├── urfave │ │ │ │ └── cli │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── app.go │ │ │ │ │ ├── appveyor.yml │ │ │ │ │ ├── category.go │ │ │ │ │ ├── cli.go │ │ │ │ │ ├── command.go │ │ │ │ │ ├── context.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── flag.go │ │ │ │ │ ├── funcs.go │ │ │ │ │ ├── help.go │ │ │ │ │ └── runtests │ │ │ │ └── vishvananda │ │ │ │ └── netlink │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── addr.go │ │ │ │ ├── addr_linux.go │ │ │ │ ├── filter.go │ │ │ │ ├── filter_linux.go │ │ │ │ ├── link.go │ │ │ │ ├── link_linux.go │ │ │ │ ├── neigh.go │ │ │ │ ├── neigh_linux.go │ │ │ │ ├── netlink.go │ │ │ │ ├── netlink_unspecified.go │ │ │ │ ├── nl │ │ │ │ ├── addr_linux.go │ │ │ │ ├── link_linux.go │ │ │ │ ├── nl_linux.go │ │ │ │ ├── route_linux.go │ │ │ │ ├── tc_linux.go │ │ │ │ ├── xfrm_linux.go │ │ │ │ ├── xfrm_policy_linux.go │ │ │ │ └── xfrm_state_linux.go │ │ │ │ ├── protinfo.go │ │ │ │ ├── protinfo_linux.go │ │ │ │ ├── qdisc.go │ │ │ │ ├── qdisc_linux.go │ │ │ │ ├── route.go │ │ │ │ ├── route_linux.go │ │ │ │ ├── xfrm.go │ │ │ │ ├── xfrm_policy.go │ │ │ │ ├── xfrm_policy_linux.go │ │ │ │ ├── xfrm_state.go │ │ │ │ └── xfrm_state_linux.go │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── MAINTAINERS_GUIDE.md │ │ │ ├── Makefile │ │ │ ├── NOTICE │ │ │ ├── PRINCIPLES.md │ │ │ ├── README.md │ │ │ ├── VERSION │ │ │ ├── checkpoint.go │ │ │ ├── contrib │ │ │ └── completions │ │ │ │ └── bash │ │ │ │ └── runc │ │ │ ├── create.go │ │ │ ├── delete.go │ │ │ ├── events.go │ │ │ ├── exec.go │ │ │ ├── kill.go │ │ │ ├── libcontainer │ │ │ ├── README.md │ │ │ ├── SPEC.md │ │ │ ├── apparmor │ │ │ │ ├── apparmor.go │ │ │ │ └── apparmor_disabled.go │ │ │ ├── capabilities_linux.go │ │ │ ├── cgroups │ │ │ │ ├── cgroups.go │ │ │ │ ├── cgroups_test.go │ │ │ │ ├── cgroups_unsupported.go │ │ │ │ ├── fs │ │ │ │ │ ├── apply_raw.go │ │ │ │ │ ├── apply_raw_test.go │ │ │ │ │ ├── blkio.go │ │ │ │ │ ├── blkio_test.go │ │ │ │ │ ├── cpu.go │ │ │ │ │ ├── cpu_test.go │ │ │ │ │ ├── cpuacct.go │ │ │ │ │ ├── cpuset.go │ │ │ │ │ ├── cpuset_test.go │ │ │ │ │ ├── devices.go │ │ │ │ │ ├── devices_test.go │ │ │ │ │ ├── freezer.go │ │ │ │ │ ├── freezer_test.go │ │ │ │ │ ├── fs_unsupported.go │ │ │ │ │ ├── hugetlb.go │ │ │ │ │ ├── hugetlb_test.go │ │ │ │ │ ├── memory.go │ │ │ │ │ ├── memory_test.go │ │ │ │ │ ├── name.go │ │ │ │ │ ├── net_cls.go │ │ │ │ │ ├── net_cls_test.go │ │ │ │ │ ├── net_prio.go │ │ │ │ │ ├── net_prio_test.go │ │ │ │ │ ├── perf_event.go │ │ │ │ │ ├── pids.go │ │ │ │ │ ├── pids_test.go │ │ │ │ │ ├── stats_util_test.go │ │ │ │ │ ├── util_test.go │ │ │ │ │ ├── utils.go │ │ │ │ │ └── utils_test.go │ │ │ │ ├── stats.go │ │ │ │ ├── systemd │ │ │ │ │ ├── apply_nosystemd.go │ │ │ │ │ └── apply_systemd.go │ │ │ │ ├── utils.go │ │ │ │ └── utils_test.go │ │ │ ├── compat_1.5_linux.go │ │ │ ├── configs │ │ │ │ ├── blkio_device.go │ │ │ │ ├── cgroup_unix.go │ │ │ │ ├── cgroup_unsupported.go │ │ │ │ ├── cgroup_windows.go │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── config_unix.go │ │ │ │ ├── config_unix_test.go │ │ │ │ ├── config_windows_test.go │ │ │ │ ├── device.go │ │ │ │ ├── device_defaults.go │ │ │ │ ├── hugepage_limit.go │ │ │ │ ├── interface_priority_map.go │ │ │ │ ├── mount.go │ │ │ │ ├── namespaces.go │ │ │ │ ├── namespaces_syscall.go │ │ │ │ ├── namespaces_syscall_unsupported.go │ │ │ │ ├── namespaces_unix.go │ │ │ │ ├── namespaces_unsupported.go │ │ │ │ ├── network.go │ │ │ │ └── validate │ │ │ │ │ ├── validator.go │ │ │ │ │ └── validator_test.go │ │ │ ├── console.go │ │ │ ├── console_freebsd.go │ │ │ ├── console_linux.go │ │ │ ├── console_solaris.go │ │ │ ├── console_windows.go │ │ │ ├── container.go │ │ │ ├── container_linux.go │ │ │ ├── container_linux_test.go │ │ │ ├── container_solaris.go │ │ │ ├── container_windows.go │ │ │ ├── criu_opts_unix.go │ │ │ ├── criu_opts_windows.go │ │ │ ├── criurpc │ │ │ │ ├── Makefile │ │ │ │ ├── criurpc.pb.go │ │ │ │ └── criurpc.proto │ │ │ ├── devices │ │ │ │ ├── devices_test.go │ │ │ │ ├── devices_unix.go │ │ │ │ ├── devices_unsupported.go │ │ │ │ └── number.go │ │ │ ├── error.go │ │ │ ├── error_test.go │ │ │ ├── factory.go │ │ │ ├── factory_linux.go │ │ │ ├── factory_linux_test.go │ │ │ ├── generic_error.go │ │ │ ├── generic_error_test.go │ │ │ ├── init_linux.go │ │ │ ├── integration │ │ │ │ ├── checkpoint_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── exec_test.go │ │ │ │ ├── execin_test.go │ │ │ │ ├── init_test.go │ │ │ │ ├── seccomp_test.go │ │ │ │ ├── template_test.go │ │ │ │ └── utils_test.go │ │ │ ├── keys │ │ │ │ └── keyctl.go │ │ │ ├── label │ │ │ │ ├── label.go │ │ │ │ ├── label_selinux.go │ │ │ │ └── label_selinux_test.go │ │ │ ├── message_linux.go │ │ │ ├── network_linux.go │ │ │ ├── notify_linux.go │ │ │ ├── notify_linux_test.go │ │ │ ├── nsenter │ │ │ │ ├── README.md │ │ │ │ ├── nsenter.go │ │ │ │ ├── nsenter_gccgo.go │ │ │ │ ├── nsenter_test.go │ │ │ │ ├── nsenter_unsupported.go │ │ │ │ └── nsexec.c │ │ │ ├── process.go │ │ │ ├── process_linux.go │ │ │ ├── restored_process.go │ │ │ ├── rootfs_linux.go │ │ │ ├── rootfs_linux_test.go │ │ │ ├── seccomp │ │ │ │ ├── config.go │ │ │ │ ├── fixtures │ │ │ │ │ └── proc_self_status │ │ │ │ ├── seccomp_linux.go │ │ │ │ ├── seccomp_linux_test.go │ │ │ │ └── seccomp_unsupported.go │ │ │ ├── selinux │ │ │ │ ├── selinux.go │ │ │ │ └── selinux_test.go │ │ │ ├── setgroups_linux.go │ │ │ ├── setns_init_linux.go │ │ │ ├── specconv │ │ │ │ ├── spec_linux.go │ │ │ │ └── spec_linux_test.go │ │ │ ├── stacktrace │ │ │ │ ├── capture.go │ │ │ │ ├── capture_test.go │ │ │ │ ├── frame.go │ │ │ │ ├── frame_test.go │ │ │ │ └── stacktrace.go │ │ │ ├── standard_init_linux.go │ │ │ ├── state_linux.go │ │ │ ├── state_linux_test.go │ │ │ ├── stats.go │ │ │ ├── stats_freebsd.go │ │ │ ├── stats_linux.go │ │ │ ├── stats_solaris.go │ │ │ ├── stats_windows.go │ │ │ ├── system │ │ │ │ ├── linux.go │ │ │ │ ├── proc.go │ │ │ │ ├── setns_linux.go │ │ │ │ ├── syscall_linux_386.go │ │ │ │ ├── syscall_linux_64.go │ │ │ │ ├── syscall_linux_arm.go │ │ │ │ ├── sysconfig.go │ │ │ │ ├── sysconfig_notcgo.go │ │ │ │ ├── unsupported.go │ │ │ │ └── xattrs_linux.go │ │ │ ├── user │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── lookup.go │ │ │ │ ├── lookup_unix.go │ │ │ │ ├── lookup_unsupported.go │ │ │ │ ├── user.go │ │ │ │ └── user_test.go │ │ │ ├── utils │ │ │ │ ├── utils.go │ │ │ │ ├── utils_test.go │ │ │ │ └── utils_unix.go │ │ │ └── xattr │ │ │ │ ├── errors.go │ │ │ │ ├── xattr_linux.go │ │ │ │ ├── xattr_test.go │ │ │ │ └── xattr_unsupported.go │ │ │ ├── list.go │ │ │ ├── main.go │ │ │ ├── main_solaris.go │ │ │ ├── main_unix.go │ │ │ ├── main_unsupported.go │ │ │ ├── man │ │ │ ├── README.md │ │ │ ├── md2man-all.sh │ │ │ ├── runc-checkpoint.8.md │ │ │ ├── runc-delete.8.md │ │ │ ├── runc-events.8.md │ │ │ ├── runc-exec.8.md │ │ │ ├── runc-kill.8.md │ │ │ ├── runc-list.8.md │ │ │ ├── runc-pause.8.md │ │ │ ├── runc-ps.8.md │ │ │ ├── runc-restore.8.md │ │ │ ├── runc-resume.8.md │ │ │ ├── runc-spec.8.md │ │ │ ├── runc-start.8.md │ │ │ ├── runc-state.8.md │ │ │ ├── runc-update.8.md │ │ │ └── runc.8.md │ │ │ ├── pause.go │ │ │ ├── ps.go │ │ │ ├── restore.go │ │ │ ├── rlimit_linux.go │ │ │ ├── run.go │ │ │ ├── script │ │ │ ├── .validate │ │ │ ├── check-config.sh │ │ │ ├── test_Dockerfile │ │ │ ├── tmpmount │ │ │ └── validate-gofmt │ │ │ ├── signals.go │ │ │ ├── spec.go │ │ │ ├── start.go │ │ │ ├── state.go │ │ │ ├── tests │ │ │ └── integration │ │ │ │ ├── README.md │ │ │ │ ├── cgroups.bats │ │ │ │ ├── checkpoint.bats │ │ │ │ ├── create.bats │ │ │ │ ├── debug.bats │ │ │ │ ├── delete.bats │ │ │ │ ├── events.bats │ │ │ │ ├── exec.bats │ │ │ │ ├── help.bats │ │ │ │ ├── helpers.bash │ │ │ │ ├── kill.bats │ │ │ │ ├── list.bats │ │ │ │ ├── pause.bats │ │ │ │ ├── root.bats │ │ │ │ ├── spec.bats │ │ │ │ ├── start_detached.bats │ │ │ │ ├── start_hello.bats │ │ │ │ ├── state.bats │ │ │ │ ├── testdata │ │ │ │ └── hello-world.tar │ │ │ │ ├── update.bats │ │ │ │ └── version.bats │ │ │ ├── tty.go │ │ │ ├── update.go │ │ │ ├── utils.go │ │ │ └── utils_linux.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 │ ├── prometheus │ │ ├── client_golang │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS.md │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── VERSION │ │ │ ├── api │ │ │ │ └── prometheus │ │ │ │ │ ├── api.go │ │ │ │ │ └── api_test.go │ │ │ ├── examples │ │ │ │ ├── random │ │ │ │ │ └── main.go │ │ │ │ └── simple │ │ │ │ │ └── main.go │ │ │ └── prometheus │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── benchmark_test.go │ │ │ │ ├── collector.go │ │ │ │ ├── counter.go │ │ │ │ ├── counter_test.go │ │ │ │ ├── desc.go │ │ │ │ ├── doc.go │ │ │ │ ├── example_clustermanager_test.go │ │ │ │ ├── examples_test.go │ │ │ │ ├── expvar_collector.go │ │ │ │ ├── expvar_collector_test.go │ │ │ │ ├── fnv.go │ │ │ │ ├── gauge.go │ │ │ │ ├── gauge_test.go │ │ │ │ ├── go_collector.go │ │ │ │ ├── go_collector_test.go │ │ │ │ ├── histogram.go │ │ │ │ ├── histogram_test.go │ │ │ │ ├── http.go │ │ │ │ ├── http_test.go │ │ │ │ ├── metric.go │ │ │ │ ├── metric_test.go │ │ │ │ ├── process_collector.go │ │ │ │ ├── process_collector_test.go │ │ │ │ ├── promhttp │ │ │ │ ├── http.go │ │ │ │ └── http_test.go │ │ │ │ ├── push │ │ │ │ ├── examples_test.go │ │ │ │ ├── push.go │ │ │ │ └── push_test.go │ │ │ │ ├── registry.go │ │ │ │ ├── registry_test.go │ │ │ │ ├── summary.go │ │ │ │ ├── summary_test.go │ │ │ │ ├── untyped.go │ │ │ │ ├── value.go │ │ │ │ ├── vec.go │ │ │ │ └── vec_test.go │ │ ├── client_model │ │ │ ├── .gitignore │ │ │ ├── AUTHORS.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── cpp │ │ │ │ ├── metrics.pb.cc │ │ │ │ └── metrics.pb.h │ │ │ ├── go │ │ │ │ └── metrics.pb.go │ │ │ ├── metrics.proto │ │ │ ├── pom.xml │ │ │ ├── python │ │ │ │ └── prometheus │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── client │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── model │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── metrics_pb2.py │ │ │ ├── ruby │ │ │ │ ├── .gitignore │ │ │ │ ├── Gemfile │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── Rakefile │ │ │ │ ├── lib │ │ │ │ │ └── prometheus │ │ │ │ │ │ └── client │ │ │ │ │ │ ├── model.rb │ │ │ │ │ │ └── model │ │ │ │ │ │ ├── metrics.pb.rb │ │ │ │ │ │ └── version.rb │ │ │ │ └── prometheus-client-model.gemspec │ │ │ ├── setup.py │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── prometheus │ │ │ │ └── client │ │ │ │ └── Metrics.java │ │ ├── common │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ ├── config.go │ │ │ │ ├── testdata │ │ │ │ │ ├── tls_config.cert_no_key.bad.yml │ │ │ │ │ ├── tls_config.empty.good.yml │ │ │ │ │ ├── tls_config.insecure.good.yml │ │ │ │ │ ├── tls_config.invalid_field.bad.yml │ │ │ │ │ └── tls_config.key_no_cert.bad.yml │ │ │ │ ├── tls_config.go │ │ │ │ └── tls_config_test.go │ │ │ ├── expfmt │ │ │ │ ├── bench_test.go │ │ │ │ ├── decode.go │ │ │ │ ├── decode_test.go │ │ │ │ ├── encode.go │ │ │ │ ├── expfmt.go │ │ │ │ ├── fuzz.go │ │ │ │ ├── fuzz │ │ │ │ │ └── corpus │ │ │ │ │ │ ├── from_test_parse_0 │ │ │ │ │ │ ├── from_test_parse_1 │ │ │ │ │ │ ├── from_test_parse_2 │ │ │ │ │ │ ├── from_test_parse_3 │ │ │ │ │ │ ├── from_test_parse_4 │ │ │ │ │ │ ├── from_test_parse_error_0 │ │ │ │ │ │ ├── from_test_parse_error_1 │ │ │ │ │ │ ├── from_test_parse_error_10 │ │ │ │ │ │ ├── from_test_parse_error_11 │ │ │ │ │ │ ├── from_test_parse_error_12 │ │ │ │ │ │ ├── from_test_parse_error_13 │ │ │ │ │ │ ├── from_test_parse_error_14 │ │ │ │ │ │ ├── from_test_parse_error_15 │ │ │ │ │ │ ├── from_test_parse_error_16 │ │ │ │ │ │ ├── from_test_parse_error_17 │ │ │ │ │ │ ├── from_test_parse_error_18 │ │ │ │ │ │ ├── from_test_parse_error_19 │ │ │ │ │ │ ├── from_test_parse_error_2 │ │ │ │ │ │ ├── from_test_parse_error_3 │ │ │ │ │ │ ├── from_test_parse_error_4 │ │ │ │ │ │ ├── from_test_parse_error_5 │ │ │ │ │ │ ├── from_test_parse_error_6 │ │ │ │ │ │ ├── from_test_parse_error_7 │ │ │ │ │ │ ├── from_test_parse_error_8 │ │ │ │ │ │ ├── from_test_parse_error_9 │ │ │ │ │ │ └── minimal │ │ │ │ ├── testdata │ │ │ │ │ ├── json2 │ │ │ │ │ ├── json2_bad │ │ │ │ │ ├── protobuf │ │ │ │ │ ├── protobuf.gz │ │ │ │ │ ├── test.gz │ │ │ │ │ └── text │ │ │ │ ├── text_create.go │ │ │ │ ├── text_create_test.go │ │ │ │ ├── text_parse.go │ │ │ │ └── text_parse_test.go │ │ │ ├── internal │ │ │ │ └── bitbucket.org │ │ │ │ │ └── ww │ │ │ │ │ └── goautoneg │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── autoneg.go │ │ │ │ │ └── autoneg_test.go │ │ │ ├── log │ │ │ │ ├── log.go │ │ │ │ ├── log_test.go │ │ │ │ └── syslog_formatter.go │ │ │ ├── model │ │ │ │ ├── alert.go │ │ │ │ ├── alert_test.go │ │ │ │ ├── fingerprinting.go │ │ │ │ ├── fnv.go │ │ │ │ ├── labels.go │ │ │ │ ├── labels_test.go │ │ │ │ ├── labelset.go │ │ │ │ ├── metric.go │ │ │ │ ├── metric_test.go │ │ │ │ ├── model.go │ │ │ │ ├── signature.go │ │ │ │ ├── signature_test.go │ │ │ │ ├── silence.go │ │ │ │ ├── silence_test.go │ │ │ │ ├── time.go │ │ │ │ ├── time_test.go │ │ │ │ ├── value.go │ │ │ │ └── value_test.go │ │ │ ├── route │ │ │ │ ├── route.go │ │ │ │ └── route_test.go │ │ │ └── version │ │ │ │ └── info.go │ │ └── procfs │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── fixtures │ │ │ ├── 584 │ │ │ │ └── stat │ │ │ ├── 26231 │ │ │ │ ├── cmdline │ │ │ │ ├── comm │ │ │ │ ├── exe │ │ │ │ ├── fd │ │ │ │ │ ├── 0 │ │ │ │ │ ├── 1 │ │ │ │ │ ├── 2 │ │ │ │ │ ├── 3 │ │ │ │ │ └── 10 │ │ │ │ ├── io │ │ │ │ ├── limits │ │ │ │ └── stat │ │ │ ├── 26232 │ │ │ │ ├── cmdline │ │ │ │ ├── comm │ │ │ │ ├── fd │ │ │ │ │ ├── 0 │ │ │ │ │ ├── 1 │ │ │ │ │ ├── 2 │ │ │ │ │ ├── 3 │ │ │ │ │ └── 4 │ │ │ │ ├── limits │ │ │ │ └── stat │ │ │ ├── mdstat │ │ │ ├── net │ │ │ │ ├── ip_vs │ │ │ │ └── ip_vs_stats │ │ │ ├── self │ │ │ ├── stat │ │ │ └── symlinktargets │ │ │ │ ├── README │ │ │ │ ├── abc │ │ │ │ ├── def │ │ │ │ ├── ghi │ │ │ │ ├── uvw │ │ │ │ └── xyz │ │ │ ├── fs.go │ │ │ ├── fs_test.go │ │ │ ├── ipvs.go │ │ │ ├── ipvs_test.go │ │ │ ├── mdstat.go │ │ │ ├── mdstat_test.go │ │ │ ├── proc.go │ │ │ ├── proc_io.go │ │ │ ├── proc_io_test.go │ │ │ ├── proc_limits.go │ │ │ ├── proc_limits_test.go │ │ │ ├── proc_stat.go │ │ │ ├── proc_stat_test.go │ │ │ ├── proc_test.go │ │ │ ├── stat.go │ │ │ └── stat_test.go │ └── ugorji │ │ └── go │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codec │ │ ├── 0doc.go │ │ ├── README.md │ │ ├── binc.go │ │ ├── cbor.go │ │ ├── cbor_test.go │ │ ├── codec_test.go │ │ ├── codecgen │ │ │ ├── README.md │ │ │ ├── gen.go │ │ │ └── z.go │ │ ├── codecgen_test.go │ │ ├── decode.go │ │ ├── encode.go │ │ ├── fast-path.generated.go │ │ ├── fast-path.go.tmpl │ │ ├── fast-path.not.go │ │ ├── gen-dec-array.go.tmpl │ │ ├── gen-dec-map.go.tmpl │ │ ├── gen-helper.generated.go │ │ ├── gen-helper.go.tmpl │ │ ├── gen.generated.go │ │ ├── gen.go │ │ ├── gen_15.go │ │ ├── gen_16.go │ │ ├── helper.go │ │ ├── helper_internal.go │ │ ├── helper_not_unsafe.go │ │ ├── helper_test.go │ │ ├── helper_unsafe.go │ │ ├── json.go │ │ ├── msgpack.go │ │ ├── noop.go │ │ ├── prebuild.go │ │ ├── prebuild.sh │ │ ├── py_test.go │ │ ├── rpc.go │ │ ├── simple.go │ │ ├── test-cbor-goldens.json │ │ ├── test.py │ │ ├── tests.sh │ │ ├── time.go │ │ └── values_test.go │ │ └── msgpack.org.md └── golang.org │ └── x │ ├── net │ ├── .gitattributes │ ├── .gitignore │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── README │ ├── codereview.cfg │ ├── context │ │ ├── context.go │ │ ├── context_test.go │ │ ├── ctxhttp │ │ │ ├── cancelreq.go │ │ │ ├── cancelreq_go14.go │ │ │ ├── ctxhttp.go │ │ │ └── ctxhttp_test.go │ │ └── withtimeout_test.go │ ├── dict │ │ └── dict.go │ ├── html │ │ ├── atom │ │ │ ├── atom.go │ │ │ ├── atom_test.go │ │ │ ├── gen.go │ │ │ ├── table.go │ │ │ └── table_test.go │ │ ├── charset │ │ │ ├── charset.go │ │ │ ├── charset_test.go │ │ │ └── testdata │ │ │ │ ├── HTTP-charset.html │ │ │ │ ├── HTTP-vs-UTF-8-BOM.html │ │ │ │ ├── HTTP-vs-meta-charset.html │ │ │ │ ├── HTTP-vs-meta-content.html │ │ │ │ ├── No-encoding-declaration.html │ │ │ │ ├── README │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ ├── UTF-16LE-BOM.html │ │ │ │ ├── UTF-8-BOM-vs-meta-charset.html │ │ │ │ ├── UTF-8-BOM-vs-meta-content.html │ │ │ │ ├── meta-charset-attribute.html │ │ │ │ └── meta-content-attribute.html │ │ ├── const.go │ │ ├── doc.go │ │ ├── doctype.go │ │ ├── entity.go │ │ ├── entity_test.go │ │ ├── escape.go │ │ ├── escape_test.go │ │ ├── example_test.go │ │ ├── foreign.go │ │ ├── node.go │ │ ├── node_test.go │ │ ├── parse.go │ │ ├── parse_test.go │ │ ├── render.go │ │ ├── render_test.go │ │ ├── testdata │ │ │ ├── go1.html │ │ │ └── webkit │ │ │ │ ├── README │ │ │ │ ├── adoption01.dat │ │ │ │ ├── adoption02.dat │ │ │ │ ├── comments01.dat │ │ │ │ ├── doctype01.dat │ │ │ │ ├── entities01.dat │ │ │ │ ├── entities02.dat │ │ │ │ ├── html5test-com.dat │ │ │ │ ├── inbody01.dat │ │ │ │ ├── isindex.dat │ │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ │ ├── pending-spec-changes.dat │ │ │ │ ├── plain-text-unsafe.dat │ │ │ │ ├── scriptdata01.dat │ │ │ │ ├── scripted │ │ │ │ ├── adoption01.dat │ │ │ │ └── webkit01.dat │ │ │ │ ├── tables01.dat │ │ │ │ ├── tests1.dat │ │ │ │ ├── tests10.dat │ │ │ │ ├── tests11.dat │ │ │ │ ├── tests12.dat │ │ │ │ ├── tests14.dat │ │ │ │ ├── tests15.dat │ │ │ │ ├── tests16.dat │ │ │ │ ├── tests17.dat │ │ │ │ ├── tests18.dat │ │ │ │ ├── tests19.dat │ │ │ │ ├── tests2.dat │ │ │ │ ├── tests20.dat │ │ │ │ ├── tests21.dat │ │ │ │ ├── tests22.dat │ │ │ │ ├── tests23.dat │ │ │ │ ├── tests24.dat │ │ │ │ ├── tests25.dat │ │ │ │ ├── tests26.dat │ │ │ │ ├── tests3.dat │ │ │ │ ├── tests4.dat │ │ │ │ ├── tests5.dat │ │ │ │ ├── tests6.dat │ │ │ │ ├── tests7.dat │ │ │ │ ├── tests8.dat │ │ │ │ ├── tests9.dat │ │ │ │ ├── tests_innerHTML_1.dat │ │ │ │ ├── tricky01.dat │ │ │ │ ├── webkit01.dat │ │ │ │ └── webkit02.dat │ │ ├── token.go │ │ └── token_test.go │ ├── http2 │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── README │ │ ├── client_conn_pool.go │ │ ├── configure_transport.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── fixed_buffer.go │ │ ├── fixed_buffer_test.go │ │ ├── flow.go │ │ ├── flow_test.go │ │ ├── frame.go │ │ ├── frame_test.go │ │ ├── go15.go │ │ ├── gotrack.go │ │ ├── gotrack_test.go │ │ ├── h2demo │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── h2demo.go │ │ │ ├── launch.go │ │ │ ├── rootCA.key │ │ │ ├── rootCA.pem │ │ │ ├── rootCA.srl │ │ │ ├── server.crt │ │ │ └── server.key │ │ ├── h2i │ │ │ ├── README.md │ │ │ └── h2i.go │ │ ├── headermap.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── encode_test.go │ │ │ ├── hpack.go │ │ │ ├── hpack_test.go │ │ │ ├── huffman.go │ │ │ └── tables.go │ │ ├── http2.go │ │ ├── http2_test.go │ │ ├── not_go15.go │ │ ├── not_go16.go │ │ ├── pipe.go │ │ ├── pipe_test.go │ │ ├── priority_test.go │ │ ├── server.go │ │ ├── server_test.go │ │ ├── testdata │ │ │ └── draft-ietf-httpbis-http2.xml │ │ ├── transport.go │ │ ├── transport_test.go │ │ ├── write.go │ │ ├── writesched.go │ │ └── z_spec_test.go │ ├── icmp │ │ ├── dstunreach.go │ │ ├── echo.go │ │ ├── endpoint.go │ │ ├── example_test.go │ │ ├── extension.go │ │ ├── extension_test.go │ │ ├── helper.go │ │ ├── helper_posix.go │ │ ├── interface.go │ │ ├── ipv4.go │ │ ├── ipv4_test.go │ │ ├── ipv6.go │ │ ├── listen_posix.go │ │ ├── listen_stub.go │ │ ├── message.go │ │ ├── message_test.go │ │ ├── messagebody.go │ │ ├── mpls.go │ │ ├── multipart.go │ │ ├── multipart_test.go │ │ ├── packettoobig.go │ │ ├── paramprob.go │ │ ├── ping_test.go │ │ ├── sys_freebsd.go │ │ └── timeexceeded.go │ ├── idna │ │ ├── idna.go │ │ ├── idna_test.go │ │ ├── punycode.go │ │ └── punycode_test.go │ ├── internal │ │ ├── iana │ │ │ ├── const.go │ │ │ └── gen.go │ │ ├── nettest │ │ │ ├── error_posix.go │ │ │ ├── error_stub.go │ │ │ ├── interface.go │ │ │ ├── rlimit.go │ │ │ ├── rlimit_stub.go │ │ │ ├── rlimit_unix.go │ │ │ ├── rlimit_windows.go │ │ │ ├── stack.go │ │ │ ├── stack_stub.go │ │ │ ├── stack_unix.go │ │ │ └── stack_windows.go │ │ └── timeseries │ │ │ ├── timeseries.go │ │ │ └── timeseries_test.go │ ├── ipv4 │ │ ├── control.go │ │ ├── control_bsd.go │ │ ├── control_pktinfo.go │ │ ├── control_stub.go │ │ ├── control_unix.go │ │ ├── control_windows.go │ │ ├── defs_darwin.go │ │ ├── defs_dragonfly.go │ │ ├── defs_freebsd.go │ │ ├── defs_linux.go │ │ ├── defs_netbsd.go │ │ ├── defs_openbsd.go │ │ ├── defs_solaris.go │ │ ├── dgramopt_posix.go │ │ ├── dgramopt_stub.go │ │ ├── doc.go │ │ ├── endpoint.go │ │ ├── example_test.go │ │ ├── gen.go │ │ ├── genericopt_posix.go │ │ ├── genericopt_stub.go │ │ ├── header.go │ │ ├── header_test.go │ │ ├── helper.go │ │ ├── helper_stub.go │ │ ├── helper_unix.go │ │ ├── helper_windows.go │ │ ├── iana.go │ │ ├── icmp.go │ │ ├── icmp_linux.go │ │ ├── icmp_stub.go │ │ ├── icmp_test.go │ │ ├── mocktransponder_test.go │ │ ├── multicast_test.go │ │ ├── multicastlistener_test.go │ │ ├── multicastsockopt_test.go │ │ ├── packet.go │ │ ├── payload.go │ │ ├── payload_cmsg.go │ │ ├── payload_nocmsg.go │ │ ├── readwrite_test.go │ │ ├── sockopt.go │ │ ├── sockopt_asmreq.go │ │ ├── sockopt_asmreq_stub.go │ │ ├── sockopt_asmreq_unix.go │ │ ├── sockopt_asmreq_windows.go │ │ ├── sockopt_asmreqn_stub.go │ │ ├── sockopt_asmreqn_unix.go │ │ ├── sockopt_ssmreq_stub.go │ │ ├── sockopt_ssmreq_unix.go │ │ ├── sockopt_stub.go │ │ ├── sockopt_unix.go │ │ ├── sockopt_windows.go │ │ ├── sys_bsd.go │ │ ├── sys_darwin.go │ │ ├── sys_freebsd.go │ │ ├── sys_linux.go │ │ ├── sys_openbsd.go │ │ ├── sys_stub.go │ │ ├── sys_windows.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_unix.go │ │ ├── thunk_linux_386.s │ │ ├── unicast_test.go │ │ ├── unicastsockopt_test.go │ │ ├── zsys_darwin.go │ │ ├── zsys_dragonfly.go │ │ ├── zsys_freebsd_386.go │ │ ├── zsys_freebsd_amd64.go │ │ ├── zsys_freebsd_arm.go │ │ ├── zsys_linux_386.go │ │ ├── zsys_linux_amd64.go │ │ ├── zsys_linux_arm.go │ │ ├── zsys_linux_arm64.go │ │ ├── zsys_linux_mips64.go │ │ ├── zsys_linux_mips64le.go │ │ ├── zsys_linux_ppc64.go │ │ ├── zsys_linux_ppc64le.go │ │ ├── zsys_netbsd.go │ │ ├── zsys_openbsd.go │ │ └── zsys_solaris.go │ ├── ipv6 │ │ ├── control.go │ │ ├── control_rfc2292_unix.go │ │ ├── control_rfc3542_unix.go │ │ ├── control_stub.go │ │ ├── control_unix.go │ │ ├── control_windows.go │ │ ├── defs_darwin.go │ │ ├── defs_dragonfly.go │ │ ├── defs_freebsd.go │ │ ├── defs_linux.go │ │ ├── defs_netbsd.go │ │ ├── defs_openbsd.go │ │ ├── defs_solaris.go │ │ ├── dgramopt_posix.go │ │ ├── dgramopt_stub.go │ │ ├── doc.go │ │ ├── endpoint.go │ │ ├── example_test.go │ │ ├── gen.go │ │ ├── genericopt_posix.go │ │ ├── genericopt_stub.go │ │ ├── header.go │ │ ├── header_test.go │ │ ├── helper.go │ │ ├── helper_stub.go │ │ ├── helper_unix.go │ │ ├── helper_windows.go │ │ ├── iana.go │ │ ├── icmp.go │ │ ├── icmp_bsd.go │ │ ├── icmp_linux.go │ │ ├── icmp_solaris.go │ │ ├── icmp_stub.go │ │ ├── icmp_test.go │ │ ├── icmp_windows.go │ │ ├── mocktransponder_test.go │ │ ├── multicast_test.go │ │ ├── multicastlistener_test.go │ │ ├── multicastsockopt_test.go │ │ ├── payload.go │ │ ├── payload_cmsg.go │ │ ├── payload_nocmsg.go │ │ ├── readwrite_test.go │ │ ├── sockopt.go │ │ ├── sockopt_asmreq_unix.go │ │ ├── sockopt_asmreq_windows.go │ │ ├── sockopt_ssmreq_stub.go │ │ ├── sockopt_ssmreq_unix.go │ │ ├── sockopt_stub.go │ │ ├── sockopt_test.go │ │ ├── sockopt_unix.go │ │ ├── sockopt_windows.go │ │ ├── sys_bsd.go │ │ ├── sys_darwin.go │ │ ├── sys_freebsd.go │ │ ├── sys_linux.go │ │ ├── sys_stub.go │ │ ├── sys_windows.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_unix.go │ │ ├── thunk_linux_386.s │ │ ├── unicast_test.go │ │ ├── unicastsockopt_test.go │ │ ├── zsys_darwin.go │ │ ├── zsys_dragonfly.go │ │ ├── zsys_freebsd_386.go │ │ ├── zsys_freebsd_amd64.go │ │ ├── zsys_freebsd_arm.go │ │ ├── zsys_linux_386.go │ │ ├── zsys_linux_amd64.go │ │ ├── zsys_linux_arm.go │ │ ├── zsys_linux_arm64.go │ │ ├── zsys_linux_mips64.go │ │ ├── zsys_linux_mips64le.go │ │ ├── zsys_linux_ppc64.go │ │ ├── zsys_linux_ppc64le.go │ │ ├── zsys_netbsd.go │ │ ├── zsys_openbsd.go │ │ └── zsys_solaris.go │ ├── netutil │ │ ├── listen.go │ │ └── listen_test.go │ ├── proxy │ │ ├── direct.go │ │ ├── per_host.go │ │ ├── per_host_test.go │ │ ├── proxy.go │ │ ├── proxy_test.go │ │ └── socks5.go │ ├── publicsuffix │ │ ├── gen.go │ │ ├── list.go │ │ ├── list_test.go │ │ ├── table.go │ │ └── table_test.go │ ├── trace │ │ ├── events.go │ │ ├── histogram.go │ │ ├── histogram_test.go │ │ ├── trace.go │ │ └── trace_test.go │ ├── webdav │ │ ├── file.go │ │ ├── file_test.go │ │ ├── if.go │ │ ├── if_test.go │ │ ├── internal │ │ │ └── xml │ │ │ │ ├── README │ │ │ │ ├── atom_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── marshal.go │ │ │ │ ├── marshal_test.go │ │ │ │ ├── read.go │ │ │ │ ├── read_test.go │ │ │ │ ├── typeinfo.go │ │ │ │ ├── xml.go │ │ │ │ └── xml_test.go │ │ ├── litmus_test_server.go │ │ ├── lock.go │ │ ├── lock_test.go │ │ ├── prop.go │ │ ├── prop_test.go │ │ ├── webdav.go │ │ ├── webdav_test.go │ │ ├── xml.go │ │ └── xml_test.go │ ├── websocket │ │ ├── client.go │ │ ├── exampledial_test.go │ │ ├── examplehandler_test.go │ │ ├── hybi.go │ │ ├── hybi_test.go │ │ ├── server.go │ │ ├── websocket.go │ │ └── websocket_test.go │ └── xsrftoken │ │ ├── xsrf.go │ │ └── xsrf_test.go │ └── sys │ ├── .gitattributes │ ├── .gitignore │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── README │ ├── codereview.cfg │ ├── plan9 │ ├── asm.s │ ├── asm_plan9_386.s │ ├── asm_plan9_amd64.s │ ├── const_plan9.go │ ├── dir_plan9.go │ ├── env_plan9.go │ ├── env_unset.go │ ├── errors_plan9.go │ ├── mkall.sh │ ├── mkerrors.sh │ ├── mksyscall.pl │ ├── mksysnum_plan9.sh │ ├── pwd_go15_plan9.go │ ├── pwd_plan9.go │ ├── race.go │ ├── race0.go │ ├── str.go │ ├── syscall.go │ ├── syscall_plan9.go │ ├── syscall_test.go │ ├── zsyscall_plan9_386.go │ ├── zsyscall_plan9_amd64.go │ └── zsysnum_plan9.go │ ├── unix │ ├── .gitignore │ ├── asm.s │ ├── asm_darwin_386.s │ ├── asm_darwin_amd64.s │ ├── asm_darwin_arm.s │ ├── asm_darwin_arm64.s │ ├── asm_dragonfly_386.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_ppc64x.s │ ├── asm_netbsd_386.s │ ├── asm_netbsd_amd64.s │ ├── asm_netbsd_arm.s │ ├── asm_openbsd_386.s │ ├── asm_openbsd_amd64.s │ ├── asm_solaris_amd64.s │ ├── constants.go │ ├── creds_test.go │ ├── env_unix.go │ ├── env_unset.go │ ├── export_test.go │ ├── flock.go │ ├── flock_linux_32bit.go │ ├── gccgo.go │ ├── gccgo_c.c │ ├── gccgo_linux_amd64.go │ ├── mkall.sh │ ├── mkerrors.sh │ ├── mksyscall.pl │ ├── mksyscall_solaris.pl │ ├── mksysctl_openbsd.pl │ ├── mksysnum_darwin.pl │ ├── mksysnum_dragonfly.pl │ ├── mksysnum_freebsd.pl │ ├── mksysnum_linux.pl │ ├── mksysnum_netbsd.pl │ ├── mksysnum_openbsd.pl │ ├── mmap_unix_test.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_386.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_arm.go │ ├── syscall_linux_arm64.go │ ├── syscall_linux_ppc64x.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_solaris.go │ ├── syscall_solaris_amd64.go │ ├── syscall_test.go │ ├── syscall_unix.go │ ├── syscall_unix_test.go │ ├── types_darwin.go │ ├── types_dragonfly.go │ ├── types_freebsd.go │ ├── types_linux.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_386.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_ppc64.go │ ├── zerrors_linux_ppc64le.go │ ├── zerrors_netbsd_386.go │ ├── zerrors_netbsd_amd64.go │ ├── zerrors_netbsd_arm.go │ ├── zerrors_openbsd_386.go │ ├── zerrors_openbsd_amd64.go │ ├── zerrors_solaris_amd64.go │ ├── zsyscall_darwin_386.go │ ├── zsyscall_darwin_amd64.go │ ├── zsyscall_darwin_arm.go │ ├── zsyscall_darwin_arm64.go │ ├── zsyscall_dragonfly_386.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_ppc64.go │ ├── zsyscall_linux_ppc64le.go │ ├── zsyscall_netbsd_386.go │ ├── zsyscall_netbsd_amd64.go │ ├── zsyscall_netbsd_arm.go │ ├── zsyscall_openbsd_386.go │ ├── zsyscall_openbsd_amd64.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_386.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_ppc64.go │ ├── zsysnum_linux_ppc64le.go │ ├── zsysnum_netbsd_386.go │ ├── zsysnum_netbsd_amd64.go │ ├── zsysnum_netbsd_arm.go │ ├── zsysnum_openbsd_386.go │ ├── zsysnum_openbsd_amd64.go │ ├── zsysnum_solaris_amd64.go │ ├── ztypes_darwin_386.go │ ├── ztypes_darwin_amd64.go │ ├── ztypes_darwin_arm.go │ ├── ztypes_darwin_arm64.go │ ├── ztypes_dragonfly_386.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_ppc64.go │ ├── ztypes_linux_ppc64le.go │ ├── ztypes_netbsd_386.go │ ├── ztypes_netbsd_amd64.go │ ├── ztypes_netbsd_arm.go │ ├── ztypes_openbsd_386.go │ ├── ztypes_openbsd_amd64.go │ └── ztypes_solaris_amd64.go │ └── windows │ ├── asm.s │ ├── asm_windows_386.s │ ├── asm_windows_amd64.s │ ├── dll_windows.go │ ├── env_unset.go │ ├── env_windows.go │ ├── eventlog.go │ ├── exec_windows.go │ ├── race.go │ ├── race0.go │ ├── registry │ ├── export_test.go │ ├── key.go │ ├── registry_test.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 │ │ └── log_test.go │ ├── example │ │ ├── beep.go │ │ ├── install.go │ │ ├── main.go │ │ ├── manage.go │ │ └── service.go │ ├── go12.c │ ├── go12.go │ ├── go13.go │ ├── mgr │ │ ├── config.go │ │ ├── mgr.go │ │ ├── mgr_test.go │ │ └── service.go │ ├── security.go │ ├── service.go │ ├── svc_test.go │ ├── sys_386.s │ └── sys_amd64.s │ ├── syscall.go │ ├── syscall_test.go │ ├── syscall_windows.go │ ├── syscall_windows_test.go │ ├── zsyscall_windows.go │ ├── ztypes_windows.go │ ├── ztypes_windows_386.go │ └── ztypes_windows_amd64.go └── version ├── version.go └── version_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/README.md -------------------------------------------------------------------------------- /client/dockerclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/client/dockerclient.go -------------------------------------------------------------------------------- /client/dockerclient_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/client/dockerclient_test.go -------------------------------------------------------------------------------- /cmd/interlock/.gitignore: -------------------------------------------------------------------------------- 1 | interlock 2 | -------------------------------------------------------------------------------- /cmd/interlock/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/cmd/interlock/main.go -------------------------------------------------------------------------------- /cmd/interlock/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/cmd/interlock/run.go -------------------------------------------------------------------------------- /cmd/interlock/spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/cmd/interlock/spec.go -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/config/config.go -------------------------------------------------------------------------------- /config/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/config/utils.go -------------------------------------------------------------------------------- /config/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/config/utils_test.go -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/examples/haproxy/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/docs/examples/haproxy/config.toml -------------------------------------------------------------------------------- /docs/examples/haproxy/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/docs/examples/haproxy/docker-compose.yml -------------------------------------------------------------------------------- /docs/examples/nginx-swarm-machine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/docs/examples/nginx-swarm-machine/README.md -------------------------------------------------------------------------------- /docs/examples/nginx-swarm/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/docs/examples/nginx-swarm/config.toml -------------------------------------------------------------------------------- /docs/examples/nginx-swarm/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/docs/examples/nginx-swarm/docker-compose.yml -------------------------------------------------------------------------------- /docs/examples/nginx-ucp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/docs/examples/nginx-ucp/README.md -------------------------------------------------------------------------------- /docs/examples/nginx-ucp/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/docs/examples/nginx-ucp/docker-compose.yml -------------------------------------------------------------------------------- /docs/examples/nginx-ucp/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/docs/examples/nginx-ucp/screenshot.png -------------------------------------------------------------------------------- /docs/examples/nginx/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/docs/examples/nginx/config.toml -------------------------------------------------------------------------------- /docs/examples/nginx/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/docs/examples/nginx/docker-compose.yml -------------------------------------------------------------------------------- /docs/examples/nginx/nginx.conf.template.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/docs/examples/nginx/nginx.conf.template.example -------------------------------------------------------------------------------- /docs/extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/docs/extensions.md -------------------------------------------------------------------------------- /docs/extensions/beacon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/docs/extensions/beacon.md -------------------------------------------------------------------------------- /docs/extensions/haproxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/docs/extensions/haproxy.md -------------------------------------------------------------------------------- /docs/extensions/nginx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/docs/extensions/nginx.md -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/docs/getting_started.md -------------------------------------------------------------------------------- /docs/interlock_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/docs/interlock_data.md -------------------------------------------------------------------------------- /events/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/events/events.go -------------------------------------------------------------------------------- /events/events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/events/events_test.go -------------------------------------------------------------------------------- /ext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/README.md -------------------------------------------------------------------------------- /ext/beacon/beacon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/beacon/beacon.go -------------------------------------------------------------------------------- /ext/beacon/influxdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/beacon/influxdb.go -------------------------------------------------------------------------------- /ext/beacon/prometheus_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/beacon/prometheus_metrics.go -------------------------------------------------------------------------------- /ext/beacon/rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/beacon/rules.go -------------------------------------------------------------------------------- /ext/beacon/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/beacon/stats.go -------------------------------------------------------------------------------- /ext/ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/ext.go -------------------------------------------------------------------------------- /ext/lb/haproxy/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/haproxy/config.go -------------------------------------------------------------------------------- /ext/lb/haproxy/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/haproxy/generate.go -------------------------------------------------------------------------------- /ext/lb/haproxy/haproxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/haproxy/haproxy.go -------------------------------------------------------------------------------- /ext/lb/haproxy/iptables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/haproxy/iptables.go -------------------------------------------------------------------------------- /ext/lb/haproxy/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/haproxy/template.go -------------------------------------------------------------------------------- /ext/lb/lb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/lb.go -------------------------------------------------------------------------------- /ext/lb/nginx/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/nginx/config.go -------------------------------------------------------------------------------- /ext/lb/nginx/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/nginx/generate.go -------------------------------------------------------------------------------- /ext/lb/nginx/nginx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/nginx/nginx.go -------------------------------------------------------------------------------- /ext/lb/nginx/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/nginx/template.go -------------------------------------------------------------------------------- /ext/lb/nginx/template_nginxplus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/nginx/template_nginxplus.go -------------------------------------------------------------------------------- /ext/lb/utils/alias_domains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/utils/alias_domains.go -------------------------------------------------------------------------------- /ext/lb/utils/alias_domains_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/utils/alias_domains_test.go -------------------------------------------------------------------------------- /ext/lb/utils/backend_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/utils/backend_options.go -------------------------------------------------------------------------------- /ext/lb/utils/backend_options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/utils/backend_options_test.go -------------------------------------------------------------------------------- /ext/lb/utils/balance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/utils/balance.go -------------------------------------------------------------------------------- /ext/lb/utils/balance_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/utils/balance_test.go -------------------------------------------------------------------------------- /ext/lb/utils/context_root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/utils/context_root.go -------------------------------------------------------------------------------- /ext/lb/utils/context_root_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/utils/context_root_test.go -------------------------------------------------------------------------------- /ext/lb/utils/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/utils/domain.go -------------------------------------------------------------------------------- /ext/lb/utils/domain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/utils/domain_test.go -------------------------------------------------------------------------------- /ext/lb/utils/health_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/utils/health_check.go -------------------------------------------------------------------------------- /ext/lb/utils/health_check_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/utils/health_check_test.go -------------------------------------------------------------------------------- /ext/lb/utils/hostname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/utils/hostname.go -------------------------------------------------------------------------------- /ext/lb/utils/hostname_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/utils/hostname_test.go -------------------------------------------------------------------------------- /ext/lb/utils/ip_hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/utils/ip_hash.go -------------------------------------------------------------------------------- /ext/lb/utils/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/utils/network.go -------------------------------------------------------------------------------- /ext/lb/utils/network_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/utils/network_test.go -------------------------------------------------------------------------------- /ext/lb/utils/ssl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/utils/ssl.go -------------------------------------------------------------------------------- /ext/lb/utils/ssl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/utils/ssl_test.go -------------------------------------------------------------------------------- /ext/lb/utils/websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/utils/websocket.go -------------------------------------------------------------------------------- /ext/lb/utils/websocket_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/ext/lb/utils/websocket_test.go -------------------------------------------------------------------------------- /glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/glide.lock -------------------------------------------------------------------------------- /glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/glide.yaml -------------------------------------------------------------------------------- /pkg/tlsconfig/tlsconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/pkg/tlsconfig/tlsconfig.go -------------------------------------------------------------------------------- /server/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/server/metrics.go -------------------------------------------------------------------------------- /server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/server/server.go -------------------------------------------------------------------------------- /server/swarm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/server/swarm.go -------------------------------------------------------------------------------- /server/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/server/utils.go -------------------------------------------------------------------------------- /server/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/server/utils_test.go -------------------------------------------------------------------------------- /test/certs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/test/certs/README.md -------------------------------------------------------------------------------- /test/certs/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/test/certs/ca.pem -------------------------------------------------------------------------------- /test/certs/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/test/certs/cert.pem -------------------------------------------------------------------------------- /test/certs/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/test/certs/key.pem -------------------------------------------------------------------------------- /test/integration/nginx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/test/integration/nginx_test.go -------------------------------------------------------------------------------- /utils/node_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/utils/node_id.go -------------------------------------------------------------------------------- /utils/node_id_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/utils/node_id_test.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/BurntSushi/toml/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/BurntSushi/toml/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/COMPATIBLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/BurntSushi/toml/COMPATIBLE -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/BurntSushi/toml/COPYING -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/BurntSushi/toml/Makefile -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/BurntSushi/toml/README.md -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/_examples/readme2.toml: -------------------------------------------------------------------------------- 1 | some_key_NAME = "wat" 2 | -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/BurntSushi/toml/decode.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/BurntSushi/toml/doc.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/BurntSushi/toml/encode.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/BurntSushi/toml/lex.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/BurntSushi/toml/parse.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/session.vim: -------------------------------------------------------------------------------- 1 | au BufWritePost *.go silent!make tags > /dev/null 2>&1 2 | -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/type_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/BurntSushi/toml/type_check.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/Microsoft/go-winio/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/Microsoft/go-winio/README.md -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/archive/tar/testdata/small.txt: -------------------------------------------------------------------------------- 1 | Kilts -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/archive/tar/testdata/small2.txt: -------------------------------------------------------------------------------- 1 | Google.com 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/Microsoft/go-winio/backup.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/Microsoft/go-winio/file.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/Microsoft/go-winio/pipe.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/reparse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/Microsoft/go-winio/reparse.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/sd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/Microsoft/go-winio/sd.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/sd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/Microsoft/go-winio/sd_test.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/Microsoft/go-winio/syscall.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/wim/wim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/Microsoft/go-winio/wim/wim.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/Sirupsen/logrus/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/Sirupsen/logrus/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/Sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/Sirupsen/logrus/README.md -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/alt_exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/Sirupsen/logrus/alt_exit.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/Sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/Sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/entry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/Sirupsen/logrus/entry_test.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/Sirupsen/logrus/exported.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/Sirupsen/logrus/formatter.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/hook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/Sirupsen/logrus/hook_test.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/Sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/Sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/Sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/Sirupsen/logrus/writer.go -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.prof 3 | -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/beorn7/perks/README.md -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/topk/topk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/beorn7/perks/topk/topk.go -------------------------------------------------------------------------------- /vendor/github.com/codegangsta/cli/.gitignore: -------------------------------------------------------------------------------- 1 | *.coverprofile 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /vendor/github.com/codegangsta/cli/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/codegangsta/cli/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/codegangsta/cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/codegangsta/cli/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/codegangsta/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/codegangsta/cli/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/codegangsta/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/codegangsta/cli/README.md -------------------------------------------------------------------------------- /vendor/github.com/codegangsta/cli/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/codegangsta/cli/app.go -------------------------------------------------------------------------------- /vendor/github.com/codegangsta/cli/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/codegangsta/cli/app_test.go -------------------------------------------------------------------------------- /vendor/github.com/codegangsta/cli/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/codegangsta/cli/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/codegangsta/cli/category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/codegangsta/cli/category.go -------------------------------------------------------------------------------- /vendor/github.com/codegangsta/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/codegangsta/cli/cli.go -------------------------------------------------------------------------------- /vendor/github.com/codegangsta/cli/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/codegangsta/cli/command.go -------------------------------------------------------------------------------- /vendor/github.com/codegangsta/cli/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/codegangsta/cli/context.go -------------------------------------------------------------------------------- /vendor/github.com/codegangsta/cli/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/codegangsta/cli/errors.go -------------------------------------------------------------------------------- /vendor/github.com/codegangsta/cli/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/codegangsta/cli/flag.go -------------------------------------------------------------------------------- /vendor/github.com/codegangsta/cli/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/codegangsta/cli/flag_test.go -------------------------------------------------------------------------------- /vendor/github.com/codegangsta/cli/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/codegangsta/cli/funcs.go -------------------------------------------------------------------------------- /vendor/github.com/codegangsta/cli/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/codegangsta/cli/help.go -------------------------------------------------------------------------------- /vendor/github.com/codegangsta/cli/help_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/codegangsta/cli/help_test.go -------------------------------------------------------------------------------- /vendor/github.com/codegangsta/cli/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/codegangsta/cli/runtests -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/.godir: -------------------------------------------------------------------------------- 1 | github.com/coreos/etcd 2 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/.header -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/DCO -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/Dockerfile -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/Procfile -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/README.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/ROADMAP.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/V2Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/V2Procfile -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/alarm/alarms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/alarm/alarms.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/auth/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/auth/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/auth/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/auth/store.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/build -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/build.bat: -------------------------------------------------------------------------------- 1 | powershell -ExecutionPolicy Bypass -File build.ps1 2 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/build.ps1 -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/client/README.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/client/client.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/client/curl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/client/curl.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/client/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/client/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/client/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/client/keys.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/client/members.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/client/members.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/client/srv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/client/srv.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/client/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/client/util.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/clientv3/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/clientv3/auth.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/clientv3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/clientv3/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/clientv3/kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/clientv3/kv.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/clientv3/lease.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/clientv3/lease.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/clientv3/op.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/clientv3/op.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/clientv3/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/clientv3/sort.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/clientv3/txn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/clientv3/txn.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/clientv3/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/clientv3/watch.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cmd/Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/cmd/Godeps/Readme -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/cmd/README.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cmd/etcdctl: -------------------------------------------------------------------------------- 1 | ../etcdctl -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cmd/etcdmain: -------------------------------------------------------------------------------- 1 | ../etcdmain -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cmd/main.go: -------------------------------------------------------------------------------- 1 | ../main.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cmd/tools: -------------------------------------------------------------------------------- 1 | ../tools -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cmd/vendor/github.com/boltdb/bolt/.gitignore: -------------------------------------------------------------------------------- 1 | *.prof 2 | *.test 3 | *.swp 4 | /bin/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cmd/vendor/github.com/coreos/etcd: -------------------------------------------------------------------------------- 1 | ../../../../ -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cmd/vendor/github.com/google/btree/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cmd/vendor/github.com/kr/pty/.gitignore: -------------------------------------------------------------------------------- 1 | [568].out 2 | _go* 3 | _test* 4 | _obj 5 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cmd/vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cmd/vendor/github.com/ugorji/go/codec/prebuild.go: -------------------------------------------------------------------------------- 1 | package codec 2 | 3 | //go:generate bash prebuild.sh 4 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cmd/vendor/github.com/urfave/cli/.gitignore: -------------------------------------------------------------------------------- 1 | *.coverprofile 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cmd/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cmd/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/compactor/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/compactor/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/contrib/README.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/contrib/systemd/etcd2-backup-coreos/.gitignore: -------------------------------------------------------------------------------- 1 | rclone.conf 2 | bin 3 | etcd2-backup.tgz 4 | *~ 5 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cover: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/cover -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/discovery/srv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/discovery/srv.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/e2e/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/e2e/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/e2e/etcd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/e2e/etcd_test.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/e2e/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/e2e/main_test.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/error/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/error/error.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/etcdctl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/etcdctl/README.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/etcdctl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/etcdctl/main.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/etcdmain/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/etcdmain/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/etcdmain/etcd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/etcdmain/etcd.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/etcdmain/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/etcdmain/help.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/etcdmain/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/etcdmain/main.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/etcdmain/serve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/etcdmain/serve.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/etcdserver/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/etcdserver/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/hack/README.md: -------------------------------------------------------------------------------- 1 | Various hacks that are used by developers. 2 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/integration/testdata/integration046_data/conf: -------------------------------------------------------------------------------- 1 | {"commitIndex":1,"peers":[]} -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/lease/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/lease/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/lease/lessor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/lease/lessor.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/main.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/mvcc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/mvcc/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/mvcc/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/mvcc/index.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/mvcc/key_index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/mvcc/key_index.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/mvcc/kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/mvcc/kv.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/mvcc/kv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/mvcc/kv_test.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/mvcc/kvstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/mvcc/kvstore.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/mvcc/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/mvcc/metrics.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/mvcc/revision.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/mvcc/revision.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/mvcc/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/mvcc/util.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/mvcc/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/mvcc/watcher.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/pkg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/pkg/README.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/pkg/adt/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/pkg/adt/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/pkg/cors/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/pkg/cors/cors.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/pkg/crc/crc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/pkg/crc/crc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/pkg/flags/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/pkg/flags/flag.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/pkg/flags/urls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/pkg/flags/urls.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/pkg/idutil/id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/pkg/idutil/id.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/pkg/types/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/pkg/types/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/raft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/raft/README.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/raft/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/raft/design.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/raft/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/raft/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/raft/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/raft/log.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/raft/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/raft/logger.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/raft/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/raft/node.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/raft/raft.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/raft/raft.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/raft/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/raft/status.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/raft/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/raft/util.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/snap/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/snap/db.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/store/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/store/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/store/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/store/event.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/store/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/store/node.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/store/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/store/stats.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/store/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/store/store.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/test -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/tools/benchmark/.gitignore: -------------------------------------------------------------------------------- 1 | benchmark 2 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/wal/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/wal/decoder.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/wal/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/wal/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/wal/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/wal/encoder.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/wal/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/wal/metrics.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/wal/repair.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/wal/repair.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/wal/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/wal/util.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/wal/wal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/coreos/etcd/wal/wal.go -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/contrib/docker-integration/nginx/test.passwd: -------------------------------------------------------------------------------- 1 | testuser:$apr1$YmLhHjm6$AjP4z8J1WgcUNxU8J4ue5. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/distribution/doc.go -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/manifest/doc.go: -------------------------------------------------------------------------------- 1 | package manifest 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/vendor/github.com/Sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/vendor/github.com/denverdino/aliyungo/common/version.go: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | const Version = "0.1" 4 | -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/vendor/github.com/ncw/swift/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.pyc 3 | test-env* 4 | junk/ -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/vendor/github.com/yvasiyarov/gorelic/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/vendor/github.com/yvasiyarov/newrelic_platform_go/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/vendor/gopkg.in/check.v1/TODO: -------------------------------------------------------------------------------- 1 | - Assert(slice, Contains, item) 2 | - Parallel test support 3 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/docker/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/docker/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/docker/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/docker/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/docker/Dockerfile -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/docker/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/docker/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/docker/Makefile -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/docker/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/docker/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/docker/ROADMAP.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/VENDORING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/docker/VENDORING.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/VERSION: -------------------------------------------------------------------------------- 1 | 17.04.0-ce-rc2 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/api/names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/docker/api/names.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles-negative/env_no_value/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM busybox 2 | 3 | ENV PATH 4 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/cli/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/docker/cli/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/cli/command/container/testdata/utf8.env: -------------------------------------------------------------------------------- 1 | FOO=BAR 2 | HELLO=您好 3 | BAR=FOO -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/cli/command/container/testdata/valid.env: -------------------------------------------------------------------------------- 1 | ENV1=value1 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/cli/command/container/testdata/valid.label: -------------------------------------------------------------------------------- 1 | LABEL1=value1 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/cli/command/swarm/testdata/jointoken-manager-quiet.golden: -------------------------------------------------------------------------------- 1 | manager-join-token 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/cli/command/swarm/testdata/jointoken-worker-quiet.golden: -------------------------------------------------------------------------------- 1 | worker-join-token 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/cli/command/swarm/testdata/unlockkeys-unlock-key-quiet.golden: -------------------------------------------------------------------------------- 1 | unlock-key 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/cli/command/swarm/testdata/unlockkeys-unlock-key-rotate-quiet.golden: -------------------------------------------------------------------------------- 1 | unlock-key 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/cli/command/swarm/testdata/update-all-flags-quiet.golden: -------------------------------------------------------------------------------- 1 | Swarm updated. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/cli/command/volume/testdata/volume-inspect-with-format.json-template.golden: -------------------------------------------------------------------------------- 1 | {"foo":"bar"} 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/cli/command/volume/testdata/volume-inspect-with-format.simple-template.golden: -------------------------------------------------------------------------------- 1 | volume 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/cli/command/volume/testdata/volume-prune.empty.golden: -------------------------------------------------------------------------------- 1 | Total reclaimed space: 0B 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/cli/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/docker/cli/error.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/contrib/completion/powershell/readme.txt: -------------------------------------------------------------------------------- 1 | See https://github.com/samneirinck/posh-docker -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/contrib/selinux-fedora-24/docker-engine-selinux/README.md: -------------------------------------------------------------------------------- 1 | SELinux policy for docker 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/README.md: -------------------------------------------------------------------------------- 1 | SELinux policy for docker 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/daemon/bindmount_solaris.go: -------------------------------------------------------------------------------- 1 | // +build solaris 2 | 3 | package daemon 4 | 5 | const bindMountType = "lofs" 6 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/daemon/graphdriver/btrfs/dummy_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux !cgo 2 | 3 | package btrfs 4 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/daemon/graphdriver/graphtest/graphtest_windows.go: -------------------------------------------------------------------------------- 1 | package graphtest 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/daemon/graphdriver/overlay/overlay_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package overlay 4 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/daemon/graphdriver/overlay2/overlay_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package overlay2 4 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/daemon/logger/gelf/gelf_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package gelf 4 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/daemon/seccomp_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package daemon 4 | 5 | var supportsSeccomp = false 6 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/dind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/docker/hack/dind -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/docker/hack/make.sh -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/make/.build-deb/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.bash-completion: -------------------------------------------------------------------------------- 1 | contrib/completion/bash/docker 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.docker.default: -------------------------------------------------------------------------------- 1 | ../../../contrib/init/sysvinit-debian/docker.default -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.docker.init: -------------------------------------------------------------------------------- 1 | ../../../contrib/init/sysvinit-debian/docker -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.docker.upstart: -------------------------------------------------------------------------------- 1 | ../../../contrib/init/upstart/docker.conf -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.manpages: -------------------------------------------------------------------------------- 1 | man/man*/* 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.udev: -------------------------------------------------------------------------------- 1 | ../../../contrib/udev/80-docker.rules -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/make/.build-deb/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/make/.resources-windows/docker.rc: -------------------------------------------------------------------------------- 1 | #define DOCKER_NAME "Docker Client" 2 | 3 | #include "common.rc" 4 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/image/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/docker/image/fs.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/integration-cli/fixtures/secrets/default: -------------------------------------------------------------------------------- 1 | this is the secret 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/attach.md: -------------------------------------------------------------------------------- 1 | 2 | Alias for `docker container attach`. 3 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/container/restart.md: -------------------------------------------------------------------------------- 1 | Restart each container listed. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/container/run.md: -------------------------------------------------------------------------------- 1 | Alias for `docker run`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/container/start.md: -------------------------------------------------------------------------------- 1 | Start one or more containers. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/diff.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container diff`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/events.md: -------------------------------------------------------------------------------- 1 | Alias for `docker system events`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/exec.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container exec`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/export.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container export`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/history.md: -------------------------------------------------------------------------------- 1 | Alias for `docker image history`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/image/build.md: -------------------------------------------------------------------------------- 1 | Alias for `docker build`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/images.md: -------------------------------------------------------------------------------- 1 | Alias for `docker image ls`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/import.md: -------------------------------------------------------------------------------- 1 | Alias for `docker image import`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/info.md: -------------------------------------------------------------------------------- 1 | Alias for `docker system info`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/kill.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container kill`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/load.md: -------------------------------------------------------------------------------- 1 | Alias for `docker image load`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/logs.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container logs`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/pause.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container pause`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/port.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container port`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/ps.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container ls`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/pull.md: -------------------------------------------------------------------------------- 1 | Alias for `docker image pull`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/push.md: -------------------------------------------------------------------------------- 1 | Alias for `docker image push`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/rename.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container rename`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/restart.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container restart`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/rm.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container rm`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/rmi.md: -------------------------------------------------------------------------------- 1 | Alias for `docker image rm`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/save.md: -------------------------------------------------------------------------------- 1 | Alias for `docker image save`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/start.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container start`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/stats.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container stats`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/stop.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container stop`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/tag.md: -------------------------------------------------------------------------------- 1 | Alias for `docker image tag`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/top.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container top`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/unpause.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container unpause`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/update.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container update`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/man/src/wait.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container wait`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/opts/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/docker/opts/env.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/opts/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/docker/opts/ip.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/opts/opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/docker/opts/opts.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/opts/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/docker/opts/port.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/chrootarchive/init_windows.go: -------------------------------------------------------------------------------- 1 | package chrootarchive 2 | 3 | func init() { 4 | } 5 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/testutil/pkg.go: -------------------------------------------------------------------------------- 1 | package testutil 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/poule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/docker/poule.yml -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/project/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | ../CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/vendor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/docker/vendor.conf -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/vendor/github.com/docker/distribution/manifest/doc.go: -------------------------------------------------------------------------------- 1 | package manifest 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/vendor/github.com/docker/swarmkit/manager/doc.go: -------------------------------------------------------------------------------- 1 | package manager 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/vendor/github.com/ugorji/go/codec/prebuild.go: -------------------------------------------------------------------------------- 1 | package codec 2 | 3 | //go:generate bash prebuild.sh 4 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/vendor/golang.org/x/time/README: -------------------------------------------------------------------------------- 1 | This repository provides supplementary Go time packages. 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/sockets/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/go-units/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/go-units/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/go-units/circle.yml -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/go-units/size.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/ulimit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/go-units/ulimit.go -------------------------------------------------------------------------------- /vendor/github.com/docker/libkv/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/libkv/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/docker/libkv/LICENSE.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/libkv/LICENSE.code -------------------------------------------------------------------------------- /vendor/github.com/docker/libkv/LICENSE.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/libkv/LICENSE.docs -------------------------------------------------------------------------------- /vendor/github.com/docker/libkv/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/libkv/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/docker/libkv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/libkv/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/libkv/libkv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/libkv/libkv.go -------------------------------------------------------------------------------- /vendor/github.com/docker/libkv/libkv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/libkv/libkv_test.go -------------------------------------------------------------------------------- /vendor/github.com/docker/libtrust/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/libtrust/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/libtrust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/libtrust/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/libtrust/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/libtrust/doc.go -------------------------------------------------------------------------------- /vendor/github.com/docker/libtrust/ec_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/libtrust/ec_key.go -------------------------------------------------------------------------------- /vendor/github.com/docker/libtrust/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/libtrust/filter.go -------------------------------------------------------------------------------- /vendor/github.com/docker/libtrust/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/libtrust/hash.go -------------------------------------------------------------------------------- /vendor/github.com/docker/libtrust/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/libtrust/key.go -------------------------------------------------------------------------------- /vendor/github.com/docker/libtrust/rsa_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/libtrust/rsa_key.go -------------------------------------------------------------------------------- /vendor/github.com/docker/libtrust/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/docker/libtrust/util.go -------------------------------------------------------------------------------- /vendor/github.com/ehazlett/ttlcache/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /vendor/github.com/ehazlett/ttlcache/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.5 5 | -------------------------------------------------------------------------------- /vendor/github.com/ehazlett/ttlcache/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/ehazlett/ttlcache/get.go -------------------------------------------------------------------------------- /vendor/github.com/ehazlett/ttlcache/reap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/ehazlett/ttlcache/reap.go -------------------------------------------------------------------------------- /vendor/github.com/ehazlett/ttlcache/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/ehazlett/ttlcache/set.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/golang/protobuf/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/golang/protobuf/Makefile -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/golang/protobuf/README.md -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/hashicorp/consul/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/hashicorp/consul/README.md -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/api/kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/hashicorp/consul/api/kv.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/bench/conf/server.json: -------------------------------------------------------------------------------- 1 | { 2 | "server": true 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/hashicorp/consul/main.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/main_test.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/hashicorp/consul/make.bat -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/test/ca/serialfile: -------------------------------------------------------------------------------- 1 | 0F 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/test/notes.txt: -------------------------------------------------------------------------------- 1 | Instructions from https://langui.sh/2009/01/18/openssl-self-signed-ca/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/testutil/wait_test.go: -------------------------------------------------------------------------------- 1 | package testutil 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/ui/javascripts/app/mixins.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/ui/javascripts/libs/classie.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/github.com/armon/go-radix/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - tip 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/github.com/boltdb/bolt/.gitignore: -------------------------------------------------------------------------------- 1 | *.prof 2 | *.test 3 | *.swp 4 | /bin/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/github.com/hashicorp/go-immutable-radix/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - tip 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/github.com/hashicorp/hcl/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: go 3 | go: 1.5 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/github.com/hashicorp/hcl/hcl/test-fixtures/comment_single.hcl: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/github.com/hashicorp/hcl/hcl/test-fixtures/complex_key.hcl: -------------------------------------------------------------------------------- 1 | foo.bar = "baz" 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/github.com/hashicorp/hcl/hcl/test-fixtures/empty.hcl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/github.com/hashicorp/hcl/hcl/test-fixtures/list.hcl: -------------------------------------------------------------------------------- 1 | foo = [1, 2, "foo"] 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/github.com/hashicorp/hcl/hcl/test-fixtures/list_comma.hcl: -------------------------------------------------------------------------------- 1 | foo = [1, 2, "foo",] 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/github.com/hashicorp/hcl/hcl/test-fixtures/multiple.hcl: -------------------------------------------------------------------------------- 1 | foo = "bar" 2 | key = 7 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/github.com/hashicorp/hcl/hcl/test-fixtures/structure_empty.hcl: -------------------------------------------------------------------------------- 1 | resource "foo" "bar" {} 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/github.com/hashicorp/hcl/json/test-fixtures/basic.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/github.com/hashicorp/hcl/test-fixtures/basic_int_string.hcl: -------------------------------------------------------------------------------- 1 | count = "3" 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/github.com/hashicorp/hcl/test-fixtures/empty.hcl: -------------------------------------------------------------------------------- 1 | resource "foo" {} 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/github.com/hashicorp/hcl/test-fixtures/escape.hcl: -------------------------------------------------------------------------------- 1 | foo = "bar\"baz\\n" 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/github.com/hashicorp/hcl/test-fixtures/flat.hcl: -------------------------------------------------------------------------------- 1 | foo = "bar" 2 | Key = 7 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/github.com/hashicorp/hcl/test-fixtures/float.hcl: -------------------------------------------------------------------------------- 1 | a = 1.02 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/github.com/hashicorp/hcl/test-fixtures/float.json: -------------------------------------------------------------------------------- 1 | { 2 | "a": 1.02 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/github.com/hashicorp/hcl/test-fixtures/interpolate_escape.hcl: -------------------------------------------------------------------------------- 1 | foo="${file(\"bing/bong.txt\")}" 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/github.com/hashicorp/hcl/test-fixtures/multiline.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar\nbaz" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/github.com/hashicorp/hcl/test-fixtures/multiline_no_marker.hcl: -------------------------------------------------------------------------------- 1 | foo = << 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/github.com/hashicorp/hcl/test-fixtures/unterminated_block_comment.hcl: -------------------------------------------------------------------------------- 1 | /* 2 | Foo 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/github.com/hashicorp/hil/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | *.iml 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/github.com/hashicorp/hil/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: go 3 | go: 1.5 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/github.com/hashicorp/serf/ops-misc/debian/copyright: -------------------------------------------------------------------------------- 1 | Name: serf 2 | Copyright: Hashicorp 2013 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/github.com/ryanuber/columnize/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - tip 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/consul/website/source/.gitignore: -------------------------------------------------------------------------------- 1 | # Source folder 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/serf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/hashicorp/serf/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/serf/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/hashicorp/serf/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/serf/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/hashicorp/serf/GNUmakefile -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/serf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/hashicorp/serf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/serf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/hashicorp/serf/README.md -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/serf/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/hashicorp/serf/commands.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/serf/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/hashicorp/serf/main.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/serf/main_test.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/serf/ops-misc/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/serf/ops-misc/debian/copyright: -------------------------------------------------------------------------------- 1 | Name: serf 2 | Copyright: Hashicorp 2013 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/serf/ops-misc/debian/dirs: -------------------------------------------------------------------------------- 1 | /usr/bin 2 | /etc/serf 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/serf/testutil/testutil_test.go: -------------------------------------------------------------------------------- 1 | package testutil 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/serf/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/hashicorp/serf/version.go -------------------------------------------------------------------------------- /vendor/github.com/influxdata/influxdb/.dockerignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /vendor/github.com/influxdata/influxdb/Godeps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/influxdata/influxdb/Godeps -------------------------------------------------------------------------------- /vendor/github.com/influxdata/influxdb/cmd/influx_inspect/dumptsm/dumptsm_test.go: -------------------------------------------------------------------------------- 1 | package dumptsm_test 2 | 3 | // TODO: write some tests 4 | -------------------------------------------------------------------------------- /vendor/github.com/influxdata/influxdb/cmd/influx_inspect/help/help_test.go: -------------------------------------------------------------------------------- 1 | package help_test 2 | 3 | // TODO: write some tests 4 | -------------------------------------------------------------------------------- /vendor/github.com/influxdata/influxdb/cmd/influx_inspect/report/report_test.go: -------------------------------------------------------------------------------- 1 | package report_test 2 | 3 | // TODO: write some tests 4 | -------------------------------------------------------------------------------- /vendor/github.com/influxdata/influxdb/cmd/influx_inspect/verify/verify_test.go: -------------------------------------------------------------------------------- 1 | package verify_test 2 | 3 | // TODO: write some tests 4 | -------------------------------------------------------------------------------- /vendor/github.com/influxdata/influxdb/etc/burn-in/.rvmrc: -------------------------------------------------------------------------------- 1 | rvm use ruby-2.1.0@burn-in --create 2 | -------------------------------------------------------------------------------- /vendor/github.com/influxdata/influxdb/services/snapshotter/service_test.go: -------------------------------------------------------------------------------- 1 | package snapshotter_test 2 | -------------------------------------------------------------------------------- /vendor/github.com/influxdata/influxdb/tests/siege/.gitignore: -------------------------------------------------------------------------------- 1 | urls.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/.gitignore: -------------------------------------------------------------------------------- 1 | cover.dat 2 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM runc_test 2 | ADD . /go/src/github.com/opencontainers/runc 3 | RUN make 4 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/Godeps/_workspace/.gitignore: -------------------------------------------------------------------------------- 1 | /pkg 2 | /bin 3 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/urfave/cli/.gitignore: -------------------------------------------------------------------------------- 1 | *.coverprofile 2 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/opencontainers/runc/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0-rc1 2 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/libcontainer/cgroups/cgroups_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package cgroups 4 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/fs_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package fs 4 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/libcontainer/devices/devices_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build windows 2 | 3 | package devices 4 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/ps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/opencontainers/runc/ps.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/opencontainers/runc/run.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/script/tmpmount: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | mount -t tmpfs none /tmp 4 | exec "$@" 5 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/tty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/opencontainers/runc/tty.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/pkg/errors/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/pkg/errors/bench_test.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/pkg/errors/errors_test.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/pkg/errors/example_test.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/pkg/errors/format_test.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/pkg/errors/stack_test.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/VERSION: -------------------------------------------------------------------------------- 1 | 0.8.0 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_model/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_model/ruby/Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/prometheus/common/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/prometheus/common/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/config/testdata/tls_config.empty.good.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/config/testdata/tls_config.insecure.good.yml: -------------------------------------------------------------------------------- 1 | insecure_skip_verify: true 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/config/testdata/tls_config.invalid_field.bad.yml: -------------------------------------------------------------------------------- 1 | something_invalid: true 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_0: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_0: -------------------------------------------------------------------------------- 1 | bla 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_1: -------------------------------------------------------------------------------- 1 | metric{label="\t"} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_10: -------------------------------------------------------------------------------- 1 | metric{label="bla"} 3.14 2 3 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_11: -------------------------------------------------------------------------------- 1 | metric{label="bla"} blubb 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_15: -------------------------------------------------------------------------------- 1 | 2 | # TYPE metric bla 3 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_16: -------------------------------------------------------------------------------- 1 | 2 | # TYPE met-ric 3 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_17: -------------------------------------------------------------------------------- 1 | @invalidmetric{label="bla"} 3.14 2 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_18: -------------------------------------------------------------------------------- 1 | {label="bla"} 3.14 2 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_2: -------------------------------------------------------------------------------- 1 | 2 | metric{label="new 3 | line"} 3.14 4 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_3: -------------------------------------------------------------------------------- 1 | metric{@="bla"} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_4: -------------------------------------------------------------------------------- 1 | metric{__name__="bla"} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_5: -------------------------------------------------------------------------------- 1 | metric{label+="bla"} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_6: -------------------------------------------------------------------------------- 1 | metric{label=bla} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_8: -------------------------------------------------------------------------------- 1 | metric{label="bla"+} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_9: -------------------------------------------------------------------------------- 1 | metric{label="bla"} 3.14 2.72 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/minimal: -------------------------------------------------------------------------------- 1 | m{} 0 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/prometheus/procfs/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/prometheus/procfs/Makefile -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/prometheus/procfs/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/prometheus/procfs/doc.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/cmdline: -------------------------------------------------------------------------------- 1 | vimtest.go+10 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/comm: -------------------------------------------------------------------------------- 1 | vim 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/exe: -------------------------------------------------------------------------------- 1 | /usr/bin/vim -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/0: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/abc -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/1: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/def -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/10: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/xyz -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/2: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/ghi -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/3: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/uvw -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/cmdline: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/comm: -------------------------------------------------------------------------------- 1 | ata_sff 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/fd/0: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/abc -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/fd/1: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/def -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/fd/2: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/ghi -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/fd/3: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/uvw -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26232/fd/4: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/xyz -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/self: -------------------------------------------------------------------------------- 1 | 26231 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/symlinktargets/abc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/symlinktargets/def: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/symlinktargets/ghi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/symlinktargets/uvw: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/symlinktargets/xyz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/prometheus/procfs/fs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/ipvs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/prometheus/procfs/ipvs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/prometheus/procfs/proc.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/prometheus/procfs/stat.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/ugorji/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/ugorji/go/README.md -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/0doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/ugorji/go/codec/0doc.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/ugorji/go/codec/README.md -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/binc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/ugorji/go/codec/binc.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/cbor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/ugorji/go/codec/cbor.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/codecgen/z.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | const genCodecPath = "github.com/ugorji/go/codec" 4 | -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/ugorji/go/codec/decode.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/ugorji/go/codec/encode.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/ugorji/go/codec/gen.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/gen_15.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/ugorji/go/codec/gen_15.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/gen_16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/ugorji/go/codec/gen_16.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/ugorji/go/codec/helper.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/ugorji/go/codec/json.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/msgpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/ugorji/go/codec/msgpack.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/noop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/ugorji/go/codec/noop.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/prebuild.go: -------------------------------------------------------------------------------- 1 | package codec 2 | 3 | //go:generate bash prebuild.sh 4 | -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/py_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/ugorji/go/codec/py_test.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/ugorji/go/codec/rpc.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/ugorji/go/codec/simple.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/ugorji/go/codec/test.py -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/ugorji/go/codec/tests.sh -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/ugorji/go/codec/time.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/msgpack.org.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/github.com/ugorji/go/msgpack.org.md -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/dict/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/dict/dict.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/atom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/html/atom/atom.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/html/atom/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/html/atom/table.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/html/entity_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/html/escape_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/html/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/html/node_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/html/parse_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/html/render_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/html/token_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/errors_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/flow_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/frame_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go15.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/go15.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/h2demo/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/h2i/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2i/h2i.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/h2i/h2i.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/headermap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/headermap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/hpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/hpack/hpack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/http2_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go15.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/not_go15.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/not_go16.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/pipe_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/server_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/writesched.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/writesched.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/z_spec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/http2/z_spec_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/dstunreach.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/icmp/dstunreach.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/icmp/echo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/icmp/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/icmp/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/icmp/extension.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/icmp/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/helper_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/icmp/helper_posix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/icmp/interface.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/icmp/ipv4.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/icmp/ipv4_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/icmp/ipv6.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/listen_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/icmp/listen_posix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/listen_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/icmp/listen_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/icmp/message.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/message_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/icmp/message_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/messagebody.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/icmp/messagebody.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/mpls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/icmp/mpls.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/multipart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/icmp/multipart.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/packettoobig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/icmp/packettoobig.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/paramprob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/icmp/paramprob.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ping_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/icmp/ping_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/icmp/sys_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/timeexceeded.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/icmp/timeexceeded.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/idna/idna_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/iana/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/internal/iana/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/control.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/control_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/control_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/control_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/defs_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/defs_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/defs_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/defs_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/defs_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/defs_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/header.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/header_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/header_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/helper_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/helper_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/helper_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/helper_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/iana.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/icmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/icmp_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/icmp_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/icmp_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/packet.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/payload.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/payload_cmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/payload_cmsg.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/sockopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sockopt_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/sockopt_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sockopt_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/sockopt_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/sys_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/sys_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/sys_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/sys_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/sys_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/sys_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/sys_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/unicast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/unicast_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/zsys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/zsys_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/zsys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/zsys_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/zsys_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/zsys_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/zsys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv4/zsys_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/control.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/control_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/control_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/control_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/control_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/defs_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/defs_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/defs_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/defs_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/defs_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/defs_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/header.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/header_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/header_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/helper_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/helper_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/helper_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/helper_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/iana.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/icmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/icmp_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/icmp_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/icmp_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/icmp_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/icmp_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/icmp_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/payload.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/payload_cmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/payload_cmsg.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/sockopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sockopt_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/sockopt_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sockopt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/sockopt_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sockopt_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/sockopt_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/sys_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/sys_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/sys_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/sys_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/sys_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/sys_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/unicast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/unicast_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/zsys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/zsys_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/zsys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/zsys_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/zsys_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/zsys_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/zsys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/ipv6/zsys_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/netutil/listen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/netutil/listen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/per_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/proxy/per_host.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/proxy/proxy_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/publicsuffix/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/publicsuffix/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/publicsuffix/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/publicsuffix/list.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/trace/histogram.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/trace/trace_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/webdav/file.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/webdav/file_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/webdav/if.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/if_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/webdav/if_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/webdav/lock.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/lock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/webdav/lock_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/webdav/prop.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/prop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/webdav/prop_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/webdav.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/webdav/webdav.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/webdav/xml.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/xml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/webdav/xml_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/websocket/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/websocket/client.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/websocket/hybi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/websocket/hybi.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/websocket/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/websocket/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/xsrftoken/xsrf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/net/xsrftoken/xsrf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/README -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/const_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/plan9/const_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/dir_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/plan9/dir_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/env_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/plan9/env_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/plan9/env_unset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/plan9/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/plan9/mksyscall.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/pwd_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/plan9/pwd_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/plan9/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/unix/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/creds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/unix/creds_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/unix/env_unset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/unix/export_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/unix/flock.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/unix/mksyscall.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/unix/syscall_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/unix/types_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/unix/types_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/unix/types_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/windows/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/windows/env_unset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/windows/svc/event.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/windows/svc/go12.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/windows/svc/go12.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go13.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/windows/svc/go13.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/version/version.go -------------------------------------------------------------------------------- /version/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehazlett/interlock/HEAD/version/version_test.go --------------------------------------------------------------------------------