├── .dockerignore ├── .github └── workflows │ └── semgrep.yml ├── .gitignore ├── LICENSE.md ├── Makefile ├── README.md ├── VERSION ├── client.go ├── client_test.go ├── client_v1.go ├── client_v2.go ├── cmd ├── pal │ ├── doc.go │ └── pal.go ├── pald │ ├── doc.go │ └── pald.go └── palpgpenc │ ├── doc.go │ └── main.go ├── decrypter ├── decrypter.go ├── decrypter_pgp.go ├── decrypter_pgp_test.go ├── decrypter_ro.go └── decrypter_test.go ├── demo ├── 0-setup.sh ├── 1-start-ro.sh ├── 2-encrypt-secret.sh ├── 3-start-pald.sh ├── 4-delegate-authorization.sh ├── 5-run-pal.sh ├── 6-query-demo.sh ├── 7-cleanup.sh ├── README.md ├── certs │ ├── ca-key.pem │ ├── ca.pem │ ├── client-key.pem │ └── client.pem ├── config.yaml └── demo.go ├── glide.lock ├── glide.yaml ├── identity.go ├── integration_test.go ├── integration_v1_test.go ├── integration_v2_test.go ├── log └── log.go ├── messages.go ├── server.go ├── server_test.go ├── test ├── Dockerfile.pal ├── Dockerfile.pald ├── Dockerfile.redoctober ├── README.md ├── certs │ ├── README.md │ ├── ca-key.pem │ ├── ca.pem │ ├── ca_csr.json │ ├── ca_signing_config.json │ ├── cert_gen.sh │ ├── redoctober-key.pem │ ├── redoctober.pem │ └── redoctober_csr.json ├── config.yaml ├── docker-compose.yaml ├── test.sh └── verify-plaintext.sh ├── testdata ├── pubring.gpg └── secring.gpg ├── trustedlabels ├── labels.go └── labels_docker.go ├── util.go ├── util_test.go └── vendor ├── 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 │ │ ├── parser_test.go │ │ ├── parser_test_helpers_test.go │ │ ├── parser_test_utilities_test.go │ │ ├── states.go │ │ ├── test_event_handler_test.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 ├── 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 │ │ ├── noop.go │ │ ├── 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_windows.go ├── Nvveen │ └── Gotty │ │ ├── LICENSE │ │ ├── README │ │ ├── TODO │ │ ├── attributes.go │ │ ├── gotty.go │ │ ├── parser.go │ │ └── types.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 ├── agl │ └── ed25519 │ │ ├── LICENSE │ │ ├── ed25519.go │ │ ├── ed25519_test.go │ │ ├── edwards25519 │ │ ├── const.go │ │ └── edwards25519.go │ │ ├── extra25519 │ │ ├── extra25519.go │ │ └── extra25519_test.go │ │ └── testdata │ │ └── sign.input.gz ├── 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 ├── certifi │ └── gocertifi │ │ ├── LICENSE │ │ ├── README.md │ │ ├── certifi.go │ │ ├── certifi_test.go │ │ └── tasks.py ├── cloudflare │ └── redoctober │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Dockerfile │ │ ├── LICENSE.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── client │ │ └── client.go │ │ ├── cmd │ │ └── ro │ │ │ ├── README.md │ │ │ ├── gopass │ │ │ └── gopass.go │ │ │ └── main.go │ │ ├── config │ │ ├── config.go │ │ ├── config_test.go │ │ └── testdata │ │ │ ├── bad_config.json │ │ │ └── config.json │ │ ├── core │ │ ├── core.go │ │ └── core_test.go │ │ ├── cryptor │ │ ├── cryptor.go │ │ └── cryptor_test.go │ │ ├── ecdh │ │ ├── ecdh.go │ │ └── ecdh_test.go │ │ ├── generate.go │ │ ├── hipchat │ │ └── hipchat.go │ │ ├── keycache │ │ ├── keycache.go │ │ └── keycache_test.go │ │ ├── msp │ │ ├── README.md │ │ ├── formatted.go │ │ ├── formatted_test.go │ │ ├── matrix.go │ │ ├── matrix_test.go │ │ ├── msp.go │ │ ├── msp_test.go │ │ ├── number.go │ │ ├── number_test.go │ │ ├── raw.go │ │ └── raw_test.go │ │ ├── order │ │ └── order.go │ │ ├── padding │ │ ├── padding.go │ │ └── padding_test.go │ │ ├── passvault │ │ ├── passvault.go │ │ └── passvault_test.go │ │ ├── persist │ │ ├── file.go │ │ ├── file_test.go │ │ ├── null.go │ │ ├── null_test.go │ │ ├── persist.go │ │ └── persist_test.go │ │ ├── redoctober.go │ │ ├── redoctober.service │ │ ├── redoctober.socket │ │ ├── redoctober_test.go │ │ ├── report │ │ └── report.go │ │ ├── scripts │ │ ├── .validate │ │ ├── docker-entrypoint.sh │ │ └── validate-html-generation │ │ ├── static.go │ │ ├── static │ │ └── index.html │ │ ├── symcrypt │ │ ├── symcrypt.go │ │ └── symcrypt_test.go │ │ ├── testdata │ │ ├── server.crt │ │ └── server.pem │ │ └── vendor │ │ ├── github.com │ │ ├── beorn7 │ │ │ └── perks │ │ │ │ └── quantile │ │ │ │ ├── LICENSE │ │ │ │ └── stream.go │ │ ├── certifi │ │ │ └── gocertifi │ │ │ │ ├── LICENSE │ │ │ │ └── certifi.go │ │ ├── cloudflare │ │ │ └── backoff │ │ │ │ ├── LICENSE │ │ │ │ └── backoff.go │ │ ├── coreos │ │ │ └── go-systemd │ │ │ │ └── activation │ │ │ │ ├── LICENSE │ │ │ │ ├── files.go │ │ │ │ ├── listeners.go │ │ │ │ └── packetconns.go │ │ ├── getsentry │ │ │ └── raven-go │ │ │ │ ├── LICENSE │ │ │ │ ├── client.go │ │ │ │ ├── example │ │ │ │ └── example.go │ │ │ │ ├── exception.go │ │ │ │ ├── http.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── stacktrace.go │ │ │ │ └── writer.go │ │ ├── golang │ │ │ └── protobuf │ │ │ │ ├── proto │ │ │ │ ├── LICENSE │ │ │ │ ├── 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 │ │ │ │ │ └── proto3.pb.go │ │ │ │ ├── testdata │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── golden_test.go │ │ │ │ │ ├── test.pb.go │ │ │ │ │ └── test.proto │ │ │ │ ├── text.go │ │ │ │ └── text_parser.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 │ │ ├── matttproud │ │ │ └── golang_protobuf_extensions │ │ │ │ └── pbutil │ │ │ │ ├── LICENSE │ │ │ │ ├── decode.go │ │ │ │ ├── doc.go │ │ │ │ └── encode.go │ │ └── prometheus │ │ │ ├── client_golang │ │ │ └── prometheus │ │ │ │ ├── LICENSE │ │ │ │ ├── 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 │ │ │ └── go │ │ │ │ ├── LICENSE │ │ │ │ └── metrics.pb.go │ │ │ ├── common │ │ │ ├── expfmt │ │ │ │ ├── LICENSE │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ ├── expfmt.go │ │ │ │ ├── fuzz.go │ │ │ │ ├── text_create.go │ │ │ │ └── text_parse.go │ │ │ ├── internal │ │ │ │ └── bitbucket.org │ │ │ │ │ └── ww │ │ │ │ │ └── goautoneg │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── autoneg.go │ │ │ └── model │ │ │ │ ├── LICENSE │ │ │ │ ├── alert.go │ │ │ │ ├── fingerprinting.go │ │ │ │ ├── fnv.go │ │ │ │ ├── labels.go │ │ │ │ ├── labelset.go │ │ │ │ ├── metric.go │ │ │ │ ├── model.go │ │ │ │ ├── signature.go │ │ │ │ ├── silence.go │ │ │ │ ├── time.go │ │ │ │ └── value.go │ │ │ └── procfs │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── fs.go │ │ │ ├── ipvs.go │ │ │ ├── mdstat.go │ │ │ ├── proc.go │ │ │ ├── proc_io.go │ │ │ ├── proc_limits.go │ │ │ ├── proc_stat.go │ │ │ └── stat.go │ │ ├── golang.org │ │ └── x │ │ │ └── crypto │ │ │ ├── pbkdf2 │ │ │ ├── LICENSE │ │ │ └── pbkdf2.go │ │ │ └── scrypt │ │ │ ├── LICENSE │ │ │ └── scrypt.go │ │ └── manifest ├── coreos │ └── go-systemd │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── DCO │ │ ├── LICENSE │ │ ├── README.md │ │ ├── activation │ │ ├── files.go │ │ ├── files_test.go │ │ ├── listeners.go │ │ ├── listeners_test.go │ │ ├── packetconns.go │ │ └── packetconns_test.go │ │ ├── daemon │ │ ├── sdnotify.go │ │ ├── sdnotify_test.go │ │ ├── watchdog.go │ │ └── watchdog_test.go │ │ ├── dbus │ │ ├── dbus.go │ │ ├── dbus_test.go │ │ ├── methods.go │ │ ├── methods_test.go │ │ ├── properties.go │ │ ├── set.go │ │ ├── set_test.go │ │ ├── subscription.go │ │ ├── subscription_set.go │ │ ├── subscription_set_test.go │ │ └── subscription_test.go │ │ ├── examples │ │ └── activation │ │ │ ├── activation.go │ │ │ ├── httpserver │ │ │ ├── README.md │ │ │ ├── hello.service │ │ │ ├── hello.socket │ │ │ └── httpserver.go │ │ │ ├── listen.go │ │ │ └── udpconn.go │ │ ├── fixtures │ │ ├── enable-disable.service │ │ ├── mask-unmask.service │ │ ├── reload.service │ │ ├── start-failed.service │ │ ├── start-stop.service │ │ ├── subscribe-events-set.service │ │ └── subscribe-events.service │ │ ├── journal │ │ └── journal.go │ │ ├── login1 │ │ ├── dbus.go │ │ └── dbus_test.go │ │ ├── machine1 │ │ ├── dbus.go │ │ └── dbus_test.go │ │ ├── sdjournal │ │ ├── functions.go │ │ ├── functions_test.go │ │ ├── journal.go │ │ ├── journal_test.go │ │ └── read.go │ │ ├── test │ │ ├── unit │ │ ├── deserialize.go │ │ ├── deserialize_test.go │ │ ├── end_to_end_test.go │ │ ├── escape.go │ │ ├── escape_test.go │ │ ├── option.go │ │ ├── option_test.go │ │ ├── serialize.go │ │ └── serialize_test.go │ │ └── util │ │ ├── util.go │ │ ├── util_cgo.go │ │ ├── util_stub.go │ │ └── util_test.go ├── 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 │ │ │ │ │ └── write_log_stream.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 │ │ │ │ │ │ └── helpers.go │ │ │ │ │ ├── system │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ ├── system.go │ │ │ │ │ │ └── system_routes.go │ │ │ │ │ └── volume │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ ├── volume.go │ │ │ │ │ │ └── volume_routes.go │ │ │ │ ├── router_swapper.go │ │ │ │ ├── server.go │ │ │ │ └── server_test.go │ │ │ ├── swagger-gen.yaml │ │ │ ├── swagger.yaml │ │ │ ├── templates │ │ │ │ └── server │ │ │ │ │ └── operation.gotmpl │ │ │ └── types │ │ │ │ ├── auth.go │ │ │ │ ├── backend │ │ │ │ └── backend.go │ │ │ │ ├── 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 │ │ │ │ ├── plugins │ │ │ │ └── logdriver │ │ │ │ │ ├── entry.pb.go │ │ │ │ │ ├── entry.proto │ │ │ │ │ ├── gen.go │ │ │ │ │ └── io.go │ │ │ │ ├── port.go │ │ │ │ ├── registry │ │ │ │ ├── authenticate.go │ │ │ │ └── registry.go │ │ │ │ ├── seccomp.go │ │ │ │ ├── service_update_response.go │ │ │ │ ├── stats.go │ │ │ │ ├── strslice │ │ │ │ ├── strslice.go │ │ │ │ └── strslice_test.go │ │ │ │ ├── swarm │ │ │ │ ├── common.go │ │ │ │ ├── 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 │ │ │ │ ├── buildargs.go │ │ │ │ ├── buildargs_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 │ │ │ │ ├── imagecontext.go │ │ │ │ ├── internals.go │ │ │ │ ├── internals_test.go │ │ │ │ ├── internals_unix.go │ │ │ │ ├── internals_windows.go │ │ │ │ ├── internals_windows_test.go │ │ │ │ ├── mockbackend_test.go │ │ │ │ ├── parser │ │ │ │ │ ├── dumper │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── json_test.go │ │ │ │ │ ├── line_parsers.go │ │ │ │ │ ├── line_parsers_test.go │ │ │ │ │ ├── parser.go │ │ │ │ │ ├── parser_test.go │ │ │ │ │ ├── split_command.go │ │ │ │ │ ├── testfile-line │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── testfiles-negative │ │ │ │ │ │ ├── env_no_value │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ └── shykes-nested-json │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ └── testfiles │ │ │ │ │ │ ├── ADD-COPY-with-JSON │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── brimstone-consuldock │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── brimstone-docker-consul │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── continueIndent │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── cpuguy83-nagios │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── docker │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── env │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── escape-after-comment │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── escape-nonewline │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── escape │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── escapes │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── flags │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── health │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── influxdb │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── jeztah-invalid-json-json-inside-string-double │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── jeztah-invalid-json-json-inside-string │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── jeztah-invalid-json-single-quotes │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── jeztah-invalid-json-unterminated-bracket │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── jeztah-invalid-json-unterminated-string │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── json │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── kartar-entrypoint-oddities │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── lk4d4-the-edge-case-generator │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── mail │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── multiple-volumes │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── mumble │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── nginx │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── tf2 │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── weechat │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ └── znc │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ ├── shell_parser.go │ │ │ │ ├── shell_parser_test.go │ │ │ │ ├── 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 │ │ │ ├── remotecontext │ │ │ │ ├── filehash.go │ │ │ │ └── lazycontext.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 │ │ │ │ │ ├── checkpoint.go │ │ │ │ │ ├── checkpoint_test.go │ │ │ │ │ ├── container.go │ │ │ │ │ ├── container_test.go │ │ │ │ │ ├── custom.go │ │ │ │ │ ├── custom_test.go │ │ │ │ │ ├── diff.go │ │ │ │ │ ├── diff_test.go │ │ │ │ │ ├── disk_usage.go │ │ │ │ │ ├── disk_usage_test.go │ │ │ │ │ ├── formatter.go │ │ │ │ │ ├── image.go │ │ │ │ │ ├── image_test.go │ │ │ │ │ ├── network.go │ │ │ │ │ ├── network_test.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── node_test.go │ │ │ │ │ ├── plugin.go │ │ │ │ │ ├── plugin_test.go │ │ │ │ │ ├── reflect.go │ │ │ │ │ ├── reflect_test.go │ │ │ │ │ ├── secret.go │ │ │ │ │ ├── secret_test.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── service_test.go │ │ │ │ │ ├── stats.go │ │ │ │ │ ├── stats_test.go │ │ │ │ │ ├── task.go │ │ │ │ │ ├── task_test.go │ │ │ │ │ ├── volume.go │ │ │ │ │ └── volume_test.go │ │ │ │ ├── idresolver │ │ │ │ │ ├── client_test.go │ │ │ │ │ ├── idresolver.go │ │ │ │ │ └── idresolver_test.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 │ │ │ │ │ ├── client_test.go │ │ │ │ │ ├── cmd.go │ │ │ │ │ ├── create.go │ │ │ │ │ ├── create_test.go │ │ │ │ │ ├── inspect.go │ │ │ │ │ ├── inspect_test.go │ │ │ │ │ ├── ls.go │ │ │ │ │ ├── ls_test.go │ │ │ │ │ ├── remove.go │ │ │ │ │ ├── remove_test.go │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── secret-create-with-name.golden │ │ │ │ │ │ ├── secret-inspect-with-format.json-template.golden │ │ │ │ │ │ ├── secret-inspect-with-format.simple-template.golden │ │ │ │ │ │ ├── secret-inspect-without-format.multiple-secrets-with-labels.golden │ │ │ │ │ │ ├── secret-inspect-without-format.single-secret.golden │ │ │ │ │ │ ├── secret-list-with-config-format.golden │ │ │ │ │ │ ├── secret-list-with-filter.golden │ │ │ │ │ │ ├── secret-list-with-format.golden │ │ │ │ │ │ ├── secret-list-with-quiet-option.golden │ │ │ │ │ │ └── secret-list.golden │ │ │ │ ├── service │ │ │ │ │ ├── cmd.go │ │ │ │ │ ├── create.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── inspect.go │ │ │ │ │ ├── inspect_test.go │ │ │ │ │ ├── list.go │ │ │ │ │ ├── logs.go │ │ │ │ │ ├── opts.go │ │ │ │ │ ├── opts_test.go │ │ │ │ │ ├── parse.go │ │ │ │ │ ├── progress │ │ │ │ │ │ └── progress.go │ │ │ │ │ ├── ps.go │ │ │ │ │ ├── remove.go │ │ │ │ │ ├── scale.go │ │ │ │ │ ├── trust.go │ │ │ │ │ ├── update.go │ │ │ │ │ └── update_test.go │ │ │ │ ├── stack │ │ │ │ │ ├── client_test.go │ │ │ │ │ ├── cmd.go │ │ │ │ │ ├── common.go │ │ │ │ │ ├── deploy.go │ │ │ │ │ ├── deploy_bundlefile.go │ │ │ │ │ ├── deploy_composefile.go │ │ │ │ │ ├── deploy_test.go │ │ │ │ │ ├── list.go │ │ │ │ │ ├── opts.go │ │ │ │ │ ├── ps.go │ │ │ │ │ ├── remove.go │ │ │ │ │ ├── remove_test.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 │ │ │ │ │ ├── secret.go │ │ │ │ │ ├── service.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 │ │ │ ├── task_logs.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-trusty │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── ubuntu-xenial │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── ubuntu-yakkety │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ └── ubuntu-zesty │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── armhf │ │ │ │ │ │ ├── debian-jessie │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ ├── raspbian-jessie │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── ubuntu-trusty │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── ubuntu-xenial │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ └── ubuntu-yakkety │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── ppc64le │ │ │ │ │ │ ├── build.sh │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ ├── ubuntu-trusty │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── ubuntu-xenial │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ └── ubuntu-yakkety │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ └── s390x │ │ │ │ │ │ ├── build.sh │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ ├── ubuntu-xenial │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ └── ubuntu-yakkety │ │ │ │ │ │ └── Dockerfile │ │ │ │ └── rpm │ │ │ │ │ ├── amd64 │ │ │ │ │ ├── README.md │ │ │ │ │ ├── amazonlinux-latest │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── centos-7 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── fedora-24 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── fedora-25 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── generate.sh │ │ │ │ │ ├── opensuse-13.2 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── oraclelinux-6 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── oraclelinux-7 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ └── photon-1.0 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── armhf │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── centos-7 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ └── generate.sh │ │ │ │ │ └── ppc64le │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── 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 │ │ │ │ │ └── docker_selinux.8.gz │ │ │ ├── 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 │ │ │ │ ├── filters_test.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_unix_test.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 │ │ │ │ ├── adapter.go │ │ │ │ ├── adapter_test.go │ │ │ │ ├── awslogs │ │ │ │ │ ├── cloudwatchlogs.go │ │ │ │ │ ├── cloudwatchlogs_test.go │ │ │ │ │ └── cwlogsiface_mock_test.go │ │ │ │ ├── copier.go │ │ │ │ ├── copier_test.go │ │ │ │ ├── etwlogs │ │ │ │ │ └── etwlogs_windows.go │ │ │ │ ├── factory.go │ │ │ │ ├── fluentd │ │ │ │ │ └── fluentd.go │ │ │ │ ├── gcplogs │ │ │ │ │ ├── gcplogging.go │ │ │ │ │ ├── gcplogging_linux.go │ │ │ │ │ └── gcplogging_others.go │ │ │ │ ├── gelf │ │ │ │ │ ├── gelf.go │ │ │ │ │ └── gelf_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 │ │ │ │ ├── logger_test.go │ │ │ │ ├── loggerutils │ │ │ │ │ ├── log_tag.go │ │ │ │ │ ├── log_tag_test.go │ │ │ │ │ └── rotatefilewriter.go │ │ │ │ ├── loginfo.go │ │ │ │ ├── plugin.go │ │ │ │ ├── plugin_unix.go │ │ │ │ ├── plugin_unsupported.go │ │ │ │ ├── proxy.go │ │ │ │ ├── ring.go │ │ │ │ ├── ring_test.go │ │ │ │ ├── splunk │ │ │ │ │ ├── splunk.go │ │ │ │ │ ├── splunk_test.go │ │ │ │ │ └── splunkhecmock_test.go │ │ │ │ └── syslog │ │ │ │ │ ├── syslog.go │ │ │ │ │ └── syslog_test.go │ │ │ ├── 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_logging.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 │ │ │ ├── cli │ │ │ │ ├── build │ │ │ │ │ └── build.go │ │ │ │ └── cli.go │ │ │ ├── daemon │ │ │ │ ├── daemon.go │ │ │ │ ├── daemon_swarm.go │ │ │ │ ├── daemon_unix.go │ │ │ │ └── daemon_windows.go │ │ │ ├── daemon_swarm_hack_test.go │ │ │ ├── docker_api_attach_test.go │ │ │ ├── docker_api_auth_test.go │ │ │ ├── docker_api_build_test.go │ │ │ ├── docker_api_containers_test.go │ │ │ ├── docker_api_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_logdriver_test.go │ │ │ ├── docker_cli_plugins_test.go │ │ │ ├── docker_cli_port_test.go │ │ │ ├── docker_cli_proxy_test.go │ │ │ ├── docker_cli_prune_unix_test.go │ │ │ ├── docker_cli_ps_test.go │ │ │ ├── docker_cli_pull_local_test.go │ │ │ ├── docker_cli_pull_test.go │ │ │ ├── docker_cli_pull_trusted_test.go │ │ │ ├── docker_cli_push_test.go │ │ │ ├── docker_cli_registry_user_agent_test.go │ │ │ ├── docker_cli_rename_test.go │ │ │ ├── docker_cli_restart_test.go │ │ │ ├── docker_cli_rm_test.go │ │ │ ├── docker_cli_rmi_test.go │ │ │ ├── docker_cli_run_test.go │ │ │ ├── docker_cli_run_unix_test.go │ │ │ ├── docker_cli_save_load_test.go │ │ │ ├── docker_cli_save_load_unix_test.go │ │ │ ├── docker_cli_search_test.go │ │ │ ├── docker_cli_secret_create_test.go │ │ │ ├── docker_cli_secret_inspect_test.go │ │ │ ├── docker_cli_secret_ls_test.go │ │ │ ├── docker_cli_service_create_test.go │ │ │ ├── docker_cli_service_health_test.go │ │ │ ├── docker_cli_service_logs_test.go │ │ │ ├── docker_cli_service_scale_test.go │ │ │ ├── docker_cli_service_update_test.go │ │ │ ├── docker_cli_sni_test.go │ │ │ ├── docker_cli_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_unix.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_unix.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 │ │ │ │ ├── stat_darwin.go │ │ │ │ ├── stat_freebsd.go │ │ │ │ ├── stat_linux.go │ │ │ │ ├── stat_openbsd.go │ │ │ │ ├── stat_solaris.go │ │ │ │ ├── stat_unix.go │ │ │ │ ├── stat_unix_test.go │ │ │ │ ├── stat_windows.go │ │ │ │ ├── syscall_unix.go │ │ │ │ ├── syscall_windows.go │ │ │ │ ├── syscall_windows_test.go │ │ │ │ ├── umask.go │ │ │ │ ├── umask_windows.go │ │ │ │ ├── utimes_freebsd.go │ │ │ │ ├── utimes_linux.go │ │ │ │ ├── utimes_unix_test.go │ │ │ │ ├── utimes_unsupported.go │ │ │ │ ├── xattrs_linux.go │ │ │ │ └── xattrs_unsupported.go │ │ │ ├── tailfile │ │ │ │ ├── tailfile.go │ │ │ │ └── tailfile_test.go │ │ │ ├── tarsum │ │ │ │ ├── builder_context.go │ │ │ │ ├── builder_context_test.go │ │ │ │ ├── fileinfosums.go │ │ │ │ ├── fileinfosums_test.go │ │ │ │ ├── tarsum.go │ │ │ │ ├── tarsum_spec.md │ │ │ │ ├── tarsum_test.go │ │ │ │ ├── testdata │ │ │ │ │ ├── 46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457 │ │ │ │ │ │ ├── json │ │ │ │ │ │ └── layer.tar │ │ │ │ │ ├── 511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158 │ │ │ │ │ │ ├── json │ │ │ │ │ │ └── layer.tar │ │ │ │ │ ├── collision │ │ │ │ │ │ ├── collision-0.tar │ │ │ │ │ │ ├── collision-1.tar │ │ │ │ │ │ ├── collision-2.tar │ │ │ │ │ │ └── collision-3.tar │ │ │ │ │ └── xattr │ │ │ │ │ │ ├── json │ │ │ │ │ │ └── layer.tar │ │ │ │ ├── versioning.go │ │ │ │ ├── versioning_test.go │ │ │ │ └── writercloser.go │ │ │ ├── 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 │ │ │ ├── CONTRIBUTING.md │ │ │ ├── GOVERNANCE.md │ │ │ ├── IRC-ADMINISTRATION.md │ │ │ ├── ISSUE-TRIAGE.md │ │ │ ├── PACKAGE-REPO-MAINTENANCE.md │ │ │ ├── PACKAGERS.md │ │ │ ├── PATCH-RELEASES.md │ │ │ ├── PRINCIPLES.md │ │ │ ├── README.md │ │ │ ├── RELEASE-CHECKLIST.md │ │ │ ├── RELEASE-PROCESS.md │ │ │ ├── REVIEWING.md │ │ │ └── TOOLS.md │ │ ├── reference │ │ │ ├── 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-connections │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── nat │ │ │ │ │ │ │ ├── nat.go │ │ │ │ │ │ │ ├── parse.go │ │ │ │ │ │ │ └── sort.go │ │ │ │ │ │ ├── sockets │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── inmem_socket.go │ │ │ │ │ │ │ ├── proxy.go │ │ │ │ │ │ │ ├── sockets.go │ │ │ │ │ │ │ ├── sockets_unix.go │ │ │ │ │ │ │ ├── sockets_windows.go │ │ │ │ │ │ │ ├── tcp_socket.go │ │ │ │ │ │ │ └── unix_socket.go │ │ │ │ │ │ └── tlsconfig │ │ │ │ │ │ │ ├── certpool_go17.go │ │ │ │ │ │ │ ├── certpool_other.go │ │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ │ ├── config_client_ciphers.go │ │ │ │ │ │ │ └── config_legacy_client_ciphers.go │ │ │ │ │ ├── go-events │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── broadcast.go │ │ │ │ │ │ ├── channel.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── event.go │ │ │ │ │ │ ├── filter.go │ │ │ │ │ │ ├── queue.go │ │ │ │ │ │ └── retry.go │ │ │ │ │ ├── go-metrics │ │ │ │ │ │ ├── LICENSE.code │ │ │ │ │ │ ├── LICENSE.docs │ │ │ │ │ │ ├── NOTICE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── counter.go │ │ │ │ │ │ ├── docs.go │ │ │ │ │ │ ├── gauge.go │ │ │ │ │ │ ├── handler.go │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ ├── namespace.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── timer.go │ │ │ │ │ │ └── unit.go │ │ │ │ │ ├── go-units │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── duration.go │ │ │ │ │ │ ├── size.go │ │ │ │ │ │ └── ulimit.go │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ ├── conntrack.go │ │ │ │ │ │ │ ├── firewalld.go │ │ │ │ │ │ │ └── iptables.go │ │ │ │ │ │ ├── ipvs │ │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ │ ├── ipvs.go │ │ │ │ │ │ │ └── netlink.go │ │ │ │ │ │ ├── netlabel │ │ │ │ │ │ │ └── labels.go │ │ │ │ │ │ ├── netutils │ │ │ │ │ │ │ ├── utils.go │ │ │ │ │ │ │ ├── utils_freebsd.go │ │ │ │ │ │ │ ├── utils_linux.go │ │ │ │ │ │ │ ├── utils_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 │ │ │ │ │ │ ├── configs │ │ │ │ │ │ │ └── configs.go │ │ │ │ │ │ ├── dependency.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── exec │ │ │ │ │ │ │ ├── controller.go │ │ │ │ │ │ │ ├── controller_stub.go │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ └── executor.go │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ ├── reporter.go │ │ │ │ │ │ ├── resource.go │ │ │ │ │ │ ├── secrets │ │ │ │ │ │ │ └── secrets.go │ │ │ │ │ │ ├── session.go │ │ │ │ │ │ ├── storage.go │ │ │ │ │ │ ├── task.go │ │ │ │ │ │ └── worker.go │ │ │ │ │ │ ├── api │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── ca.pb.go │ │ │ │ │ │ ├── ca.proto │ │ │ │ │ │ ├── control.pb.go │ │ │ │ │ │ ├── control.proto │ │ │ │ │ │ ├── deepcopy │ │ │ │ │ │ │ └── copy.go │ │ │ │ │ │ ├── defaults │ │ │ │ │ │ │ └── service.go │ │ │ │ │ │ ├── dispatcher.pb.go │ │ │ │ │ │ ├── dispatcher.proto │ │ │ │ │ │ ├── equality │ │ │ │ │ │ │ └── equality.go │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── store.pb.go │ │ │ │ │ │ ├── store.proto │ │ │ │ │ │ ├── storeobject.go │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ ├── ca_rotation.go │ │ │ │ │ │ │ ├── cluster.go │ │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ │ ├── network.go │ │ │ │ │ │ │ ├── node.go │ │ │ │ │ │ │ ├── secret.go │ │ │ │ │ │ │ ├── server.go │ │ │ │ │ │ │ ├── service.go │ │ │ │ │ │ │ └── task.go │ │ │ │ │ │ ├── deks.go │ │ │ │ │ │ ├── dirty.go │ │ │ │ │ │ ├── dispatcher │ │ │ │ │ │ │ ├── assignments.go │ │ │ │ │ │ │ ├── dispatcher.go │ │ │ │ │ │ │ ├── heartbeat │ │ │ │ │ │ │ │ └── heartbeat.go │ │ │ │ │ │ │ ├── nodes.go │ │ │ │ │ │ │ └── period.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ │ ├── configs.go │ │ │ │ │ │ │ │ ├── extensions.go │ │ │ │ │ │ │ │ ├── memory.go │ │ │ │ │ │ │ │ ├── networks.go │ │ │ │ │ │ │ │ ├── nodes.go │ │ │ │ │ │ │ │ ├── object.go │ │ │ │ │ │ │ │ ├── resources.go │ │ │ │ │ │ │ │ ├── secrets.go │ │ │ │ │ │ │ │ ├── services.go │ │ │ │ │ │ │ │ └── tasks.go │ │ │ │ │ │ │ └── watch.go │ │ │ │ │ │ └── storeapi │ │ │ │ │ │ │ ├── server.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 │ │ │ │ │ │ ├── io │ │ │ │ │ │ ├── full.go │ │ │ │ │ │ ├── io.go │ │ │ │ │ │ ├── uint32.go │ │ │ │ │ │ └── varint.go │ │ │ │ │ │ ├── proto │ │ │ │ │ │ ├── clone.go │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ ├── decode_gogo.go │ │ │ │ │ │ ├── duration.go │ │ │ │ │ │ ├── duration_gogo.go │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ ├── encode_gogo.go │ │ │ │ │ │ ├── equal.go │ │ │ │ │ │ ├── extensions.go │ │ │ │ │ │ ├── extensions_gogo.go │ │ │ │ │ │ ├── lib.go │ │ │ │ │ │ ├── lib_gogo.go │ │ │ │ │ │ ├── message_set.go │ │ │ │ │ │ ├── pointer_reflect.go │ │ │ │ │ │ ├── pointer_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 │ │ │ │ │ └── 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 │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── shellwords.go │ │ │ │ │ │ ├── util_posix.go │ │ │ │ │ │ └── util_windows.go │ │ │ │ ├── matttproud │ │ │ │ │ └── golang_protobuf_extensions │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── NOTICE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── pbutil │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── encode.go │ │ │ │ ├── miekg │ │ │ │ │ ├── dns │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ ├── clientconfig.go │ │ │ │ │ │ ├── defaults.go │ │ │ │ │ │ ├── dns.go │ │ │ │ │ │ ├── dnssec.go │ │ │ │ │ │ ├── dnssec_keygen.go │ │ │ │ │ │ ├── dnssec_keyscan.go │ │ │ │ │ │ ├── dnssec_privkey.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── edns.go │ │ │ │ │ │ ├── format.go │ │ │ │ │ │ ├── labels.go │ │ │ │ │ │ ├── msg.go │ │ │ │ │ │ ├── nsecx.go │ │ │ │ │ │ ├── privaterr.go │ │ │ │ │ │ ├── rawmsg.go │ │ │ │ │ │ ├── sanitize.go │ │ │ │ │ │ ├── scanner.go │ │ │ │ │ │ ├── server.go │ │ │ │ │ │ ├── sig0.go │ │ │ │ │ │ ├── singleinflight.go │ │ │ │ │ │ ├── tlsa.go │ │ │ │ │ │ ├── tsig.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── conntrack_linux.go │ │ │ │ │ │ ├── conntrack_unspecified.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 │ │ │ │ │ │ │ ├── conntrack_linux.go │ │ │ │ │ │ │ ├── link_linux.go │ │ │ │ │ │ │ ├── mpls_linux.go │ │ │ │ │ │ │ ├── nl_linux.go │ │ │ │ │ │ │ ├── nl_unspecified.go │ │ │ │ │ │ │ ├── route_linux.go │ │ │ │ │ │ │ ├── syscall.go │ │ │ │ │ │ │ ├── tc_linux.go │ │ │ │ │ │ │ ├── xfrm_linux.go │ │ │ │ │ │ │ ├── xfrm_monitor_linux.go │ │ │ │ │ │ │ ├── xfrm_policy_linux.go │ │ │ │ │ │ │ └── xfrm_state_linux.go │ │ │ │ │ │ ├── order.go │ │ │ │ │ │ ├── protinfo.go │ │ │ │ │ │ ├── protinfo_linux.go │ │ │ │ │ │ ├── qdisc.go │ │ │ │ │ │ ├── qdisc_linux.go │ │ │ │ │ │ ├── route.go │ │ │ │ │ │ ├── route_linux.go │ │ │ │ │ │ ├── route_unspecified.go │ │ │ │ │ │ ├── rule.go │ │ │ │ │ │ ├── rule_linux.go │ │ │ │ │ │ ├── socket.go │ │ │ │ │ │ ├── socket_linux.go │ │ │ │ │ │ ├── xfrm.go │ │ │ │ │ │ ├── xfrm_monitor_linux.go │ │ │ │ │ │ ├── xfrm_policy.go │ │ │ │ │ │ ├── xfrm_policy_linux.go │ │ │ │ │ │ ├── xfrm_state.go │ │ │ │ │ │ └── xfrm_state_linux.go │ │ │ │ │ └── netns │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── netns.go │ │ │ │ │ │ ├── netns_linux.go │ │ │ │ │ │ ├── netns_linux_386.go │ │ │ │ │ │ ├── netns_linux_amd64.go │ │ │ │ │ │ ├── netns_linux_arm.go │ │ │ │ │ │ ├── netns_linux_arm64.go │ │ │ │ │ │ ├── netns_linux_ppc64le.go │ │ │ │ │ │ ├── netns_linux_s390x.go │ │ │ │ │ │ └── netns_unspecified.go │ │ │ │ └── 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 │ ├── go │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── canonical │ │ │ └── json │ │ │ │ ├── bench_test.go │ │ │ │ ├── decode.go │ │ │ │ ├── decode_test.go │ │ │ │ ├── encode.go │ │ │ │ ├── encode_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── fold.go │ │ │ │ ├── fold_test.go │ │ │ │ ├── indent.go │ │ │ │ ├── scanner.go │ │ │ │ ├── scanner_test.go │ │ │ │ ├── stream.go │ │ │ │ ├── stream_test.go │ │ │ │ ├── tagkey_test.go │ │ │ │ ├── tags.go │ │ │ │ ├── tags_test.go │ │ │ │ └── testdata │ │ │ │ └── code.json.gz │ │ ├── circle.yml │ │ └── patches │ │ │ ├── 0001-Expose-Encoder.Canonical-and-MarshalCanonical-Handle.patch │ │ │ ├── 0002-add-test-for-canonical-float-error.patch │ │ │ └── 0003-Encode-non-fatal-floats-as-integers-in-canonical-mod.patch │ ├── 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 │ └── notary │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── Dockerfile │ │ ├── Godeps │ │ ├── Godeps.json │ │ └── Readme │ │ ├── Jenkinsfile │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── NOTARY_VERSION │ │ ├── README.md │ │ ├── ROADMAP.md │ │ ├── buildscripts │ │ ├── circle_parallelism.sh │ │ ├── covertest.py │ │ ├── cross.sh │ │ ├── dbtests.sh │ │ ├── docker-integration-test.py │ │ ├── dockertest.py │ │ ├── env.list │ │ ├── integrationtest.sh │ │ └── testclient.py │ │ ├── circle.yml │ │ ├── client │ │ ├── backwards_compatibility_test.go │ │ ├── changelist │ │ │ ├── change.go │ │ │ ├── change_test.go │ │ │ ├── changelist.go │ │ │ ├── changelist_test.go │ │ │ ├── file_changelist.go │ │ │ ├── file_changelist_test.go │ │ │ └── interface.go │ │ ├── client.go │ │ ├── client_pkcs11_test.go │ │ ├── client_test.go │ │ ├── client_update_test.go │ │ ├── delegations.go │ │ ├── errors.go │ │ ├── helpers.go │ │ ├── helpers_test.go │ │ ├── repo.go │ │ ├── repo_pkcs11.go │ │ ├── tufclient.go │ │ └── witness.go │ │ ├── cmd │ │ ├── notary-server │ │ │ ├── bootstrap.go │ │ │ ├── bootstrap_test.go │ │ │ ├── config.go │ │ │ ├── main.go │ │ │ └── main_test.go │ │ ├── notary-signer │ │ │ ├── config.go │ │ │ ├── main.go │ │ │ └── main_test.go │ │ └── notary │ │ │ ├── config.json │ │ │ ├── delegations.go │ │ │ ├── delegations_test.go │ │ │ ├── integration_nonpkcs11_test.go │ │ │ ├── integration_pkcs11_test.go │ │ │ ├── integration_test.go │ │ │ ├── keys.go │ │ │ ├── keys_nonpkcs11.go │ │ │ ├── keys_nonpkcs11_test.go │ │ │ ├── keys_pkcs11.go │ │ │ ├── keys_pkcs11_test.go │ │ │ ├── keys_test.go │ │ │ ├── main.go │ │ │ ├── main_test.go │ │ │ ├── prettyprint.go │ │ │ ├── prettyprint_test.go │ │ │ ├── root-ca.crt │ │ │ ├── tuf.go │ │ │ ├── tuf_test.go │ │ │ ├── util.go │ │ │ └── util_test.go │ │ ├── codecov.yml │ │ ├── const.go │ │ ├── const_nowindows.go │ │ ├── const_windows.go │ │ ├── cryptoservice │ │ ├── certificate.go │ │ ├── certificate_test.go │ │ ├── crypto_service.go │ │ └── crypto_service_test.go │ │ ├── development.mysql.yml │ │ ├── development.postgresql.yml │ │ ├── development.rethink.yml │ │ ├── docker-compose.postgresql.yml │ │ ├── docker-compose.rethink.yml │ │ ├── docker-compose.yml │ │ ├── docs │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── README.md │ │ ├── advanced_usage.md │ │ ├── best_practices.md │ │ ├── changelog.md │ │ ├── command_reference.md │ │ ├── getting_started.md │ │ ├── images │ │ │ ├── key-hierarchy.svg │ │ │ ├── metadata-sequence.svg │ │ │ ├── service-architecture.svg │ │ │ ├── service-deployment.svg │ │ │ └── trust-pinning-flow.png │ │ ├── index.md │ │ ├── reference │ │ │ ├── client-config.md │ │ │ ├── common-configs.md │ │ │ ├── index.md │ │ │ ├── server-config.md │ │ │ └── signer-config.md │ │ ├── resources │ │ │ ├── ncc_docker_notary_audit_2015_07_31.pdf │ │ │ ├── opensslCertGen.sh │ │ │ └── tuf_update_flow.jpg │ │ ├── running_a_service.md │ │ └── service_architecture.md │ │ ├── fixtures │ │ ├── compatibility │ │ │ ├── README.md │ │ │ ├── notary0.1 │ │ │ │ ├── README.txt │ │ │ │ ├── private │ │ │ │ │ ├── root_keys │ │ │ │ │ │ └── d0c623c8e70c70d42a8a8125c44a8598588b3f6e31d5c21a83cbc338dfde8a68_root.key │ │ │ │ │ └── tuf_keys │ │ │ │ │ │ └── docker.com │ │ │ │ │ │ └── notary0.1 │ │ │ │ │ │ └── samplerepo │ │ │ │ │ │ ├── 7fc757801b9bab4ec9e35bfe7a6b61668ff6f4c81b5632af19e6c728ab799599_targets.key │ │ │ │ │ │ └── a55ccf652b0be4b6c4d356cbb02d9ea432bb84a2571665be3df7c7396af8e8b8_snapshot.key │ │ │ │ ├── trusted_certificates │ │ │ │ │ └── docker.com │ │ │ │ │ │ └── notary0.1 │ │ │ │ │ │ └── samplerepo │ │ │ │ │ │ └── 4ff57dc987163053a12c066f2dd36b1ae6037a92f5416d381fe311a3db1868d8.crt │ │ │ │ └── tuf │ │ │ │ │ └── docker.com │ │ │ │ │ └── notary0.1 │ │ │ │ │ └── samplerepo │ │ │ │ │ ├── changelist │ │ │ │ │ └── 01454633937352279550_d85b9e45-2339-4fb4-b8f8-705ee39f73b7.change │ │ │ │ │ └── metadata │ │ │ │ │ ├── root.json │ │ │ │ │ ├── snapshot.json │ │ │ │ │ ├── targets.json │ │ │ │ │ └── timestamp.json │ │ │ └── notary0.3 │ │ │ │ ├── private │ │ │ │ ├── root_keys │ │ │ │ │ └── f4eaf871a74aa3b3a0ff95cef2455a1e4d461639f5625418e76756fc5c948690.key │ │ │ │ └── tuf_keys │ │ │ │ │ ├── docker.com │ │ │ │ │ └── notary0.3 │ │ │ │ │ │ └── tst │ │ │ │ │ │ ├── 041b64dab281324ef2b62fd2d04f4758269e120ff063b7bc78709272821a0a02.key │ │ │ │ │ │ └── 85559599cf3cf681ff193f432a7ca6d128182bd1cfa8ede2c70761deac8bc2dc.key │ │ │ │ │ └── fa842f66cac2dc898677a8660789dcff0e3b0b93b73f8952491f6493199936d3.key │ │ │ │ └── tuf │ │ │ │ └── docker.com │ │ │ │ └── notary0.3 │ │ │ │ └── tst │ │ │ │ ├── changelist │ │ │ │ ├── 01469661765810851111_248d5486-7f39-42c6-80ab-c29bfb336e99.change │ │ │ │ └── 01469661815470834910_e03d56d2-2e4e-4732-9d42-b6d5b9e1f48b.change │ │ │ │ └── metadata │ │ │ │ ├── root.json │ │ │ │ ├── snapshot.json │ │ │ │ ├── targets.json │ │ │ │ ├── targets │ │ │ │ └── releases.json │ │ │ │ └── timestamp.json │ │ ├── intermediate-ca.crt │ │ ├── notary-server.crt │ │ ├── notary-server.key │ │ ├── notary-signer.crt │ │ ├── notary-signer.key │ │ ├── regenerateTestingCerts.sh │ │ ├── rethinkdb │ │ │ ├── ca.pem │ │ │ ├── cert.pem │ │ │ └── key.pem │ │ ├── root-ca.crt │ │ ├── secure.example.com.crt │ │ ├── secure.example.com.key │ │ ├── self-signed_docker.com-notary.crt │ │ ├── self-signed_secure.example.com.crt │ │ ├── server-config-local.json │ │ ├── server-config.json │ │ ├── server-config.postgres.json │ │ ├── server-config.rethink.json │ │ ├── signer-config-local.json │ │ ├── signer-config.json │ │ ├── signer-config.postgres.json │ │ └── signer-config.rethink.json │ │ ├── hooks │ │ ├── build │ │ └── push │ │ ├── migrations │ │ ├── README.md │ │ ├── migrate.sh │ │ ├── rethink_migrate.sh │ │ ├── server │ │ │ ├── mysql │ │ │ │ ├── 0001_initial.up.sql │ │ │ │ ├── 0002_role_on_keys.up.sql │ │ │ │ ├── 0003_add_sha256_tuf_files.up.sql │ │ │ │ ├── 0004_drop_timestamp_key.up.sql │ │ │ │ └── 0005_changefeed.up.sql │ │ │ └── postgresql │ │ │ │ ├── 0001_initial.up.sql │ │ │ │ └── 0002_changefeed.up.sql │ │ └── signer │ │ │ ├── mysql │ │ │ ├── 0001_initial.up.sql │ │ │ └── 0002_gun_role_on_keys.up.sql │ │ │ └── postgresql │ │ │ └── 0001_initial.up.sql │ │ ├── notary.go │ │ ├── notarysql │ │ ├── mysql-initdb.d │ │ │ ├── initial-notaryserver.sql │ │ │ └── initial-notarysigner.sql │ │ └── postgresql-initdb.d │ │ │ ├── initial-notaryserver.sql │ │ │ └── initial-notarysigner.sql │ │ ├── passphrase │ │ ├── passphrase.go │ │ └── passphrase_test.go │ │ ├── proto │ │ ├── signer.pb.go │ │ └── signer.proto │ │ ├── server.Dockerfile │ │ ├── server.minimal.Dockerfile │ │ ├── server │ │ ├── errors │ │ │ └── errors.go │ │ ├── handlers │ │ │ ├── changefeed.go │ │ │ ├── changefeed_test.go │ │ │ ├── default.go │ │ │ ├── default_test.go │ │ │ ├── roles.go │ │ │ ├── roles_test.go │ │ │ ├── validation.go │ │ │ └── validation_test.go │ │ ├── integration_test.go │ │ ├── server.go │ │ ├── server_test.go │ │ ├── snapshot │ │ │ ├── snapshot.go │ │ │ └── snapshot_test.go │ │ ├── storage │ │ │ ├── errors.go │ │ │ ├── interface.go │ │ │ ├── memory.go │ │ │ ├── memory_test.go │ │ │ ├── mysql_test.go │ │ │ ├── postgresql_test.go │ │ │ ├── rethink_realdb_test.go │ │ │ ├── rethinkdb.go │ │ │ ├── rethinkdb_models.go │ │ │ ├── rethinkdb_test.go │ │ │ ├── sql_models.go │ │ │ ├── sqldb.go │ │ │ ├── sqldb_test.go │ │ │ ├── sqlite_test.go │ │ │ ├── storage_test.go │ │ │ ├── tuf_store.go │ │ │ ├── tuf_store_test.go │ │ │ └── types.go │ │ └── timestamp │ │ │ ├── timestamp.go │ │ │ └── timestamp_test.go │ │ ├── signer.Dockerfile │ │ ├── signer.minimal.Dockerfile │ │ ├── signer │ │ ├── Dockerfile │ │ ├── api │ │ │ ├── find_key.go │ │ │ └── rpc_api.go │ │ ├── client │ │ │ └── signer_trust.go │ │ ├── keydbstore │ │ │ ├── cachedcryptoservice.go │ │ │ ├── cachedcryptoservice_test.go │ │ │ ├── keydbstore.go │ │ │ ├── keydbstore_test.go │ │ │ ├── mysql_test.go │ │ │ ├── postgresql_test.go │ │ │ ├── rethink_keydbstore.go │ │ │ ├── rethink_keydbstore_test.go │ │ │ ├── rethink_realkeydbstore_test.go │ │ │ ├── sql_keydbstore.go │ │ │ ├── sql_keydbstore_test.go │ │ │ └── sqlite_test.go │ │ ├── rpc_and_client_test.go │ │ └── signer.go │ │ ├── storage │ │ ├── errors.go │ │ ├── filestore.go │ │ ├── filestore_test.go │ │ ├── httpstore.go │ │ ├── httpstore_test.go │ │ ├── interfaces.go │ │ ├── memorystore.go │ │ ├── memorystore_test.go │ │ ├── offlinestore.go │ │ ├── offlinestore_test.go │ │ ├── rethinkdb │ │ │ ├── bootstrap.go │ │ │ └── rethinkdb.go │ │ └── store_test.go │ │ ├── trustmanager │ │ ├── interfaces.go │ │ ├── keystore.go │ │ ├── keystore_test.go │ │ └── yubikey │ │ │ ├── import.go │ │ │ ├── non_pkcs11.go │ │ │ ├── pkcs11_darwin.go │ │ │ ├── pkcs11_interface.go │ │ │ ├── pkcs11_linux.go │ │ │ ├── yubikeystore.go │ │ │ └── yubikeystore_test.go │ │ ├── trustpinning │ │ ├── ca.crt │ │ ├── certs.go │ │ ├── certs_test.go │ │ ├── test.crt │ │ └── trustpin.go │ │ ├── tuf │ │ ├── LICENSE │ │ ├── README.md │ │ ├── builder.go │ │ ├── builder_test.go │ │ ├── data │ │ │ ├── errors.go │ │ │ ├── keys.go │ │ │ ├── roles.go │ │ │ ├── roles_test.go │ │ │ ├── root.go │ │ │ ├── root_test.go │ │ │ ├── serializer.go │ │ │ ├── snapshot.go │ │ │ ├── snapshot_test.go │ │ │ ├── targets.go │ │ │ ├── targets_test.go │ │ │ ├── timestamp.go │ │ │ ├── timestamp_test.go │ │ │ ├── types.go │ │ │ └── types_test.go │ │ ├── signed │ │ │ ├── ed25519.go │ │ │ ├── ed25519_test.go │ │ │ ├── errors.go │ │ │ ├── interface.go │ │ │ ├── sign.go │ │ │ ├── sign_test.go │ │ │ ├── verifiers.go │ │ │ ├── verifiers_test.go │ │ │ ├── verify.go │ │ │ └── verify_test.go │ │ ├── testutils │ │ │ ├── bootstrap.go │ │ │ ├── corrupt_memorystore.go │ │ │ ├── interfaces │ │ │ │ └── cryptoservice.go │ │ │ ├── repo.go │ │ │ ├── swizzler.go │ │ │ └── swizzler_test.go │ │ ├── tuf.go │ │ ├── tuf_test.go │ │ ├── utils │ │ │ ├── role_sort.go │ │ │ ├── role_sort_test.go │ │ │ ├── stack.go │ │ │ ├── stack_test.go │ │ │ ├── utils.go │ │ │ ├── utils_test.go │ │ │ ├── x509.go │ │ │ └── x509_test.go │ │ └── validation │ │ │ ├── errors.go │ │ │ └── errors_test.go │ │ ├── utils │ │ ├── auth_test.go │ │ ├── configuration.go │ │ ├── configuration_nowindows.go │ │ ├── configuration_nowindows_test.go │ │ ├── configuration_test.go │ │ ├── configuration_windows.go │ │ ├── http.go │ │ ├── http_test.go │ │ ├── importLogic.md │ │ ├── keys.go │ │ └── keys_test.go │ │ ├── vendor │ │ ├── github.com │ │ │ ├── BurntSushi │ │ │ │ └── toml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── COMPATIBLE │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── 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 │ │ │ ├── Shopify │ │ │ │ └── logrus-bugsnag │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bugsnag.go │ │ │ │ │ └── dev.yml │ │ │ ├── Sirupsen │ │ │ │ └── logrus │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── 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 │ │ │ ├── agl │ │ │ │ └── ed25519 │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── ed25519.go │ │ │ │ │ └── edwards25519 │ │ │ │ │ ├── const.go │ │ │ │ │ └── edwards25519.go │ │ │ ├── agtorre │ │ │ │ └── gocolorize │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── gocolorize.go │ │ │ │ │ └── wercker.yml │ │ │ ├── armon │ │ │ │ └── consul-api │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── acl.go │ │ │ │ │ ├── agent.go │ │ │ │ │ ├── api.go │ │ │ │ │ ├── catalog.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── health.go │ │ │ │ │ ├── kv.go │ │ │ │ │ ├── session.go │ │ │ │ │ └── status.go │ │ │ ├── beorn7 │ │ │ │ └── perks │ │ │ │ │ └── quantile │ │ │ │ │ ├── exampledata.txt │ │ │ │ │ └── stream.go │ │ │ ├── bitly │ │ │ │ └── go-simplejson │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── simplejson.go │ │ │ │ │ ├── simplejson_go10.go │ │ │ │ │ └── simplejson_go11.go │ │ │ ├── bugsnag │ │ │ │ ├── bugsnag-go │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── appengine.go │ │ │ │ │ ├── appengine_test.go │ │ │ │ │ ├── bugsnag.go │ │ │ │ │ ├── bugsnag_test.go │ │ │ │ │ ├── configuration.go │ │ │ │ │ ├── configuration_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── error.go │ │ │ │ │ │ ├── parse_panic.go │ │ │ │ │ │ └── stackframe.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── appengine │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── app.yaml │ │ │ │ │ │ │ ├── hello.go │ │ │ │ │ │ │ └── mylogs.txt │ │ │ │ │ │ ├── http │ │ │ │ │ │ │ └── main.go │ │ │ │ │ │ └── revelapp │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ ├── controllers │ │ │ │ │ │ │ │ └── app.go │ │ │ │ │ │ │ └── init.go │ │ │ │ │ │ │ ├── conf │ │ │ │ │ │ │ ├── app.conf │ │ │ │ │ │ │ └── routes │ │ │ │ │ │ │ ├── messages │ │ │ │ │ │ │ └── sample.en │ │ │ │ │ │ │ ├── public │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ └── bootstrap.css │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ │ ├── favicon.png │ │ │ │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ │ │ │ └── glyphicons-halflings.png │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ └── jquery-1.9.1.min.js │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ └── apptest.go │ │ │ │ │ ├── json_tags.go │ │ │ │ │ ├── metadata.go │ │ │ │ │ ├── metadata_test.go │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── middleware_test.go │ │ │ │ │ ├── notifier.go │ │ │ │ │ ├── panicwrap.go │ │ │ │ │ ├── panicwrap_test.go │ │ │ │ │ ├── payload.go │ │ │ │ │ └── revel │ │ │ │ │ │ └── bugsnagrevel.go │ │ │ │ ├── osext │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── osext.go │ │ │ │ │ ├── osext_plan9.go │ │ │ │ │ ├── osext_procfs.go │ │ │ │ │ ├── osext_sysctl.go │ │ │ │ │ ├── osext_test.go │ │ │ │ │ └── osext_windows.go │ │ │ │ └── panicwrap │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dup2.go │ │ │ │ │ ├── dup3.go │ │ │ │ │ ├── monitor.go │ │ │ │ │ ├── monitor_windows.go │ │ │ │ │ └── panicwrap.go │ │ │ ├── cenkalti │ │ │ │ └── backoff │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── backoff.go │ │ │ │ │ ├── exponential.go │ │ │ │ │ ├── retry.go │ │ │ │ │ └── ticker.go │ │ │ ├── coreos │ │ │ │ ├── etcd │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── NOTICE │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── pathutil │ │ │ │ │ │ └── path.go │ │ │ │ │ │ └── types │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── id.go │ │ │ │ │ │ ├── set.go │ │ │ │ │ │ ├── slice.go │ │ │ │ │ │ ├── urls.go │ │ │ │ │ │ └── urlsmap.go │ │ │ │ └── go-etcd │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── etcd │ │ │ │ │ ├── add_child.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── cluster.go │ │ │ │ │ ├── compare_and_delete.go │ │ │ │ │ ├── compare_and_swap.go │ │ │ │ │ ├── debug.go │ │ │ │ │ ├── delete.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── get.go │ │ │ │ │ ├── member.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── response.generated.go │ │ │ │ │ ├── response.go │ │ │ │ │ ├── set_update_create.go │ │ │ │ │ ├── shuffle.go │ │ │ │ │ ├── version.go │ │ │ │ │ └── watch.go │ │ │ ├── cpuguy83 │ │ │ │ └── go-md2man │ │ │ │ │ └── md2man │ │ │ │ │ ├── md2man.go │ │ │ │ │ └── roff.go │ │ │ ├── denisenkom │ │ │ │ └── go-mssqldb │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── buf.go │ │ │ │ │ ├── charset.go │ │ │ │ │ ├── collation.go │ │ │ │ │ ├── cp1250.go │ │ │ │ │ ├── cp1251.go │ │ │ │ │ ├── cp1252.go │ │ │ │ │ ├── cp1253.go │ │ │ │ │ ├── cp1254.go │ │ │ │ │ ├── cp1255.go │ │ │ │ │ ├── cp1256.go │ │ │ │ │ ├── cp1257.go │ │ │ │ │ ├── cp1258.go │ │ │ │ │ ├── cp437.go │ │ │ │ │ ├── cp850.go │ │ │ │ │ ├── cp874.go │ │ │ │ │ ├── cp932.go │ │ │ │ │ ├── cp936.go │ │ │ │ │ ├── cp949.go │ │ │ │ │ ├── cp950.go │ │ │ │ │ ├── decimal.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── log.go │ │ │ │ │ ├── mssql.go │ │ │ │ │ ├── mssql_go1.3.go │ │ │ │ │ ├── mssql_go1.3pre.go │ │ │ │ │ ├── net.go │ │ │ │ │ ├── ntlm.go │ │ │ │ │ ├── parser.go │ │ │ │ │ ├── rpc.go │ │ │ │ │ ├── sspi_windows.go │ │ │ │ │ ├── tds.go │ │ │ │ │ ├── token.go │ │ │ │ │ ├── tran.go │ │ │ │ │ └── types.go │ │ │ ├── docker │ │ │ │ ├── distribution │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .mailmap │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── BUILDING.md │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── MAINTAINERS │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── ROADMAP.md │ │ │ │ │ ├── blobs.go │ │ │ │ │ ├── circle.yml │ │ │ │ │ ├── context │ │ │ │ │ │ ├── context.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── http.go │ │ │ │ │ │ ├── logger.go │ │ │ │ │ │ ├── trace.go │ │ │ │ │ │ ├── util.go │ │ │ │ │ │ └── version.go │ │ │ │ │ ├── coverpkg.sh │ │ │ │ │ ├── digest │ │ │ │ │ │ ├── digest.go │ │ │ │ │ │ ├── digester.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── set.go │ │ │ │ │ │ └── verifiers.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── health │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── health.go │ │ │ │ │ ├── manifests.go │ │ │ │ │ ├── reference │ │ │ │ │ │ ├── reference.go │ │ │ │ │ │ └── regexp.go │ │ │ │ │ ├── registry.go │ │ │ │ │ ├── registry │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ ├── errcode │ │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ │ ├── handler.go │ │ │ │ │ │ │ │ └── register.go │ │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ │ ├── descriptors.go │ │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ │ ├── routes.go │ │ │ │ │ │ │ │ └── urls.go │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── auth.go │ │ │ │ │ │ │ ├── htpasswd │ │ │ │ │ │ │ │ ├── access.go │ │ │ │ │ │ │ │ └── htpasswd.go │ │ │ │ │ │ │ ├── silly │ │ │ │ │ │ │ │ └── access.go │ │ │ │ │ │ │ └── token │ │ │ │ │ │ │ │ ├── accesscontroller.go │ │ │ │ │ │ │ │ ├── stringset.go │ │ │ │ │ │ │ │ ├── token.go │ │ │ │ │ │ │ │ └── util.go │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ │ ├── api_version.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 │ │ │ │ ├── go-connections │ │ │ │ │ └── tlsconfig │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ ├── config_client_ciphers.go │ │ │ │ │ │ └── config_legacy_client_ciphers.go │ │ │ │ ├── go-units │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE.code │ │ │ │ │ ├── LICENSE.docs │ │ │ │ │ ├── MAINTAINERS │ │ │ │ │ ├── README.md │ │ │ │ │ ├── circle.yml │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── size.go │ │ │ │ │ └── ulimit.go │ │ │ │ ├── go │ │ │ │ │ └── canonical │ │ │ │ │ │ └── json │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ ├── fold.go │ │ │ │ │ │ ├── indent.go │ │ │ │ │ │ ├── scanner.go │ │ │ │ │ │ ├── stream.go │ │ │ │ │ │ └── tags.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 │ │ │ │ │ ├── testutil │ │ │ │ │ └── certificates.go │ │ │ │ │ ├── tlsdemo │ │ │ │ │ ├── README.md │ │ │ │ │ ├── client.go │ │ │ │ │ ├── gencert.go │ │ │ │ │ ├── genkeys.go │ │ │ │ │ └── server.go │ │ │ │ │ ├── trustgraph │ │ │ │ │ ├── graph.go │ │ │ │ │ ├── memory_graph.go │ │ │ │ │ └── statement.go │ │ │ │ │ └── util.go │ │ │ ├── dvsekhvalnov │ │ │ │ └── jose2go │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── aes │ │ │ │ │ ├── ecb.go │ │ │ │ │ └── key_wrap.go │ │ │ │ │ ├── aes_cbc_hmac.go │ │ │ │ │ ├── aes_gcm.go │ │ │ │ │ ├── aes_gcm_kw.go │ │ │ │ │ ├── aeskw.go │ │ │ │ │ ├── arrays │ │ │ │ │ └── arrays.go │ │ │ │ │ ├── base64url │ │ │ │ │ └── base64url.go │ │ │ │ │ ├── compact │ │ │ │ │ └── compact.go │ │ │ │ │ ├── deflate.go │ │ │ │ │ ├── direct.go │ │ │ │ │ ├── ecdh.go │ │ │ │ │ ├── ecdh_aeskw.go │ │ │ │ │ ├── ecdsa_using_sha.go │ │ │ │ │ ├── hmac.go │ │ │ │ │ ├── hmac_using_sha.go │ │ │ │ │ ├── jose.go │ │ │ │ │ ├── kdf │ │ │ │ │ ├── nist_sp800_56a.go │ │ │ │ │ └── pbkdf2.go │ │ │ │ │ ├── keys │ │ │ │ │ ├── ecc │ │ │ │ │ │ ├── ec_cert.pem │ │ │ │ │ │ ├── ec_private.key │ │ │ │ │ │ ├── ec_private.pem │ │ │ │ │ │ ├── ec_public.key │ │ │ │ │ │ └── ecc.go │ │ │ │ │ └── rsa │ │ │ │ │ │ ├── priv.key │ │ │ │ │ │ ├── priv.pem │ │ │ │ │ │ ├── pub.key │ │ │ │ │ │ ├── pub.pem │ │ │ │ │ │ └── rsa.go │ │ │ │ │ ├── padding │ │ │ │ │ ├── align.go │ │ │ │ │ └── pkcs7.go │ │ │ │ │ ├── pbse2_hmac_aeskw.go │ │ │ │ │ ├── plaintext.go │ │ │ │ │ ├── rsa_oaep.go │ │ │ │ │ ├── rsa_pkcs1v15.go │ │ │ │ │ ├── rsa_using_sha.go │ │ │ │ │ ├── rsapss_using_sha.go │ │ │ │ │ └── sha.go │ │ │ ├── erikstmartin │ │ │ │ └── go-testdb │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── conn.go │ │ │ │ │ ├── result.go │ │ │ │ │ ├── rows.go │ │ │ │ │ ├── stmt.go │ │ │ │ │ ├── testdb.go │ │ │ │ │ └── tx.go │ │ │ ├── getsentry │ │ │ │ └── raven-go │ │ │ │ │ ├── .dockerignore │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .gitmodules │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── client.go │ │ │ │ │ ├── exception.go │ │ │ │ │ ├── http.go │ │ │ │ │ ├── interfaces.go │ │ │ │ │ ├── runtests.sh │ │ │ │ │ ├── stacktrace.go │ │ │ │ │ └── writer.go │ │ │ ├── go-sql-driver │ │ │ │ └── mysql │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── appengine.go │ │ │ │ │ ├── benchmark_test.go │ │ │ │ │ ├── buffer.go │ │ │ │ │ ├── collations.go │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── const.go │ │ │ │ │ ├── driver.go │ │ │ │ │ ├── driver_test.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── errors_test.go │ │ │ │ │ ├── infile.go │ │ │ │ │ ├── packets.go │ │ │ │ │ ├── result.go │ │ │ │ │ ├── rows.go │ │ │ │ │ ├── statement.go │ │ │ │ │ ├── transaction.go │ │ │ │ │ ├── utils.go │ │ │ │ │ └── utils_test.go │ │ │ ├── golang │ │ │ │ ├── glog │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README │ │ │ │ │ ├── glog.go │ │ │ │ │ └── glog_file.go │ │ │ │ └── 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 │ │ │ │ │ │ ├── proto3.pb.go │ │ │ │ │ │ └── proto3.proto │ │ │ │ │ ├── text.go │ │ │ │ │ └── text_parser.go │ │ │ │ │ ├── protoc-gen-go │ │ │ │ │ └── descriptor │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── descriptor.pb.go │ │ │ │ │ └── ptypes │ │ │ │ │ └── any │ │ │ │ │ ├── any.pb.go │ │ │ │ │ └── any.proto │ │ │ ├── google │ │ │ │ └── gofuzz │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── fuzz.go │ │ │ │ │ └── fuzz_test.go │ │ │ ├── gorilla │ │ │ │ ├── context │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── context.go │ │ │ │ │ ├── context_test.go │ │ │ │ │ └── doc.go │ │ │ │ └── mux │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bench_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── mux.go │ │ │ │ │ ├── mux_test.go │ │ │ │ │ ├── old_test.go │ │ │ │ │ ├── regexp.go │ │ │ │ │ └── route.go │ │ │ ├── hailocab │ │ │ │ └── go-hostpool │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── epsilon_greedy.go │ │ │ │ │ ├── epsilon_value_calculators.go │ │ │ │ │ ├── host_entry.go │ │ │ │ │ └── hostpool.go │ │ │ ├── inconshreveable │ │ │ │ └── mousetrap │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── trap_others.go │ │ │ │ │ ├── trap_windows.go │ │ │ │ │ └── trap_windows_1.4.go │ │ │ ├── jinzhu │ │ │ │ ├── gorm │ │ │ │ │ ├── License │ │ │ │ │ ├── README.md │ │ │ │ │ ├── association.go │ │ │ │ │ ├── association_test.go │ │ │ │ │ ├── callback.go │ │ │ │ │ ├── callback_create.go │ │ │ │ │ ├── callback_delete.go │ │ │ │ │ ├── callback_query.go │ │ │ │ │ ├── callback_shared.go │ │ │ │ │ ├── callback_test.go │ │ │ │ │ ├── callback_update.go │ │ │ │ │ ├── callbacks_test.go │ │ │ │ │ ├── common_dialect.go │ │ │ │ │ ├── create_test.go │ │ │ │ │ ├── customize_column_test.go │ │ │ │ │ ├── delete_test.go │ │ │ │ │ ├── dialect.go │ │ │ │ │ ├── doc │ │ │ │ │ │ └── development.md │ │ │ │ │ ├── embedded_struct_test.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── field.go │ │ │ │ │ ├── foundation.go │ │ │ │ │ ├── images │ │ │ │ │ │ └── logger.png │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── join_table_handler.go │ │ │ │ │ ├── join_table_test.go │ │ │ │ │ ├── logger.go │ │ │ │ │ ├── main.go │ │ │ │ │ ├── main_private.go │ │ │ │ │ ├── main_test.go │ │ │ │ │ ├── migration_test.go │ │ │ │ │ ├── model.go │ │ │ │ │ ├── model_struct.go │ │ │ │ │ ├── mssql.go │ │ │ │ │ ├── multi_primary_keys_test.go │ │ │ │ │ ├── mysql.go │ │ │ │ │ ├── pointer_test.go │ │ │ │ │ ├── polymorphic_test.go │ │ │ │ │ ├── postgres.go │ │ │ │ │ ├── preload.go │ │ │ │ │ ├── preload_test.go │ │ │ │ │ ├── query_test.go │ │ │ │ │ ├── scope.go │ │ │ │ │ ├── scope_private.go │ │ │ │ │ ├── scope_test.go │ │ │ │ │ ├── search.go │ │ │ │ │ ├── search_test.go │ │ │ │ │ ├── slice_test.go │ │ │ │ │ ├── sqlite3.go │ │ │ │ │ ├── structs_test.go │ │ │ │ │ ├── test_all.sh │ │ │ │ │ ├── update_test.go │ │ │ │ │ ├── utils.go │ │ │ │ │ └── utils_private.go │ │ │ │ └── now │ │ │ │ │ ├── Guardfile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── main.go │ │ │ │ │ └── now.go │ │ │ ├── juju │ │ │ │ └── loggo │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── formatter.go │ │ │ │ │ ├── logger.go │ │ │ │ │ ├── testwriter.go │ │ │ │ │ └── writer.go │ │ │ ├── kr │ │ │ │ ├── pretty │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── License │ │ │ │ │ ├── Readme │ │ │ │ │ ├── diff.go │ │ │ │ │ ├── diff_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── formatter.go │ │ │ │ │ ├── formatter_test.go │ │ │ │ │ ├── pretty.go │ │ │ │ │ └── zero.go │ │ │ │ ├── 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 │ │ │ │ └── text │ │ │ │ │ ├── License │ │ │ │ │ ├── Readme │ │ │ │ │ ├── colwriter │ │ │ │ │ ├── Readme │ │ │ │ │ └── column.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── indent.go │ │ │ │ │ ├── indent_test.go │ │ │ │ │ ├── mc │ │ │ │ │ ├── Readme │ │ │ │ │ └── mc.go │ │ │ │ │ ├── wrap.go │ │ │ │ │ └── wrap_test.go │ │ │ ├── lib │ │ │ │ └── pq │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── buf.go │ │ │ │ │ ├── conn.go │ │ │ │ │ ├── copy.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── hstore │ │ │ │ │ └── hstore.go │ │ │ │ │ ├── notify.go │ │ │ │ │ ├── oid │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── gen.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── url.go │ │ │ │ │ ├── user_posix.go │ │ │ │ │ └── user_windows.go │ │ │ ├── magiconair │ │ │ │ └── properties │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── benchmark_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── lex.go │ │ │ │ │ ├── load.go │ │ │ │ │ ├── load_test.go │ │ │ │ │ ├── parser.go │ │ │ │ │ ├── properties.go │ │ │ │ │ ├── properties_test.go │ │ │ │ │ └── rangecheck.go │ │ │ ├── mattn │ │ │ │ └── go-sqlite3 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── backup.go │ │ │ │ │ ├── code │ │ │ │ │ ├── sqlite3-binding.c │ │ │ │ │ ├── sqlite3-binding.h │ │ │ │ │ └── sqlite3ext.h │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── error_test.go │ │ │ │ │ ├── sqlite3-binding.c │ │ │ │ │ ├── sqlite3-binding.h │ │ │ │ │ ├── sqlite3.go │ │ │ │ │ ├── sqlite3_fts3_test.go │ │ │ │ │ ├── sqlite3_libsqlite3.go │ │ │ │ │ ├── sqlite3_other.go │ │ │ │ │ ├── sqlite3_test.go │ │ │ │ │ ├── sqlite3_test │ │ │ │ │ └── sqltest.go │ │ │ │ │ └── sqlite3_windows.go │ │ │ ├── matttproud │ │ │ │ └── golang_protobuf_extensions │ │ │ │ │ └── pbutil │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── encode.go │ │ │ ├── miekg │ │ │ │ └── pkcs11 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── const.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── hsm.db │ │ │ │ │ ├── parallel_test.go │ │ │ │ │ ├── pkcs11.go │ │ │ │ │ ├── pkcs11.h │ │ │ │ │ ├── pkcs11_test.go │ │ │ │ │ ├── pkcs11f.h │ │ │ │ │ ├── pkcs11t.h │ │ │ │ │ ├── softhsm.conf │ │ │ │ │ └── types.go │ │ │ ├── mitchellh │ │ │ │ ├── go-homedir │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── homedir.go │ │ │ │ │ └── homedir_test.go │ │ │ │ └── mapstructure │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── decode_hooks.go │ │ │ │ │ ├── decode_hooks_test.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── mapstructure.go │ │ │ │ │ ├── mapstructure_benchmark_test.go │ │ │ │ │ ├── mapstructure_bugs_test.go │ │ │ │ │ ├── mapstructure_examples_test.go │ │ │ │ │ └── mapstructure_test.go │ │ │ ├── prometheus │ │ │ │ ├── client_golang │ │ │ │ │ └── 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 │ │ │ │ │ └── go │ │ │ │ │ │ └── metrics.pb.go │ │ │ │ ├── common │ │ │ │ │ ├── expfmt │ │ │ │ │ │ ├── decode.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 │ │ │ │ │ │ ├── json_decode.go │ │ │ │ │ │ ├── text_create.go │ │ │ │ │ │ └── text_parse.go │ │ │ │ │ ├── internal │ │ │ │ │ │ └── bitbucket.org │ │ │ │ │ │ │ └── ww │ │ │ │ │ │ │ └── goautoneg │ │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ │ └── autoneg.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 │ │ │ │ │ ├── fixtures │ │ │ │ │ ├── 584 │ │ │ │ │ │ └── stat │ │ │ │ │ ├── 26231 │ │ │ │ │ │ ├── cmdline │ │ │ │ │ │ ├── exe │ │ │ │ │ │ ├── fd │ │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ ├── 2 │ │ │ │ │ │ │ ├── 3 │ │ │ │ │ │ │ └── 10 │ │ │ │ │ │ ├── io │ │ │ │ │ │ ├── limits │ │ │ │ │ │ └── stat │ │ │ │ │ ├── 26232 │ │ │ │ │ │ ├── cmdline │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── ipvs.go │ │ │ │ │ ├── mdstat.go │ │ │ │ │ ├── proc.go │ │ │ │ │ ├── proc_io.go │ │ │ │ │ ├── proc_limits.go │ │ │ │ │ ├── proc_stat.go │ │ │ │ │ └── stat.go │ │ │ ├── revel │ │ │ │ └── revel │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── binder.go │ │ │ │ │ ├── compress.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── controller.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── field.go │ │ │ │ │ ├── filter.go │ │ │ │ │ ├── filterconfig.go │ │ │ │ │ ├── flash.go │ │ │ │ │ ├── http.go │ │ │ │ │ ├── i18n.go │ │ │ │ │ ├── intercept.go │ │ │ │ │ ├── invoker.go │ │ │ │ │ ├── libs.go │ │ │ │ │ ├── panic.go │ │ │ │ │ ├── params.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── revel.go │ │ │ │ │ ├── router.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── session.go │ │ │ │ │ ├── template.go │ │ │ │ │ ├── util.go │ │ │ │ │ ├── validation.go │ │ │ │ │ ├── validators.go │ │ │ │ │ ├── version.go │ │ │ │ │ ├── version.yaml │ │ │ │ │ └── watcher.go │ │ │ ├── robfig │ │ │ │ ├── config │ │ │ │ │ ├── README.md │ │ │ │ │ ├── config.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── option.go │ │ │ │ │ ├── read.go │ │ │ │ │ ├── section.go │ │ │ │ │ ├── type.go │ │ │ │ │ └── write.go │ │ │ │ └── pathtree │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── tree.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 │ │ │ │ │ ├── README.md │ │ │ │ │ └── main.go │ │ │ ├── spf13 │ │ │ │ ├── cast │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── cast.go │ │ │ │ │ └── caste.go │ │ │ │ ├── cobra │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .mailmap │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bash_completions.go │ │ │ │ │ ├── bash_completions.md │ │ │ │ │ ├── cobra.go │ │ │ │ │ ├── command.go │ │ │ │ │ ├── command_notwin.go │ │ │ │ │ └── command_win.go │ │ │ │ ├── jwalterweatherman │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── thatswhyyoualwaysleaveanote.go │ │ │ │ ├── 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 │ │ │ │ └── viper │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── remote │ │ │ │ │ └── remote.go │ │ │ │ │ ├── util.go │ │ │ │ │ ├── viper.go │ │ │ │ │ └── viper_test.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 │ │ │ ├── stretchr │ │ │ │ └── testify │ │ │ │ │ ├── assert │ │ │ │ │ ├── assertions.go │ │ │ │ │ ├── assertions_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── forward_assertions.go │ │ │ │ │ ├── forward_assertions_test.go │ │ │ │ │ ├── http_assertions.go │ │ │ │ │ └── http_assertions_test.go │ │ │ │ │ └── require │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── forward_requirements.go │ │ │ │ │ ├── forward_requirements_test.go │ │ │ │ │ ├── requirements.go │ │ │ │ │ └── requirements_test.go │ │ │ ├── stvp │ │ │ │ └── go-udp-testing │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── udp.go │ │ │ ├── tobi │ │ │ │ └── airbrake-go │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README │ │ │ │ │ ├── airbrake.go │ │ │ │ │ └── handler.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 │ │ │ │ │ ├── gen_15.go │ │ │ │ │ ├── gen_16.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 │ │ │ └── xordataexchange │ │ │ │ └── crypt │ │ │ │ ├── LICENSE │ │ │ │ ├── backend │ │ │ │ ├── backend.go │ │ │ │ ├── consul │ │ │ │ │ └── consul.go │ │ │ │ └── etcd │ │ │ │ │ └── etcd.go │ │ │ │ ├── config │ │ │ │ ├── README.md │ │ │ │ └── config.go │ │ │ │ └── encoding │ │ │ │ └── secconf │ │ │ │ └── secconf.go │ │ ├── golang.org │ │ │ └── x │ │ │ │ ├── crypto │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── bcrypt │ │ │ │ │ ├── base64.go │ │ │ │ │ └── bcrypt.go │ │ │ │ ├── blowfish │ │ │ │ │ ├── block.go │ │ │ │ │ ├── cipher.go │ │ │ │ │ └── const.go │ │ │ │ ├── cast5 │ │ │ │ │ └── cast5.go │ │ │ │ ├── md4 │ │ │ │ │ ├── md4.go │ │ │ │ │ └── md4block.go │ │ │ │ ├── nacl │ │ │ │ │ └── secretbox │ │ │ │ │ │ └── secretbox.go │ │ │ │ ├── openpgp │ │ │ │ │ ├── armor │ │ │ │ │ │ ├── armor.go │ │ │ │ │ │ └── encode.go │ │ │ │ │ ├── canonical_text.go │ │ │ │ │ ├── elgamal │ │ │ │ │ │ └── elgamal.go │ │ │ │ │ ├── errors │ │ │ │ │ │ └── errors.go │ │ │ │ │ ├── keys.go │ │ │ │ │ ├── packet │ │ │ │ │ │ ├── compressed.go │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ ├── encrypted_key.go │ │ │ │ │ │ ├── literal.go │ │ │ │ │ │ ├── ocfb.go │ │ │ │ │ │ ├── one_pass_signature.go │ │ │ │ │ │ ├── opaque.go │ │ │ │ │ │ ├── packet.go │ │ │ │ │ │ ├── private_key.go │ │ │ │ │ │ ├── public_key.go │ │ │ │ │ │ ├── public_key_v3.go │ │ │ │ │ │ ├── reader.go │ │ │ │ │ │ ├── signature.go │ │ │ │ │ │ ├── signature_v3.go │ │ │ │ │ │ ├── symmetric_key_encrypted.go │ │ │ │ │ │ ├── symmetrically_encrypted.go │ │ │ │ │ │ ├── userattribute.go │ │ │ │ │ │ └── userid.go │ │ │ │ │ ├── read.go │ │ │ │ │ ├── s2k │ │ │ │ │ │ └── s2k.go │ │ │ │ │ └── write.go │ │ │ │ ├── pbkdf2 │ │ │ │ │ └── pbkdf2.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 │ │ │ │ ├── scrypt │ │ │ │ │ └── scrypt.go │ │ │ │ └── ssh │ │ │ │ │ └── terminal │ │ │ │ │ ├── terminal.go │ │ │ │ │ ├── util.go │ │ │ │ │ ├── util_bsd.go │ │ │ │ │ ├── util_linux.go │ │ │ │ │ ├── util_plan9.go │ │ │ │ │ └── util_windows.go │ │ │ │ ├── net │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── context │ │ │ │ │ ├── context.go │ │ │ │ │ ├── ctxhttp │ │ │ │ │ │ ├── ctxhttp.go │ │ │ │ │ │ └── ctxhttp_pre17.go │ │ │ │ │ ├── go17.go │ │ │ │ │ └── pre_go17.go │ │ │ │ ├── http2 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── client_conn_pool.go │ │ │ │ │ ├── configure_transport.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── fixed_buffer.go │ │ │ │ │ ├── flow.go │ │ │ │ │ ├── frame.go │ │ │ │ │ ├── go16.go │ │ │ │ │ ├── go17.go │ │ │ │ │ ├── gotrack.go │ │ │ │ │ ├── h2i │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── h2i.go │ │ │ │ │ ├── headermap.go │ │ │ │ │ ├── hpack │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ ├── hpack.go │ │ │ │ │ │ ├── huffman.go │ │ │ │ │ │ └── tables.go │ │ │ │ │ ├── http2.go │ │ │ │ │ ├── not_go16.go │ │ │ │ │ ├── not_go17.go │ │ │ │ │ ├── pipe.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── transport.go │ │ │ │ │ ├── write.go │ │ │ │ │ └── writesched.go │ │ │ │ ├── internal │ │ │ │ │ └── timeseries │ │ │ │ │ │ └── timeseries.go │ │ │ │ ├── lex │ │ │ │ │ └── httplex │ │ │ │ │ │ └── httplex.go │ │ │ │ ├── trace │ │ │ │ │ ├── events.go │ │ │ │ │ ├── histogram.go │ │ │ │ │ └── trace.go │ │ │ │ └── websocket │ │ │ │ │ ├── client.go │ │ │ │ │ ├── hybi.go │ │ │ │ │ ├── server.go │ │ │ │ │ └── websocket.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 │ │ │ │ └── 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 │ │ ├── google.golang.org │ │ │ ├── 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 │ │ │ │ ├── LICENSE │ │ │ │ ├── compute │ │ │ │ │ └── metadata │ │ │ │ │ │ └── metadata.go │ │ │ │ └── internal │ │ │ │ │ └── cloud.go │ │ │ └── grpc │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── PATENTS │ │ │ │ ├── README.md │ │ │ │ ├── backoff.go │ │ │ │ ├── balancer.go │ │ │ │ ├── benchmark │ │ │ │ ├── benchmark.go │ │ │ │ ├── client │ │ │ │ │ └── main.go │ │ │ │ ├── grpc_testing │ │ │ │ │ ├── control.pb.go │ │ │ │ │ ├── control.proto │ │ │ │ │ ├── messages.pb.go │ │ │ │ │ ├── messages.proto │ │ │ │ │ ├── payloads.pb.go │ │ │ │ │ ├── payloads.proto │ │ │ │ │ ├── services.pb.go │ │ │ │ │ ├── services.proto │ │ │ │ │ ├── stats.pb.go │ │ │ │ │ └── stats.proto │ │ │ │ ├── server │ │ │ │ │ └── main.go │ │ │ │ └── stats │ │ │ │ │ ├── histogram.go │ │ │ │ │ ├── stats.go │ │ │ │ │ └── util.go │ │ │ │ ├── call.go │ │ │ │ ├── clientconn.go │ │ │ │ ├── codegen.sh │ │ │ │ ├── codes │ │ │ │ ├── code_string.go │ │ │ │ └── codes.go │ │ │ │ ├── coverage.sh │ │ │ │ ├── credentials │ │ │ │ ├── credentials.go │ │ │ │ ├── credentials_util_go17.go │ │ │ │ ├── credentials_util_pre_go17.go │ │ │ │ └── oauth │ │ │ │ │ └── oauth.go │ │ │ │ ├── doc.go │ │ │ │ ├── examples │ │ │ │ ├── helloworld │ │ │ │ │ ├── greeter_client │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── greeter_server │ │ │ │ │ │ └── main.go │ │ │ │ │ └── helloworld │ │ │ │ │ │ ├── helloworld.pb.go │ │ │ │ │ │ └── helloworld.proto │ │ │ │ └── route_guide │ │ │ │ │ ├── client │ │ │ │ │ └── client.go │ │ │ │ │ ├── routeguide │ │ │ │ │ ├── route_guide.pb.go │ │ │ │ │ └── route_guide.proto │ │ │ │ │ └── server │ │ │ │ │ └── server.go │ │ │ │ ├── grpclog │ │ │ │ ├── glogger │ │ │ │ │ └── glogger.go │ │ │ │ └── logger.go │ │ │ │ ├── health │ │ │ │ ├── grpc_health_v1 │ │ │ │ │ ├── health.pb.go │ │ │ │ │ └── health.proto │ │ │ │ └── health.go │ │ │ │ ├── interceptor.go │ │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ │ ├── interop │ │ │ │ └── test_utils.go │ │ │ │ ├── metadata │ │ │ │ └── metadata.go │ │ │ │ ├── naming │ │ │ │ └── naming.go │ │ │ │ ├── peer │ │ │ │ └── peer.go │ │ │ │ ├── rpc_util.go │ │ │ │ ├── server.go │ │ │ │ ├── stream.go │ │ │ │ ├── test │ │ │ │ ├── codec_perf │ │ │ │ │ ├── perf.pb.go │ │ │ │ │ └── perf.proto │ │ │ │ └── grpc_testing │ │ │ │ │ ├── test.pb.go │ │ │ │ │ └── test.proto │ │ │ │ ├── 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 │ │ │ ├── check.v1 │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── TODO │ │ │ ├── benchmark.go │ │ │ ├── check.go │ │ │ ├── checkers.go │ │ │ ├── helpers.go │ │ │ ├── printer.go │ │ │ ├── reporter.go │ │ │ └── run.go │ │ │ ├── dancannon │ │ │ └── gorethink.v2 │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── benchmarks_test.go │ │ │ │ ├── checkers_test.go │ │ │ │ ├── cluster.go │ │ │ │ ├── cluster_integration_test.go │ │ │ │ ├── cluster_test.go │ │ │ │ ├── connection.go │ │ │ │ ├── connection_handshake.go │ │ │ │ ├── connection_helper.go │ │ │ │ ├── cursor.go │ │ │ │ ├── cursor_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── encoding │ │ │ │ ├── cache.go │ │ │ │ ├── decoder.go │ │ │ │ ├── decoder_test.go │ │ │ │ ├── decoder_types.go │ │ │ │ ├── encoder.go │ │ │ │ ├── encoder_test.go │ │ │ │ ├── encoder_types.go │ │ │ │ ├── encoding.go │ │ │ │ ├── encoding_test.go │ │ │ │ ├── errors.go │ │ │ │ ├── fold.go │ │ │ │ ├── tags.go │ │ │ │ └── utils.go │ │ │ │ ├── errors.go │ │ │ │ ├── example_query_aggregation_test.go │ │ │ │ ├── example_query_control_test.go │ │ │ │ ├── example_query_db_test.go │ │ │ │ ├── example_query_manipulation_test.go │ │ │ │ ├── example_query_select_test.go │ │ │ │ ├── example_query_table_test.go │ │ │ │ ├── example_query_transformation_test.go │ │ │ │ ├── example_query_write_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gorethink.go │ │ │ │ ├── gorethink_test.go │ │ │ │ ├── host.go │ │ │ │ ├── node.go │ │ │ │ ├── pool.go │ │ │ │ ├── pseudotypes.go │ │ │ │ ├── ql2 │ │ │ │ ├── generate.go │ │ │ │ ├── ql2.pb.go │ │ │ │ └── ql2.proto │ │ │ │ ├── query.go │ │ │ │ ├── query_admin.go │ │ │ │ ├── query_admin_test.go │ │ │ │ ├── query_aggregation.go │ │ │ │ ├── query_aggregation_test.go │ │ │ │ ├── query_control.go │ │ │ │ ├── query_control_test.go │ │ │ │ ├── query_db.go │ │ │ │ ├── query_db_test.go │ │ │ │ ├── query_geospatial.go │ │ │ │ ├── query_geospatial_test.go │ │ │ │ ├── query_join.go │ │ │ │ ├── query_join_test.go │ │ │ │ ├── query_manipulation.go │ │ │ │ ├── query_manipulation_test.go │ │ │ │ ├── query_math.go │ │ │ │ ├── query_math_test.go │ │ │ │ ├── query_select.go │ │ │ │ ├── query_select_test.go │ │ │ │ ├── query_string.go │ │ │ │ ├── query_string_test.go │ │ │ │ ├── query_table.go │ │ │ │ ├── query_table_test.go │ │ │ │ ├── query_test.go │ │ │ │ ├── query_time.go │ │ │ │ ├── query_time_test.go │ │ │ │ ├── query_transformation.go │ │ │ │ ├── query_transformation_test.go │ │ │ │ ├── query_write.go │ │ │ │ ├── query_write_test.go │ │ │ │ ├── session.go │ │ │ │ ├── session_test.go │ │ │ │ ├── testdata_test.go │ │ │ │ ├── types │ │ │ │ └── geometry.go │ │ │ │ ├── utils.go │ │ │ │ └── wercker.yml │ │ │ ├── fatih │ │ │ └── pool.v2 │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── channel.go │ │ │ │ ├── conn.go │ │ │ │ └── pool.go │ │ │ ├── fsnotify.v1 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fsnotify.go │ │ │ ├── inotify.go │ │ │ ├── inotify_poller.go │ │ │ ├── kqueue.go │ │ │ ├── open_mode_bsd.go │ │ │ ├── open_mode_darwin.go │ │ │ └── windows.go │ │ │ └── yaml.v2 │ │ │ ├── LICENSE │ │ │ ├── LICENSE.libyaml │ │ │ ├── README.md │ │ │ ├── apic.go │ │ │ ├── decode.go │ │ │ ├── decode_test.go │ │ │ ├── emitterc.go │ │ │ ├── encode.go │ │ │ ├── encode_test.go │ │ │ ├── parserc.go │ │ │ ├── readerc.go │ │ │ ├── resolve.go │ │ │ ├── scannerc.go │ │ │ ├── sorter.go │ │ │ ├── suite_test.go │ │ │ ├── writerc.go │ │ │ ├── yaml.go │ │ │ ├── yamlh.go │ │ │ └── yamlprivateh.go │ │ └── version │ │ └── version.go ├── getsentry │ └── raven-go │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client.go │ │ ├── client_test.go │ │ ├── docs │ │ ├── Makefile │ │ ├── _sentryext │ │ │ ├── .gitignore │ │ │ ├── README.rst │ │ │ ├── sentryext.py │ │ │ └── verify-docs.py │ │ ├── conf.py │ │ ├── index.rst │ │ ├── integrations │ │ │ ├── http.rst │ │ │ └── index.rst │ │ ├── make.bat │ │ └── sentry-doc-config.json │ │ ├── example │ │ └── example.go │ │ ├── examples_test.go │ │ ├── exception.go │ │ ├── exception_test.go │ │ ├── http.go │ │ ├── http_test.go │ │ ├── interfaces.go │ │ ├── runtests.sh │ │ ├── stacktrace.go │ │ ├── stacktrace_test.go │ │ └── writer.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 ├── gorilla │ ├── context │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── context.go │ │ ├── context_test.go │ │ └── doc.go │ └── mux │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench_test.go │ │ ├── context_gorilla.go │ │ ├── context_gorilla_test.go │ │ ├── context_native.go │ │ ├── context_native_test.go │ │ ├── doc.go │ │ ├── mux.go │ │ ├── mux_test.go │ │ ├── old_test.go │ │ ├── regexp.go │ │ └── route.go ├── joshlf │ └── testutil │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── testutil.go │ │ └── testutil_test.go ├── mattn │ └── go-shellwords │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── shellwords.go │ │ ├── shellwords_test.go │ │ ├── util_posix.go │ │ └── util_windows.go ├── matttproud │ └── golang_protobuf_extensions │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── ext │ │ └── moved.go │ │ ├── pbtest │ │ └── deleted.go │ │ └── pbutil │ │ ├── all_test.go │ │ ├── decode.go │ │ ├── decode_test.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ └── fixtures_test.go ├── miekg │ └── pkcs11 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── const.go │ │ ├── error.go │ │ ├── hsm.db │ │ ├── parallel_test.go │ │ ├── pkcs11.go │ │ ├── pkcs11.h │ │ ├── pkcs11_test.go │ │ ├── pkcs11f.h │ │ ├── pkcs11t.h │ │ ├── softhsm.conf │ │ └── types.go ├── moby │ └── moby │ │ ├── .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 │ │ │ │ └── write_log_stream.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 │ │ │ │ │ └── helpers.go │ │ │ │ ├── system │ │ │ │ │ ├── backend.go │ │ │ │ │ ├── system.go │ │ │ │ │ └── system_routes.go │ │ │ │ └── volume │ │ │ │ │ ├── backend.go │ │ │ │ │ ├── volume.go │ │ │ │ │ └── volume_routes.go │ │ │ ├── router_swapper.go │ │ │ ├── server.go │ │ │ └── server_test.go │ │ ├── swagger-gen.yaml │ │ ├── swagger.yaml │ │ ├── templates │ │ │ └── server │ │ │ │ └── operation.gotmpl │ │ └── types │ │ │ ├── auth.go │ │ │ ├── backend │ │ │ └── backend.go │ │ │ ├── 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 │ │ │ ├── plugins │ │ │ └── logdriver │ │ │ │ ├── entry.pb.go │ │ │ │ ├── entry.proto │ │ │ │ ├── gen.go │ │ │ │ └── io.go │ │ │ ├── port.go │ │ │ ├── registry │ │ │ ├── authenticate.go │ │ │ └── registry.go │ │ │ ├── seccomp.go │ │ │ ├── service_update_response.go │ │ │ ├── stats.go │ │ │ ├── strslice │ │ │ ├── strslice.go │ │ │ └── strslice_test.go │ │ │ ├── swarm │ │ │ ├── common.go │ │ │ ├── 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 │ │ │ ├── buildargs.go │ │ │ ├── buildargs_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 │ │ │ ├── imagecontext.go │ │ │ ├── internals.go │ │ │ ├── internals_test.go │ │ │ ├── internals_unix.go │ │ │ ├── internals_windows.go │ │ │ ├── internals_windows_test.go │ │ │ ├── mockbackend_test.go │ │ │ ├── parser │ │ │ │ ├── dumper │ │ │ │ │ └── main.go │ │ │ │ ├── json_test.go │ │ │ │ ├── line_parsers.go │ │ │ │ ├── line_parsers_test.go │ │ │ │ ├── parser.go │ │ │ │ ├── parser_test.go │ │ │ │ ├── split_command.go │ │ │ │ ├── testfile-line │ │ │ │ │ └── Dockerfile │ │ │ │ ├── testfiles-negative │ │ │ │ │ ├── env_no_value │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ └── shykes-nested-json │ │ │ │ │ │ └── Dockerfile │ │ │ │ └── testfiles │ │ │ │ │ ├── ADD-COPY-with-JSON │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── brimstone-consuldock │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── brimstone-docker-consul │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── continueIndent │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── cpuguy83-nagios │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── docker │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── env │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── escape-after-comment │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── escape-nonewline │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── escape │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── escapes │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── flags │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── health │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── influxdb │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── jeztah-invalid-json-json-inside-string-double │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── jeztah-invalid-json-json-inside-string │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── jeztah-invalid-json-single-quotes │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── jeztah-invalid-json-unterminated-bracket │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── jeztah-invalid-json-unterminated-string │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── json │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── kartar-entrypoint-oddities │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── lk4d4-the-edge-case-generator │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── mail │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── multiple-volumes │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── mumble │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── nginx │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── tf2 │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ ├── weechat │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ │ │ └── znc │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── result │ │ │ ├── shell_parser.go │ │ │ ├── shell_parser_test.go │ │ │ ├── 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 │ │ ├── remotecontext │ │ │ ├── filehash.go │ │ │ └── lazycontext.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 │ │ │ │ ├── checkpoint.go │ │ │ │ ├── checkpoint_test.go │ │ │ │ ├── container.go │ │ │ │ ├── container_test.go │ │ │ │ ├── custom.go │ │ │ │ ├── custom_test.go │ │ │ │ ├── diff.go │ │ │ │ ├── diff_test.go │ │ │ │ ├── disk_usage.go │ │ │ │ ├── disk_usage_test.go │ │ │ │ ├── formatter.go │ │ │ │ ├── image.go │ │ │ │ ├── image_test.go │ │ │ │ ├── network.go │ │ │ │ ├── network_test.go │ │ │ │ ├── node.go │ │ │ │ ├── node_test.go │ │ │ │ ├── plugin.go │ │ │ │ ├── plugin_test.go │ │ │ │ ├── reflect.go │ │ │ │ ├── reflect_test.go │ │ │ │ ├── secret.go │ │ │ │ ├── secret_test.go │ │ │ │ ├── service.go │ │ │ │ ├── service_test.go │ │ │ │ ├── stats.go │ │ │ │ ├── stats_test.go │ │ │ │ ├── task.go │ │ │ │ ├── task_test.go │ │ │ │ ├── volume.go │ │ │ │ └── volume_test.go │ │ │ ├── idresolver │ │ │ │ ├── client_test.go │ │ │ │ ├── idresolver.go │ │ │ │ └── idresolver_test.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 │ │ │ │ ├── client_test.go │ │ │ │ ├── cmd.go │ │ │ │ ├── create.go │ │ │ │ ├── create_test.go │ │ │ │ ├── inspect.go │ │ │ │ ├── inspect_test.go │ │ │ │ ├── ls.go │ │ │ │ ├── ls_test.go │ │ │ │ ├── remove.go │ │ │ │ ├── remove_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── secret-create-with-name.golden │ │ │ │ │ ├── secret-inspect-with-format.json-template.golden │ │ │ │ │ ├── secret-inspect-with-format.simple-template.golden │ │ │ │ │ ├── secret-inspect-without-format.multiple-secrets-with-labels.golden │ │ │ │ │ ├── secret-inspect-without-format.single-secret.golden │ │ │ │ │ ├── secret-list-with-config-format.golden │ │ │ │ │ ├── secret-list-with-filter.golden │ │ │ │ │ ├── secret-list-with-format.golden │ │ │ │ │ ├── secret-list-with-quiet-option.golden │ │ │ │ │ └── secret-list.golden │ │ │ ├── service │ │ │ │ ├── cmd.go │ │ │ │ ├── create.go │ │ │ │ ├── helpers.go │ │ │ │ ├── inspect.go │ │ │ │ ├── inspect_test.go │ │ │ │ ├── list.go │ │ │ │ ├── logs.go │ │ │ │ ├── opts.go │ │ │ │ ├── opts_test.go │ │ │ │ ├── parse.go │ │ │ │ ├── progress │ │ │ │ │ └── progress.go │ │ │ │ ├── ps.go │ │ │ │ ├── remove.go │ │ │ │ ├── scale.go │ │ │ │ ├── trust.go │ │ │ │ ├── update.go │ │ │ │ └── update_test.go │ │ │ ├── stack │ │ │ │ ├── client_test.go │ │ │ │ ├── cmd.go │ │ │ │ ├── common.go │ │ │ │ ├── deploy.go │ │ │ │ ├── deploy_bundlefile.go │ │ │ │ ├── deploy_composefile.go │ │ │ │ ├── deploy_test.go │ │ │ │ ├── list.go │ │ │ │ ├── opts.go │ │ │ │ ├── ps.go │ │ │ │ ├── remove.go │ │ │ │ ├── remove_test.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 │ │ │ │ ├── secret.go │ │ │ │ ├── service.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 │ │ ├── task_logs.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-trusty │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── ubuntu-xenial │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── ubuntu-yakkety │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ └── ubuntu-zesty │ │ │ │ │ │ └── Dockerfile │ │ │ │ ├── armhf │ │ │ │ │ ├── debian-jessie │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── generate.sh │ │ │ │ │ ├── raspbian-jessie │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── ubuntu-trusty │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── ubuntu-xenial │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ └── ubuntu-yakkety │ │ │ │ │ │ └── Dockerfile │ │ │ │ ├── ppc64le │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── generate.sh │ │ │ │ │ ├── ubuntu-trusty │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── ubuntu-xenial │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ └── ubuntu-yakkety │ │ │ │ │ │ └── Dockerfile │ │ │ │ └── s390x │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── generate.sh │ │ │ │ │ ├── ubuntu-xenial │ │ │ │ │ └── Dockerfile │ │ │ │ │ └── ubuntu-yakkety │ │ │ │ │ └── Dockerfile │ │ │ └── rpm │ │ │ │ ├── amd64 │ │ │ │ ├── README.md │ │ │ │ ├── amazonlinux-latest │ │ │ │ │ └── Dockerfile │ │ │ │ ├── build.sh │ │ │ │ ├── centos-7 │ │ │ │ │ └── Dockerfile │ │ │ │ ├── fedora-24 │ │ │ │ │ └── Dockerfile │ │ │ │ ├── fedora-25 │ │ │ │ │ └── Dockerfile │ │ │ │ ├── generate.sh │ │ │ │ ├── opensuse-13.2 │ │ │ │ │ └── Dockerfile │ │ │ │ ├── oraclelinux-6 │ │ │ │ │ └── Dockerfile │ │ │ │ ├── oraclelinux-7 │ │ │ │ │ └── Dockerfile │ │ │ │ └── photon-1.0 │ │ │ │ │ └── Dockerfile │ │ │ │ ├── armhf │ │ │ │ ├── build.sh │ │ │ │ ├── centos-7 │ │ │ │ │ └── Dockerfile │ │ │ │ └── generate.sh │ │ │ │ └── ppc64le │ │ │ │ ├── build.sh │ │ │ │ ├── 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 │ │ │ │ └── docker_selinux.8.gz │ │ ├── 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 │ │ │ ├── filters_test.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_unix_test.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 │ │ │ ├── adapter.go │ │ │ ├── adapter_test.go │ │ │ ├── awslogs │ │ │ │ ├── cloudwatchlogs.go │ │ │ │ ├── cloudwatchlogs_test.go │ │ │ │ └── cwlogsiface_mock_test.go │ │ │ ├── copier.go │ │ │ ├── copier_test.go │ │ │ ├── etwlogs │ │ │ │ └── etwlogs_windows.go │ │ │ ├── factory.go │ │ │ ├── fluentd │ │ │ │ └── fluentd.go │ │ │ ├── gcplogs │ │ │ │ ├── gcplogging.go │ │ │ │ ├── gcplogging_linux.go │ │ │ │ └── gcplogging_others.go │ │ │ ├── gelf │ │ │ │ ├── gelf.go │ │ │ │ └── gelf_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 │ │ │ ├── logger_test.go │ │ │ ├── loggerutils │ │ │ │ ├── log_tag.go │ │ │ │ ├── log_tag_test.go │ │ │ │ └── rotatefilewriter.go │ │ │ ├── loginfo.go │ │ │ ├── plugin.go │ │ │ ├── plugin_unix.go │ │ │ ├── plugin_unsupported.go │ │ │ ├── proxy.go │ │ │ ├── ring.go │ │ │ ├── ring_test.go │ │ │ ├── splunk │ │ │ │ ├── splunk.go │ │ │ │ ├── splunk_test.go │ │ │ │ └── splunkhecmock_test.go │ │ │ └── syslog │ │ │ │ ├── syslog.go │ │ │ │ └── syslog_test.go │ │ ├── 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_logging.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 │ │ ├── cli │ │ │ ├── build │ │ │ │ └── build.go │ │ │ └── cli.go │ │ ├── daemon │ │ │ ├── daemon.go │ │ │ ├── daemon_swarm.go │ │ │ ├── daemon_unix.go │ │ │ └── daemon_windows.go │ │ ├── daemon_swarm_hack_test.go │ │ ├── docker_api_attach_test.go │ │ ├── docker_api_auth_test.go │ │ ├── docker_api_build_test.go │ │ ├── docker_api_containers_test.go │ │ ├── docker_api_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_logdriver_test.go │ │ ├── docker_cli_plugins_test.go │ │ ├── docker_cli_port_test.go │ │ ├── docker_cli_proxy_test.go │ │ ├── docker_cli_prune_unix_test.go │ │ ├── docker_cli_ps_test.go │ │ ├── docker_cli_pull_local_test.go │ │ ├── docker_cli_pull_test.go │ │ ├── docker_cli_pull_trusted_test.go │ │ ├── docker_cli_push_test.go │ │ ├── docker_cli_registry_user_agent_test.go │ │ ├── docker_cli_rename_test.go │ │ ├── docker_cli_restart_test.go │ │ ├── docker_cli_rm_test.go │ │ ├── docker_cli_rmi_test.go │ │ ├── docker_cli_run_test.go │ │ ├── docker_cli_run_unix_test.go │ │ ├── docker_cli_save_load_test.go │ │ ├── docker_cli_save_load_unix_test.go │ │ ├── docker_cli_search_test.go │ │ ├── docker_cli_secret_create_test.go │ │ ├── docker_cli_secret_inspect_test.go │ │ ├── docker_cli_secret_ls_test.go │ │ ├── docker_cli_service_create_test.go │ │ ├── docker_cli_service_health_test.go │ │ ├── docker_cli_service_logs_test.go │ │ ├── docker_cli_service_scale_test.go │ │ ├── docker_cli_service_update_test.go │ │ ├── docker_cli_sni_test.go │ │ ├── docker_cli_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_unix.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_unix.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 │ │ │ ├── stat_darwin.go │ │ │ ├── stat_freebsd.go │ │ │ ├── stat_linux.go │ │ │ ├── stat_openbsd.go │ │ │ ├── stat_solaris.go │ │ │ ├── stat_unix.go │ │ │ ├── stat_unix_test.go │ │ │ ├── stat_windows.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_windows.go │ │ │ ├── syscall_windows_test.go │ │ │ ├── umask.go │ │ │ ├── umask_windows.go │ │ │ ├── utimes_freebsd.go │ │ │ ├── utimes_linux.go │ │ │ ├── utimes_unix_test.go │ │ │ ├── utimes_unsupported.go │ │ │ ├── xattrs_linux.go │ │ │ └── xattrs_unsupported.go │ │ ├── tailfile │ │ │ ├── tailfile.go │ │ │ └── tailfile_test.go │ │ ├── tarsum │ │ │ ├── builder_context.go │ │ │ ├── builder_context_test.go │ │ │ ├── fileinfosums.go │ │ │ ├── fileinfosums_test.go │ │ │ ├── tarsum.go │ │ │ ├── tarsum_spec.md │ │ │ ├── tarsum_test.go │ │ │ ├── testdata │ │ │ │ ├── 46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457 │ │ │ │ │ ├── json │ │ │ │ │ └── layer.tar │ │ │ │ ├── 511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158 │ │ │ │ │ ├── json │ │ │ │ │ └── layer.tar │ │ │ │ ├── collision │ │ │ │ │ ├── collision-0.tar │ │ │ │ │ ├── collision-1.tar │ │ │ │ │ ├── collision-2.tar │ │ │ │ │ └── collision-3.tar │ │ │ │ └── xattr │ │ │ │ │ ├── json │ │ │ │ │ └── layer.tar │ │ │ ├── versioning.go │ │ │ ├── versioning_test.go │ │ │ └── writercloser.go │ │ ├── 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 │ │ ├── CONTRIBUTING.md │ │ ├── GOVERNANCE.md │ │ ├── IRC-ADMINISTRATION.md │ │ ├── ISSUE-TRIAGE.md │ │ ├── PACKAGE-REPO-MAINTENANCE.md │ │ ├── PACKAGERS.md │ │ ├── PATCH-RELEASES.md │ │ ├── PRINCIPLES.md │ │ ├── README.md │ │ ├── RELEASE-CHECKLIST.md │ │ ├── RELEASE-PROCESS.md │ │ ├── REVIEWING.md │ │ └── TOOLS.md │ │ ├── reference │ │ ├── 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 │ │ │ │ │ │ └── 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-connections │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── nat │ │ │ │ │ │ ├── nat.go │ │ │ │ │ │ ├── parse.go │ │ │ │ │ │ └── sort.go │ │ │ │ │ ├── sockets │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── inmem_socket.go │ │ │ │ │ │ ├── proxy.go │ │ │ │ │ │ ├── sockets.go │ │ │ │ │ │ ├── sockets_unix.go │ │ │ │ │ │ ├── sockets_windows.go │ │ │ │ │ │ ├── tcp_socket.go │ │ │ │ │ │ └── unix_socket.go │ │ │ │ │ └── tlsconfig │ │ │ │ │ │ ├── certpool_go17.go │ │ │ │ │ │ ├── certpool_other.go │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ ├── config_client_ciphers.go │ │ │ │ │ │ └── config_legacy_client_ciphers.go │ │ │ │ ├── go-events │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── broadcast.go │ │ │ │ │ ├── channel.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── filter.go │ │ │ │ │ ├── queue.go │ │ │ │ │ └── retry.go │ │ │ │ ├── go-metrics │ │ │ │ │ ├── LICENSE.code │ │ │ │ │ ├── LICENSE.docs │ │ │ │ │ ├── NOTICE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── counter.go │ │ │ │ │ ├── docs.go │ │ │ │ │ ├── gauge.go │ │ │ │ │ ├── handler.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── namespace.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── timer.go │ │ │ │ │ └── unit.go │ │ │ │ ├── go-units │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── size.go │ │ │ │ │ └── ulimit.go │ │ │ │ ├── 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 │ │ │ │ │ │ ├── conntrack.go │ │ │ │ │ │ ├── firewalld.go │ │ │ │ │ │ └── iptables.go │ │ │ │ │ ├── ipvs │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ ├── ipvs.go │ │ │ │ │ │ └── netlink.go │ │ │ │ │ ├── netlabel │ │ │ │ │ │ └── labels.go │ │ │ │ │ ├── netutils │ │ │ │ │ │ ├── utils.go │ │ │ │ │ │ ├── utils_freebsd.go │ │ │ │ │ │ ├── utils_linux.go │ │ │ │ │ │ ├── utils_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 │ │ │ │ │ ├── configs │ │ │ │ │ │ └── configs.go │ │ │ │ │ ├── dependency.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── exec │ │ │ │ │ │ ├── controller.go │ │ │ │ │ │ ├── controller_stub.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ └── executor.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── reporter.go │ │ │ │ │ ├── resource.go │ │ │ │ │ ├── secrets │ │ │ │ │ │ └── secrets.go │ │ │ │ │ ├── session.go │ │ │ │ │ ├── storage.go │ │ │ │ │ ├── task.go │ │ │ │ │ └── worker.go │ │ │ │ │ ├── api │ │ │ │ │ ├── README.md │ │ │ │ │ ├── ca.pb.go │ │ │ │ │ ├── ca.proto │ │ │ │ │ ├── control.pb.go │ │ │ │ │ ├── control.proto │ │ │ │ │ ├── deepcopy │ │ │ │ │ │ └── copy.go │ │ │ │ │ ├── defaults │ │ │ │ │ │ └── service.go │ │ │ │ │ ├── dispatcher.pb.go │ │ │ │ │ ├── dispatcher.proto │ │ │ │ │ ├── equality │ │ │ │ │ │ └── equality.go │ │ │ │ │ ├── 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 │ │ │ │ │ ├── store.pb.go │ │ │ │ │ ├── store.proto │ │ │ │ │ ├── storeobject.go │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── ca_rotation.go │ │ │ │ │ │ ├── cluster.go │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ ├── config.go │ │ │ │ │ │ ├── network.go │ │ │ │ │ │ ├── node.go │ │ │ │ │ │ ├── secret.go │ │ │ │ │ │ ├── server.go │ │ │ │ │ │ ├── service.go │ │ │ │ │ │ └── task.go │ │ │ │ │ ├── deks.go │ │ │ │ │ ├── dirty.go │ │ │ │ │ ├── dispatcher │ │ │ │ │ │ ├── assignments.go │ │ │ │ │ │ ├── dispatcher.go │ │ │ │ │ │ ├── heartbeat │ │ │ │ │ │ │ └── heartbeat.go │ │ │ │ │ │ ├── nodes.go │ │ │ │ │ │ └── period.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ ├── configs.go │ │ │ │ │ │ │ ├── extensions.go │ │ │ │ │ │ │ ├── memory.go │ │ │ │ │ │ │ ├── networks.go │ │ │ │ │ │ │ ├── nodes.go │ │ │ │ │ │ │ ├── object.go │ │ │ │ │ │ │ ├── resources.go │ │ │ │ │ │ │ ├── secrets.go │ │ │ │ │ │ │ ├── services.go │ │ │ │ │ │ │ └── tasks.go │ │ │ │ │ │ └── watch.go │ │ │ │ │ └── storeapi │ │ │ │ │ │ ├── server.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 │ │ │ │ │ ├── io │ │ │ │ │ ├── full.go │ │ │ │ │ ├── io.go │ │ │ │ │ ├── uint32.go │ │ │ │ │ └── varint.go │ │ │ │ │ ├── proto │ │ │ │ │ ├── clone.go │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── decode_gogo.go │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── duration_gogo.go │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── encode_gogo.go │ │ │ │ │ ├── equal.go │ │ │ │ │ ├── extensions.go │ │ │ │ │ ├── extensions_gogo.go │ │ │ │ │ ├── lib.go │ │ │ │ │ ├── lib_gogo.go │ │ │ │ │ ├── message_set.go │ │ │ │ │ ├── pointer_reflect.go │ │ │ │ │ ├── pointer_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 │ │ │ │ └── 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 │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── shellwords.go │ │ │ │ │ ├── util_posix.go │ │ │ │ │ └── util_windows.go │ │ │ ├── matttproud │ │ │ │ └── golang_protobuf_extensions │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── NOTICE │ │ │ │ │ ├── README.md │ │ │ │ │ └── pbutil │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── encode.go │ │ │ ├── miekg │ │ │ │ ├── dns │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── client.go │ │ │ │ │ ├── clientconfig.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── dns.go │ │ │ │ │ ├── dnssec.go │ │ │ │ │ ├── dnssec_keygen.go │ │ │ │ │ ├── dnssec_keyscan.go │ │ │ │ │ ├── dnssec_privkey.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── edns.go │ │ │ │ │ ├── format.go │ │ │ │ │ ├── labels.go │ │ │ │ │ ├── msg.go │ │ │ │ │ ├── nsecx.go │ │ │ │ │ ├── privaterr.go │ │ │ │ │ ├── rawmsg.go │ │ │ │ │ ├── sanitize.go │ │ │ │ │ ├── scanner.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── sig0.go │ │ │ │ │ ├── singleinflight.go │ │ │ │ │ ├── tlsa.go │ │ │ │ │ ├── tsig.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── 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 │ │ │ │ │ ├── conntrack_linux.go │ │ │ │ │ ├── conntrack_unspecified.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 │ │ │ │ │ │ ├── conntrack_linux.go │ │ │ │ │ │ ├── link_linux.go │ │ │ │ │ │ ├── mpls_linux.go │ │ │ │ │ │ ├── nl_linux.go │ │ │ │ │ │ ├── nl_unspecified.go │ │ │ │ │ │ ├── route_linux.go │ │ │ │ │ │ ├── syscall.go │ │ │ │ │ │ ├── tc_linux.go │ │ │ │ │ │ ├── xfrm_linux.go │ │ │ │ │ │ ├── xfrm_monitor_linux.go │ │ │ │ │ │ ├── xfrm_policy_linux.go │ │ │ │ │ │ └── xfrm_state_linux.go │ │ │ │ │ ├── order.go │ │ │ │ │ ├── protinfo.go │ │ │ │ │ ├── protinfo_linux.go │ │ │ │ │ ├── qdisc.go │ │ │ │ │ ├── qdisc_linux.go │ │ │ │ │ ├── route.go │ │ │ │ │ ├── route_linux.go │ │ │ │ │ ├── route_unspecified.go │ │ │ │ │ ├── rule.go │ │ │ │ │ ├── rule_linux.go │ │ │ │ │ ├── socket.go │ │ │ │ │ ├── socket_linux.go │ │ │ │ │ ├── xfrm.go │ │ │ │ │ ├── xfrm_monitor_linux.go │ │ │ │ │ ├── xfrm_policy.go │ │ │ │ │ ├── xfrm_policy_linux.go │ │ │ │ │ ├── xfrm_state.go │ │ │ │ │ └── xfrm_state_linux.go │ │ │ │ └── netns │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── netns.go │ │ │ │ │ ├── netns_linux.go │ │ │ │ │ ├── netns_linux_386.go │ │ │ │ │ ├── netns_linux_amd64.go │ │ │ │ │ ├── netns_linux_arm.go │ │ │ │ │ ├── netns_linux_arm64.go │ │ │ │ │ ├── netns_linux_ppc64le.go │ │ │ │ │ ├── netns_linux_s390x.go │ │ │ │ │ └── netns_unspecified.go │ │ │ └── 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 ├── opencontainers │ ├── go-digest │ │ ├── .mailmap │ │ ├── .pullapprove.yml │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.code │ │ ├── LICENSE.docs │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── algorithm.go │ │ ├── algorithm_test.go │ │ ├── digest.go │ │ ├── digest_test.go │ │ ├── digester.go │ │ ├── doc.go │ │ ├── verifiers.go │ │ └── verifiers_test.go │ ├── runc │ │ ├── .gitignore │ │ ├── .pullapprove.yml │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── MAINTAINERS_GUIDE.md │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── PRINCIPLES.md │ │ ├── README.md │ │ ├── VERSION │ │ ├── checkpoint.go │ │ ├── contrib │ │ │ ├── cmd │ │ │ │ └── recvtty │ │ │ │ │ └── recvtty.go │ │ │ └── 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 │ │ │ │ ├── namespace.h │ │ │ │ ├── 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 │ │ │ ├── sync.go │ │ │ ├── system │ │ │ │ ├── linux.go │ │ │ │ ├── proc.go │ │ │ │ ├── proc_test.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 │ │ │ │ ├── cmsg.c │ │ │ │ ├── cmsg.go │ │ │ │ ├── cmsg.h │ │ │ │ ├── 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-create.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-run.8.md │ │ │ ├── runc-spec.8.md │ │ │ ├── runc-start.8.md │ │ │ ├── runc-state.8.md │ │ │ ├── runc-update.8.md │ │ │ └── runc.8.md │ │ ├── notify_socket.go │ │ ├── pause.go │ │ ├── ps.go │ │ ├── restore.go │ │ ├── rlimit_linux.go │ │ ├── run.go │ │ ├── script │ │ │ ├── .validate │ │ │ ├── check-config.sh │ │ │ ├── tmpmount │ │ │ ├── validate-gofmt │ │ │ └── validate-shfmt │ │ ├── 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 │ │ │ │ ├── mask.bats │ │ │ │ ├── pause.bats │ │ │ │ ├── ps.bats │ │ │ │ ├── root.bats │ │ │ │ ├── spec.bats │ │ │ │ ├── start.bats │ │ │ │ ├── start_detached.bats │ │ │ │ ├── start_hello.bats │ │ │ │ ├── state.bats │ │ │ │ ├── testdata │ │ │ │ └── hello-world.tar │ │ │ │ ├── tty.bats │ │ │ │ ├── update.bats │ │ │ │ └── version.bats │ │ ├── tty.go │ │ ├── update.go │ │ ├── utils.go │ │ ├── utils_linux.go │ │ ├── vendor.conf │ │ └── vendor │ │ │ └── github.com │ │ │ ├── Sirupsen │ │ │ └── logrus │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── entry.go │ │ │ │ ├── exported.go │ │ │ │ ├── formatter.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 │ │ │ ├── coreos │ │ │ ├── go-systemd │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── activation │ │ │ │ │ ├── files.go │ │ │ │ │ ├── listeners.go │ │ │ │ │ └── packetconns.go │ │ │ │ ├── dbus │ │ │ │ │ ├── dbus.go │ │ │ │ │ ├── methods.go │ │ │ │ │ ├── properties.go │ │ │ │ │ ├── set.go │ │ │ │ │ ├── subscription.go │ │ │ │ │ └── subscription_set.go │ │ │ │ └── util │ │ │ │ │ ├── util.go │ │ │ │ │ ├── util_cgo.go │ │ │ │ │ └── util_stub.go │ │ │ └── pkg │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ ├── README.md │ │ │ │ └── dlopen │ │ │ │ ├── dlopen.go │ │ │ │ └── dlopen_example.go │ │ │ ├── docker │ │ │ ├── docker │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ ├── README.md │ │ │ │ └── pkg │ │ │ │ │ ├── README.md │ │ │ │ │ ├── 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 │ │ │ └── go-units │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── duration.go │ │ │ │ └── size.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_unix.go │ │ │ │ ├── transport_unixcred_dragonfly.go │ │ │ │ ├── transport_unixcred_linux.go │ │ │ │ ├── variant.go │ │ │ │ ├── variant_lexer.go │ │ │ │ └── variant_parser.go │ │ │ ├── golang │ │ │ └── protobuf │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ └── 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 │ │ │ ├── mrunalp │ │ │ └── fileutils │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── fileutils.go │ │ │ │ └── idtools.go │ │ │ ├── opencontainers │ │ │ └── runtime-spec │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── specs-go │ │ │ │ ├── config.go │ │ │ │ ├── state.go │ │ │ │ └── version.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 │ │ │ │ └── syscall_linux.go │ │ │ ├── urfave │ │ │ └── cli │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── app.go │ │ │ │ ├── category.go │ │ │ │ ├── cli.go │ │ │ │ ├── command.go │ │ │ │ ├── context.go │ │ │ │ ├── errors.go │ │ │ │ ├── flag.go │ │ │ │ ├── flag_generated.go │ │ │ │ ├── funcs.go │ │ │ │ └── help.go │ │ │ └── vishvananda │ │ │ └── netlink │ │ │ ├── LICENSE │ │ │ ├── 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 │ └── runtime-spec │ │ ├── .gitignore │ │ ├── .pullapprove.yml │ │ ├── .tool │ │ └── version-doc.go │ │ ├── .travis.yml │ │ ├── ChangeLog │ │ ├── GOVERNANCE.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── RELEASES.md │ │ ├── ROADMAP.md │ │ ├── bundle.md │ │ ├── config-linux.md │ │ ├── config-solaris.md │ │ ├── config-windows.md │ │ ├── config.md │ │ ├── glossary.md │ │ ├── implementations.md │ │ ├── principles.md │ │ ├── project.md │ │ ├── runtime-linux.md │ │ ├── runtime.md │ │ ├── schema │ │ ├── Makefile │ │ ├── README.md │ │ ├── config-linux.json │ │ ├── config-schema.json │ │ ├── config-solaris.json │ │ ├── config-windows.json │ │ ├── defs-linux.json │ │ ├── defs-windows.json │ │ ├── defs.json │ │ ├── state-schema.json │ │ └── validate.go │ │ ├── spec.md │ │ ├── specs-go │ │ ├── config.go │ │ ├── state.go │ │ └── version.go │ │ └── style.md ├── 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 │ │ │ │ ├── text │ │ │ │ └── text.gz │ │ │ ├── text_create.go │ │ │ ├── text_create_test.go │ │ │ ├── text_parse.go │ │ │ └── text_parse_test.go │ │ ├── internal │ │ │ └── bitbucket.org │ │ │ │ └── ww │ │ │ │ └── goautoneg │ │ │ │ ├── README.txt │ │ │ │ ├── autoneg.go │ │ │ │ └── autoneg_test.go │ │ ├── log │ │ │ ├── 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 └── spf13 │ └── pflag │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── bool.go │ ├── bool_test.go │ ├── duration.go │ ├── example_test.go │ ├── export_test.go │ ├── flag.go │ ├── flag_test.go │ ├── float32.go │ ├── float64.go │ ├── int.go │ ├── int32.go │ ├── int64.go │ ├── int8.go │ ├── ip.go │ ├── ipmask.go │ ├── string.go │ ├── uint.go │ ├── uint16.go │ ├── uint32.go │ ├── uint64.go │ └── uint8.go ├── golang.org └── x │ ├── crypto │ ├── .gitattributes │ ├── .gitignore │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── README │ ├── acme │ │ └── internal │ │ │ └── acme │ │ │ ├── acme.go │ │ │ ├── acme_test.go │ │ │ ├── jws.go │ │ │ ├── jws_test.go │ │ │ └── types.go │ ├── bcrypt │ │ ├── base64.go │ │ ├── bcrypt.go │ │ └── bcrypt_test.go │ ├── blowfish │ │ ├── block.go │ │ ├── blowfish_test.go │ │ ├── cipher.go │ │ └── const.go │ ├── bn256 │ │ ├── bn256.go │ │ ├── bn256_test.go │ │ ├── constants.go │ │ ├── curve.go │ │ ├── example_test.go │ │ ├── gfp12.go │ │ ├── gfp2.go │ │ ├── gfp6.go │ │ ├── optate.go │ │ └── twist.go │ ├── cast5 │ │ ├── cast5.go │ │ └── cast5_test.go │ ├── codereview.cfg │ ├── curve25519 │ │ ├── const_amd64.s │ │ ├── cswap_amd64.s │ │ ├── curve25519.go │ │ ├── curve25519_test.go │ │ ├── doc.go │ │ ├── freeze_amd64.s │ │ ├── ladderstep_amd64.s │ │ ├── mont25519_amd64.go │ │ ├── mul_amd64.s │ │ └── square_amd64.s │ ├── ed25519 │ │ ├── ed25519.go │ │ ├── ed25519_test.go │ │ ├── internal │ │ │ └── edwards25519 │ │ │ │ ├── const.go │ │ │ │ └── edwards25519.go │ │ └── testdata │ │ │ └── sign.input.gz │ ├── hkdf │ │ ├── example_test.go │ │ ├── hkdf.go │ │ └── hkdf_test.go │ ├── md4 │ │ ├── md4.go │ │ ├── md4_test.go │ │ └── md4block.go │ ├── nacl │ │ ├── box │ │ │ ├── box.go │ │ │ └── box_test.go │ │ └── secretbox │ │ │ ├── secretbox.go │ │ │ └── secretbox_test.go │ ├── ocsp │ │ ├── ocsp.go │ │ └── ocsp_test.go │ ├── openpgp │ │ ├── armor │ │ │ ├── armor.go │ │ │ ├── armor_test.go │ │ │ └── encode.go │ │ ├── canonical_text.go │ │ ├── canonical_text_test.go │ │ ├── clearsign │ │ │ ├── clearsign.go │ │ │ └── clearsign_test.go │ │ ├── elgamal │ │ │ ├── elgamal.go │ │ │ └── elgamal_test.go │ │ ├── errors │ │ │ └── errors.go │ │ ├── keys.go │ │ ├── keys_test.go │ │ ├── packet │ │ │ ├── compressed.go │ │ │ ├── compressed_test.go │ │ │ ├── config.go │ │ │ ├── encrypted_key.go │ │ │ ├── encrypted_key_test.go │ │ │ ├── literal.go │ │ │ ├── ocfb.go │ │ │ ├── ocfb_test.go │ │ │ ├── one_pass_signature.go │ │ │ ├── opaque.go │ │ │ ├── opaque_test.go │ │ │ ├── packet.go │ │ │ ├── packet_test.go │ │ │ ├── private_key.go │ │ │ ├── private_key_test.go │ │ │ ├── public_key.go │ │ │ ├── public_key_test.go │ │ │ ├── public_key_v3.go │ │ │ ├── public_key_v3_test.go │ │ │ ├── reader.go │ │ │ ├── signature.go │ │ │ ├── signature_test.go │ │ │ ├── signature_v3.go │ │ │ ├── signature_v3_test.go │ │ │ ├── symmetric_key_encrypted.go │ │ │ ├── symmetric_key_encrypted_test.go │ │ │ ├── symmetrically_encrypted.go │ │ │ ├── symmetrically_encrypted_test.go │ │ │ ├── userattribute.go │ │ │ ├── userattribute_test.go │ │ │ ├── userid.go │ │ │ └── userid_test.go │ │ ├── read.go │ │ ├── read_test.go │ │ ├── s2k │ │ │ ├── s2k.go │ │ │ └── s2k_test.go │ │ ├── write.go │ │ └── write_test.go │ ├── otr │ │ ├── libotr_test_helper.c │ │ ├── otr.go │ │ ├── otr_test.go │ │ └── smp.go │ ├── pbkdf2 │ │ ├── pbkdf2.go │ │ └── pbkdf2_test.go │ ├── pkcs12 │ │ ├── bmp-string.go │ │ ├── bmp-string_test.go │ │ ├── crypto.go │ │ ├── crypto_test.go │ │ ├── errors.go │ │ ├── internal │ │ │ └── rc2 │ │ │ │ ├── bench_test.go │ │ │ │ ├── rc2.go │ │ │ │ └── rc2_test.go │ │ ├── mac.go │ │ ├── mac_test.go │ │ ├── pbkdf.go │ │ ├── pbkdf_test.go │ │ ├── pkcs12.go │ │ ├── pkcs12_test.go │ │ └── safebags.go │ ├── poly1305 │ │ ├── const_amd64.s │ │ ├── poly1305.go │ │ ├── poly1305_amd64.s │ │ ├── poly1305_arm.s │ │ ├── poly1305_test.go │ │ ├── sum_amd64.go │ │ ├── sum_arm.go │ │ └── sum_ref.go │ ├── ripemd160 │ │ ├── ripemd160.go │ │ ├── ripemd160_test.go │ │ └── ripemd160block.go │ ├── salsa20 │ │ ├── salsa │ │ │ ├── hsalsa20.go │ │ │ ├── salsa2020_amd64.s │ │ │ ├── salsa208.go │ │ │ ├── salsa20_amd64.go │ │ │ ├── salsa20_ref.go │ │ │ └── salsa_test.go │ │ ├── salsa20.go │ │ └── salsa20_test.go │ ├── scrypt │ │ ├── scrypt.go │ │ └── scrypt_test.go │ ├── sha3 │ │ ├── doc.go │ │ ├── hashes.go │ │ ├── keccakf.go │ │ ├── register.go │ │ ├── sha3.go │ │ ├── sha3_test.go │ │ ├── shake.go │ │ ├── testdata │ │ │ └── keccakKats.json.deflate │ │ ├── xor.go │ │ ├── xor_generic.go │ │ └── xor_unaligned.go │ ├── ssh │ │ ├── agent │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── example_test.go │ │ │ ├── forward.go │ │ │ ├── keyring.go │ │ │ ├── keyring_test.go │ │ │ ├── server.go │ │ │ ├── server_test.go │ │ │ └── testdata_test.go │ │ ├── benchmark_test.go │ │ ├── buffer.go │ │ ├── buffer_test.go │ │ ├── certs.go │ │ ├── certs_test.go │ │ ├── channel.go │ │ ├── cipher.go │ │ ├── cipher_test.go │ │ ├── client.go │ │ ├── client_auth.go │ │ ├── client_auth_test.go │ │ ├── client_test.go │ │ ├── common.go │ │ ├── connection.go │ │ ├── doc.go │ │ ├── example_test.go │ │ ├── handshake.go │ │ ├── handshake_test.go │ │ ├── kex.go │ │ ├── kex_test.go │ │ ├── keys.go │ │ ├── keys_test.go │ │ ├── mac.go │ │ ├── mempipe_test.go │ │ ├── messages.go │ │ ├── messages_test.go │ │ ├── mux.go │ │ ├── mux_test.go │ │ ├── server.go │ │ ├── session.go │ │ ├── session_test.go │ │ ├── tcpip.go │ │ ├── tcpip_test.go │ │ ├── terminal │ │ │ ├── terminal.go │ │ │ ├── terminal_test.go │ │ │ ├── util.go │ │ │ ├── util_bsd.go │ │ │ ├── util_linux.go │ │ │ ├── util_plan9.go │ │ │ └── util_windows.go │ │ ├── test │ │ │ ├── agent_unix_test.go │ │ │ ├── cert_test.go │ │ │ ├── doc.go │ │ │ ├── forward_unix_test.go │ │ │ ├── session_test.go │ │ │ ├── tcpip_test.go │ │ │ ├── test_unix_test.go │ │ │ └── testdata_test.go │ │ ├── testdata │ │ │ ├── doc.go │ │ │ └── keys.go │ │ ├── testdata_test.go │ │ ├── transport.go │ │ └── transport_test.go │ ├── tea │ │ ├── cipher.go │ │ └── tea_test.go │ ├── twofish │ │ ├── twofish.go │ │ └── twofish_test.go │ ├── xtea │ │ ├── block.go │ │ ├── cipher.go │ │ └── xtea_test.go │ └── xts │ │ ├── xts.go │ │ └── xts_test.go │ ├── 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 └── gopkg.in └── yaml.v2 ├── .travis.yml ├── LICENSE ├── LICENSE.libyaml ├── README.md ├── apic.go ├── decode.go ├── decode_test.go ├── emitterc.go ├── encode.go ├── encode_test.go ├── parserc.go ├── readerc.go ├── resolve.go ├── scannerc.go ├── sorter.go ├── suite_test.go ├── writerc.go ├── yaml.go ├── yamlh.go └── yamlprivateh.go /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/semgrep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/.github/workflows/semgrep.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.0.2 2 | -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/client.go -------------------------------------------------------------------------------- /client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/client_test.go -------------------------------------------------------------------------------- /client_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/client_v1.go -------------------------------------------------------------------------------- /client_v2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/client_v2.go -------------------------------------------------------------------------------- /cmd/pal/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/cmd/pal/doc.go -------------------------------------------------------------------------------- /cmd/pal/pal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/cmd/pal/pal.go -------------------------------------------------------------------------------- /cmd/pald/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/cmd/pald/doc.go -------------------------------------------------------------------------------- /cmd/pald/pald.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/cmd/pald/pald.go -------------------------------------------------------------------------------- /cmd/palpgpenc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/cmd/palpgpenc/doc.go -------------------------------------------------------------------------------- /cmd/palpgpenc/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/cmd/palpgpenc/main.go -------------------------------------------------------------------------------- /decrypter/decrypter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/decrypter/decrypter.go -------------------------------------------------------------------------------- /decrypter/decrypter_pgp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/decrypter/decrypter_pgp.go -------------------------------------------------------------------------------- /decrypter/decrypter_pgp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/decrypter/decrypter_pgp_test.go -------------------------------------------------------------------------------- /decrypter/decrypter_ro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/decrypter/decrypter_ro.go -------------------------------------------------------------------------------- /decrypter/decrypter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/decrypter/decrypter_test.go -------------------------------------------------------------------------------- /demo/0-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/demo/0-setup.sh -------------------------------------------------------------------------------- /demo/1-start-ro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/demo/1-start-ro.sh -------------------------------------------------------------------------------- /demo/2-encrypt-secret.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/demo/2-encrypt-secret.sh -------------------------------------------------------------------------------- /demo/3-start-pald.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/demo/3-start-pald.sh -------------------------------------------------------------------------------- /demo/4-delegate-authorization.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/demo/4-delegate-authorization.sh -------------------------------------------------------------------------------- /demo/5-run-pal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/demo/5-run-pal.sh -------------------------------------------------------------------------------- /demo/6-query-demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/demo/6-query-demo.sh -------------------------------------------------------------------------------- /demo/7-cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/demo/7-cleanup.sh -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/demo/README.md -------------------------------------------------------------------------------- /demo/certs/ca-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/demo/certs/ca-key.pem -------------------------------------------------------------------------------- /demo/certs/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/demo/certs/ca.pem -------------------------------------------------------------------------------- /demo/certs/client-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/demo/certs/client-key.pem -------------------------------------------------------------------------------- /demo/certs/client.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/demo/certs/client.pem -------------------------------------------------------------------------------- /demo/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/demo/config.yaml -------------------------------------------------------------------------------- /demo/demo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/demo/demo.go -------------------------------------------------------------------------------- /glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/glide.lock -------------------------------------------------------------------------------- /glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/glide.yaml -------------------------------------------------------------------------------- /identity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/identity.go -------------------------------------------------------------------------------- /integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/integration_test.go -------------------------------------------------------------------------------- /integration_v1_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/integration_v1_test.go -------------------------------------------------------------------------------- /integration_v2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/integration_v2_test.go -------------------------------------------------------------------------------- /log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/log/log.go -------------------------------------------------------------------------------- /messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/messages.go -------------------------------------------------------------------------------- /server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/server.go -------------------------------------------------------------------------------- /server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/server_test.go -------------------------------------------------------------------------------- /test/Dockerfile.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/test/Dockerfile.pal -------------------------------------------------------------------------------- /test/Dockerfile.pald: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/test/Dockerfile.pald -------------------------------------------------------------------------------- /test/Dockerfile.redoctober: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/test/Dockerfile.redoctober -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/test/README.md -------------------------------------------------------------------------------- /test/certs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/test/certs/README.md -------------------------------------------------------------------------------- /test/certs/ca-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/test/certs/ca-key.pem -------------------------------------------------------------------------------- /test/certs/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/test/certs/ca.pem -------------------------------------------------------------------------------- /test/certs/ca_csr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/test/certs/ca_csr.json -------------------------------------------------------------------------------- /test/certs/ca_signing_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/test/certs/ca_signing_config.json -------------------------------------------------------------------------------- /test/certs/cert_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/test/certs/cert_gen.sh -------------------------------------------------------------------------------- /test/certs/redoctober-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/test/certs/redoctober-key.pem -------------------------------------------------------------------------------- /test/certs/redoctober.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/test/certs/redoctober.pem -------------------------------------------------------------------------------- /test/certs/redoctober_csr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/test/certs/redoctober_csr.json -------------------------------------------------------------------------------- /test/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/test/config.yaml -------------------------------------------------------------------------------- /test/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/test/docker-compose.yaml -------------------------------------------------------------------------------- /test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/test/test.sh -------------------------------------------------------------------------------- /test/verify-plaintext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/test/verify-plaintext.sh -------------------------------------------------------------------------------- /testdata/pubring.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/testdata/pubring.gpg -------------------------------------------------------------------------------- /testdata/secring.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/testdata/secring.gpg -------------------------------------------------------------------------------- /trustedlabels/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/trustedlabels/labels.go -------------------------------------------------------------------------------- /trustedlabels/labels_docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/trustedlabels/labels_docker.go -------------------------------------------------------------------------------- /util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/util.go -------------------------------------------------------------------------------- /util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/util_test.go -------------------------------------------------------------------------------- /vendor/github.com/Azure/go-ansiterm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/Azure/go-ansiterm/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/Microsoft/go-winio/LICENSE -------------------------------------------------------------------------------- /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/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/Microsoft/go-winio/file.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/Microsoft/go-winio/pipe.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/sd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/Microsoft/go-winio/sd.go -------------------------------------------------------------------------------- /vendor/github.com/Nvveen/Gotty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/Nvveen/Gotty/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Nvveen/Gotty/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/Nvveen/Gotty/README -------------------------------------------------------------------------------- /vendor/github.com/Nvveen/Gotty/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/Nvveen/Gotty/TODO -------------------------------------------------------------------------------- /vendor/github.com/Nvveen/Gotty/attributes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/Nvveen/Gotty/attributes.go -------------------------------------------------------------------------------- /vendor/github.com/Nvveen/Gotty/gotty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/Nvveen/Gotty/gotty.go -------------------------------------------------------------------------------- /vendor/github.com/Nvveen/Gotty/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/Nvveen/Gotty/parser.go -------------------------------------------------------------------------------- /vendor/github.com/Nvveen/Gotty/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/Nvveen/Gotty/types.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/Sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/Sirupsen/logrus/README.md -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/Sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/Sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/Sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/Sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/Sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/Sirupsen/logrus/writer.go -------------------------------------------------------------------------------- /vendor/github.com/agl/ed25519/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/agl/ed25519/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/agl/ed25519/ed25519.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/agl/ed25519/ed25519.go -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.prof 3 | -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/beorn7/perks/README.md -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/topk/topk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/beorn7/perks/topk/topk.go -------------------------------------------------------------------------------- /vendor/github.com/certifi/gocertifi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/certifi/gocertifi/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/certifi/gocertifi/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/certifi/gocertifi/tasks.py -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/redoctober/.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | .gitignore 3 | .travis.yml 4 | -------------------------------------------------------------------------------- /vendor/github.com/cloudflare/redoctober/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | pkg/ 3 | src/code.google.com/ 4 | *~ 5 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/coreos/go-systemd/DCO -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/coreos/go-systemd/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/coreos/go-systemd/test -------------------------------------------------------------------------------- /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/cloudflare/pal/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/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/cloudflare/pal/HEAD/vendor/github.com/docker/docker/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/docker/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/docker/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/docker/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/docker/Dockerfile -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/docker/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/docker/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/docker/Makefile -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/docker/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/docker/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/docker/ROADMAP.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/VENDORING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/docker/VENDORING.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/VERSION: -------------------------------------------------------------------------------- 1 | 17.05.0-ce-rc3 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/api/names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/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/cloudflare/pal/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/secret/testdata/secret-create-with-name.golden: -------------------------------------------------------------------------------- 1 | secret_foo_bar 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/cli/command/secret/testdata/secret-inspect-with-format.simple-template.golden: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/cli/command/secret/testdata/secret-list-with-quiet-option.golden: -------------------------------------------------------------------------------- 1 | ID-foo 2 | ID-bar 3 | -------------------------------------------------------------------------------- /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/cloudflare/pal/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/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/hack/dind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/docker/hack/dind -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/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/image/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/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/cloudflare/pal/HEAD/vendor/github.com/docker/docker/opts/env.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/opts/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/docker/opts/ip.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/opts/opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/docker/opts/opts.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/opts/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/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/cloudflare/pal/HEAD/vendor/github.com/docker/docker/poule.yml -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/project/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ../CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/vendor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/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/go-connections/sockets/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/cloudflare/pal/HEAD/vendor/github.com/docker/go-units/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/go-units/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/go-units/circle.yml -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/go-units/size.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/ulimit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/go-units/ulimit.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/go/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/docker/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/go/Makefile -------------------------------------------------------------------------------- /vendor/github.com/docker/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/go/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/go/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/go/circle.yml -------------------------------------------------------------------------------- /vendor/github.com/docker/libtrust/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/libtrust/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/libtrust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/libtrust/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/libtrust/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/libtrust/doc.go -------------------------------------------------------------------------------- /vendor/github.com/docker/libtrust/ec_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/libtrust/ec_key.go -------------------------------------------------------------------------------- /vendor/github.com/docker/libtrust/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/libtrust/filter.go -------------------------------------------------------------------------------- /vendor/github.com/docker/libtrust/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/libtrust/hash.go -------------------------------------------------------------------------------- /vendor/github.com/docker/libtrust/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/libtrust/key.go -------------------------------------------------------------------------------- /vendor/github.com/docker/libtrust/rsa_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/libtrust/rsa_key.go -------------------------------------------------------------------------------- /vendor/github.com/docker/libtrust/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/libtrust/util.go -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/notary/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/notary/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/notary/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/notary/Dockerfile -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/notary/Jenkinsfile -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/notary/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/notary/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/notary/Makefile -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/NOTARY_VERSION: -------------------------------------------------------------------------------- 1 | 0.5.0 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/notary/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/notary/ROADMAP.md -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/notary/circle.yml -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/notary/codecov.yml -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/notary/const.go -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/notary/hooks/build -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/hooks/push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/notary/hooks/push -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/migrations/server/mysql/0004_drop_timestamp_key.up.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS `timestamp_keys`; -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/notary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/notary/notary.go -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/tuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/notary/tuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/tuf/tuf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/docker/notary/tuf/tuf.go -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/BurntSushi/toml/session.vim: -------------------------------------------------------------------------------- 1 | au BufWritePost *.go silent!make tags > /dev/null 2>&1 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/Shopify/logrus-bugsnag/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.4 5 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/Sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/agtorre/gocolorize/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.test 3 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/agtorre/gocolorize/wercker.yml: -------------------------------------------------------------------------------- 1 | box: pjvds/golang 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/bugsnag/bugsnag-go/Makefile: -------------------------------------------------------------------------------- 1 | default: 2 | go test 3 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/bugsnag/bugsnag-go/examples/revelapp/.gitignore: -------------------------------------------------------------------------------- 1 | test-results/ 2 | tmp/ 3 | routes/ 4 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/cenkalti/backoff/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 1.3.3 3 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/getsentry/raven-go/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/hailocab/go-hostpool/.travis.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/jinzhu/now/Guardfile: -------------------------------------------------------------------------------- 1 | guard 'gotest' do 2 | watch(%r{\.go$}) 3 | end 4 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/kr/pretty/.gitignore: -------------------------------------------------------------------------------- 1 | [568].out 2 | _go* 3 | _test* 4 | _obj 5 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/kr/pty/.gitignore: -------------------------------------------------------------------------------- 1 | [568].out 2 | _go* 3 | _test* 4 | _obj 5 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/lib/pq/.gitignore: -------------------------------------------------------------------------------- 1 | .db 2 | *.test 3 | *~ 4 | *.swp 5 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/mattn/go-sqlite3/.gitignore: -------------------------------------------------------------------------------- 1 | *.db 2 | *.exe 3 | *.dll 4 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/miekg/pkcs11/.gitignore: -------------------------------------------------------------------------------- 1 | tags 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/miekg/pkcs11/softhsm.conf: -------------------------------------------------------------------------------- 1 | 0:hsm.db 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_0: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_0: -------------------------------------------------------------------------------- 1 | bla 3.14 -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_1: -------------------------------------------------------------------------------- 1 | metric{label="\t"} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_15: -------------------------------------------------------------------------------- 1 | 2 | # TYPE metric bla 3 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_16: -------------------------------------------------------------------------------- 1 | 2 | # TYPE met-ric 3 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_18: -------------------------------------------------------------------------------- 1 | {label="bla"} 3.14 2 -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_3: -------------------------------------------------------------------------------- 1 | metric{@="bla"} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_4: -------------------------------------------------------------------------------- 1 | metric{__name__="bla"} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_5: -------------------------------------------------------------------------------- 1 | metric{label+="bla"} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_6: -------------------------------------------------------------------------------- 1 | metric{label=bla} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_8: -------------------------------------------------------------------------------- 1 | metric{label="bla"+} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/common/expfmt/fuzz/corpus/minimal: -------------------------------------------------------------------------------- 1 | m{} 0 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/procfs/fixtures/26231/cmdline: -------------------------------------------------------------------------------- 1 | vimtest.go+10 -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/procfs/fixtures/26231/exe: -------------------------------------------------------------------------------- 1 | /usr/bin/vim -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/procfs/fixtures/26231/fd/0: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/abc -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/procfs/fixtures/26231/fd/1: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/def -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/procfs/fixtures/26231/fd/10: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/xyz -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/procfs/fixtures/26231/fd/2: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/ghi -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/procfs/fixtures/26231/fd/3: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/uvw -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/procfs/fixtures/26232/cmdline: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/procfs/fixtures/26232/fd/0: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/abc -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/procfs/fixtures/26232/fd/1: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/def -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/procfs/fixtures/26232/fd/2: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/ghi -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/procfs/fixtures/26232/fd/3: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/uvw -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/procfs/fixtures/26232/fd/4: -------------------------------------------------------------------------------- 1 | ../../symlinktargets/xyz -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/procfs/fixtures/self: -------------------------------------------------------------------------------- 1 | 26231 -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/procfs/fixtures/symlinktargets/abc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/procfs/fixtures/symlinktargets/def: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/procfs/fixtures/symlinktargets/ghi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/procfs/fixtures/symlinktargets/uvw: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/prometheus/procfs/fixtures/symlinktargets/xyz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/stvp/go-udp-testing/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/github.com/ugorji/go/codec/prebuild.go: -------------------------------------------------------------------------------- 1 | package codec 2 | 3 | //go:generate bash prebuild.sh 4 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/gopkg.in/check.v1/TODO: -------------------------------------------------------------------------------- 1 | - Assert(slice, Contains, item) 2 | - Parallel test support 3 | -------------------------------------------------------------------------------- /vendor/github.com/docker/notary/vendor/gopkg.in/fatih/pool.v2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 1.3 3 | -------------------------------------------------------------------------------- /vendor/github.com/getsentry/raven-go/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /vendor/github.com/getsentry/raven-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/getsentry/raven-go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/getsentry/raven-go/docs/_sentryext/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.pyo 3 | -------------------------------------------------------------------------------- /vendor/github.com/getsentry/raven-go/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/getsentry/raven-go/http.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/golang/protobuf/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/golang/protobuf/Makefile -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/golang/protobuf/README.md -------------------------------------------------------------------------------- /vendor/github.com/gorilla/context/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/gorilla/context/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gorilla/context/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/gorilla/context/README.md -------------------------------------------------------------------------------- /vendor/github.com/gorilla/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/gorilla/context/context.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/context/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/gorilla/context/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/gorilla/mux/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/gorilla/mux/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/gorilla/mux/README.md -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/gorilla/mux/bench_test.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/gorilla/mux/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/gorilla/mux/mux.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/mux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/gorilla/mux/mux_test.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/old_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/gorilla/mux/old_test.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/gorilla/mux/regexp.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/gorilla/mux/route.go -------------------------------------------------------------------------------- /vendor/github.com/joshlf/testutil/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/joshlf/testutil/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/joshlf/testutil/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/joshlf/testutil/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/joshlf/testutil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/joshlf/testutil/README.md -------------------------------------------------------------------------------- /vendor/github.com/matttproud/golang_protobuf_extensions/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/.gitignore: -------------------------------------------------------------------------------- 1 | tags 2 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/miekg/pkcs11/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/miekg/pkcs11/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/miekg/pkcs11/README.md -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/miekg/pkcs11/const.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/miekg/pkcs11/error.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/hsm.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/miekg/pkcs11/hsm.db -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/pkcs11.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/miekg/pkcs11/pkcs11.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/pkcs11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/miekg/pkcs11/pkcs11.h -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/pkcs11f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/miekg/pkcs11/pkcs11f.h -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/pkcs11t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/miekg/pkcs11/pkcs11t.h -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/softhsm.conf: -------------------------------------------------------------------------------- 1 | 0:hsm.db 2 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/miekg/pkcs11/types.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/.dockerignore -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/Dockerfile -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/Dockerfile.armhf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/Dockerfile.armhf -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/Dockerfile.s390x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/Dockerfile.s390x -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/Makefile -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/README.md -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/ROADMAP.md -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/VENDORING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/VENDORING.md -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/VERSION: -------------------------------------------------------------------------------- 1 | 17.05.0-ce-rc3 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/api/README.md -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/api/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/api/common.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/api/names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/api/names.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/api/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/api/swagger.yaml -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles-negative/env_no_value/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM busybox 2 | 3 | ENV PATH 4 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/builder/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/builder/git.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/cli/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/cli/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/cli/command/container/testdata/utf8.env: -------------------------------------------------------------------------------- 1 | FOO=BAR 2 | HELLO=您好 3 | BAR=FOO -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/cli/command/container/testdata/valid.env: -------------------------------------------------------------------------------- 1 | ENV1=value1 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/cli/command/container/testdata/valid.label: -------------------------------------------------------------------------------- 1 | LABEL1=value1 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/cli/command/secret/testdata/secret-create-with-name.golden: -------------------------------------------------------------------------------- 1 | secret_foo_bar 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/cli/command/secret/testdata/secret-inspect-with-format.simple-template.golden: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/cli/command/secret/testdata/secret-list-with-quiet-option.golden: -------------------------------------------------------------------------------- 1 | ID-foo 2 | ID-bar 3 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/cli/command/swarm/testdata/jointoken-manager-quiet.golden: -------------------------------------------------------------------------------- 1 | manager-join-token 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/cli/command/swarm/testdata/jointoken-worker-quiet.golden: -------------------------------------------------------------------------------- 1 | worker-join-token 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/cli/command/swarm/testdata/unlockkeys-unlock-key-quiet.golden: -------------------------------------------------------------------------------- 1 | unlock-key 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/cli/command/swarm/testdata/unlockkeys-unlock-key-rotate-quiet.golden: -------------------------------------------------------------------------------- 1 | unlock-key 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/cli/command/swarm/testdata/update-all-flags-quiet.golden: -------------------------------------------------------------------------------- 1 | Swarm updated. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/cli/command/volume/testdata/volume-inspect-with-format.json-template.golden: -------------------------------------------------------------------------------- 1 | {"foo":"bar"} 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/cli/command/volume/testdata/volume-inspect-with-format.simple-template.golden: -------------------------------------------------------------------------------- 1 | volume 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/cli/command/volume/testdata/volume-prune.empty.golden: -------------------------------------------------------------------------------- 1 | Total reclaimed space: 0B 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/cli/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/cli/error.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/cli/required.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/cli/required.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/client/README.md -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/client/client.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/client/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/client/errors.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/client/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/client/events.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/client/hijack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/client/hijack.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/client/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/client/info.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/client/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/client/login.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/client/ping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/client/ping.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/client/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/client/utils.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/container/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/container/env.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/contrib/completion/powershell/readme.txt: -------------------------------------------------------------------------------- 1 | See https://github.com/samneirinck/posh-docker -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/contrib/selinux-fedora-24/docker-engine-selinux/README.md: -------------------------------------------------------------------------------- 1 | SELinux policy for docker 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/README.md: -------------------------------------------------------------------------------- 1 | SELinux policy for docker 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/attach.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/attach.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/auth.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/cache.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/commit.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/create.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/daemon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/daemon.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/delete.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/errors.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/events.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/exec.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/export.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/graphdriver/btrfs/dummy_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux !cgo 2 | 3 | package btrfs 4 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/graphdriver/graphtest/graphtest_windows.go: -------------------------------------------------------------------------------- 1 | package graphtest 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/graphdriver/overlay/overlay_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package overlay 4 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/graphdriver/overlay2/overlay_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package overlay2 4 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/health.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/image.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/images.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/import.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/info.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/keys.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/kill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/kill.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/links.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/links.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/list.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/logger/gelf/gelf_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package gelf 4 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/logs.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/mounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/mounts.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/names.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/pause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/pause.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/prune.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/prune.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/reload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/reload.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/rename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/rename.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/resize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/resize.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/search.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/start.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/stats.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/stop.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/update.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/daemon/wait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/daemon/wait.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/docs/README.md -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/hack/dind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/hack/dind -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/hack/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/hack/install.sh -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/hack/make.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/hack/make.ps1 -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/hack/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/hack/make.sh -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/hack/make/.build-deb/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.bash-completion: -------------------------------------------------------------------------------- 1 | contrib/completion/bash/docker 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.docker.default: -------------------------------------------------------------------------------- 1 | ../../../contrib/init/sysvinit-debian/docker.default -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.docker.init: -------------------------------------------------------------------------------- 1 | ../../../contrib/init/sysvinit-debian/docker -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.docker.upstart: -------------------------------------------------------------------------------- 1 | ../../../contrib/init/upstart/docker.conf -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.manpages: -------------------------------------------------------------------------------- 1 | man/man*/* 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.udev: -------------------------------------------------------------------------------- 1 | ../../../contrib/udev/80-docker.rules -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/hack/make/.build-deb/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/hack/make/.resources-windows/docker.rc: -------------------------------------------------------------------------------- 1 | #define DOCKER_NAME "Docker Client" 2 | 3 | #include "common.rc" 4 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/hack/make/binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/hack/make/binary -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/hack/make/cover: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/hack/make/cover -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/hack/make/cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/hack/make/cross -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/hack/make/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/hack/make/run -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/hack/make/tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/hack/make/tgz -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/hack/make/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/hack/make/ubuntu -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/hack/make/win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/hack/make/win -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/hack/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/hack/release.sh -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/hack/vendor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/hack/vendor.sh -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/hooks/post_build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/hooks/post_build -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/image/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/image/fs.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/image/fs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/image/fs_test.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/image/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/image/image.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/image/rootfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/image/rootfs.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/image/spec/v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/image/spec/v1.md -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/image/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/image/store.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/integration-cli/fixtures/secrets/default: -------------------------------------------------------------------------------- 1 | this is the secret 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/layer/empty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/layer/empty.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/layer/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/layer/layer.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/man/Dockerfile -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/man/README.md -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/docker.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/man/docker.1.md -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/dockerd.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/man/dockerd.8.md -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/man/generate.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/man/generate.sh -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/man/glide.lock -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/man/glide.yaml -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/attach.md: -------------------------------------------------------------------------------- 1 | 2 | Alias for `docker container attach`. 3 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/container/restart.md: -------------------------------------------------------------------------------- 1 | Restart each container listed. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/container/run.md: -------------------------------------------------------------------------------- 1 | Alias for `docker run`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/container/start.md: -------------------------------------------------------------------------------- 1 | Start one or more containers. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/cp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/man/src/cp.md -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/diff.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container diff`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/events.md: -------------------------------------------------------------------------------- 1 | Alias for `docker system events`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/exec.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container exec`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/export.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container export`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/history.md: -------------------------------------------------------------------------------- 1 | Alias for `docker image history`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/image/build.md: -------------------------------------------------------------------------------- 1 | Alias for `docker build`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/images.md: -------------------------------------------------------------------------------- 1 | Alias for `docker image ls`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/import.md: -------------------------------------------------------------------------------- 1 | Alias for `docker image import`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/info.md: -------------------------------------------------------------------------------- 1 | Alias for `docker system info`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/kill.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container kill`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/load.md: -------------------------------------------------------------------------------- 1 | Alias for `docker image load`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/man/src/login.md -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/logs.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container logs`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/pause.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container pause`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/port.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container port`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/ps.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container ls`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/pull.md: -------------------------------------------------------------------------------- 1 | Alias for `docker image pull`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/push.md: -------------------------------------------------------------------------------- 1 | Alias for `docker image push`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/rename.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container rename`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/restart.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container restart`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/rm.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container rm`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/rmi.md: -------------------------------------------------------------------------------- 1 | Alias for `docker image rm`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/save.md: -------------------------------------------------------------------------------- 1 | Alias for `docker image save`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/start.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container start`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/stats.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container stats`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/stop.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container stop`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/tag.md: -------------------------------------------------------------------------------- 1 | Alias for `docker image tag`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/top.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container top`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/unpause.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container unpause`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/update.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container update`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/man/src/wait.md: -------------------------------------------------------------------------------- 1 | Alias for `docker container wait`. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/opts/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/opts/env.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/opts/env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/opts/env_test.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/opts/hosts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/opts/hosts.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/opts/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/opts/ip.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/opts/ip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/opts/ip_test.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/opts/mount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/opts/mount.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/opts/opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/opts/opts.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/opts/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/opts/port.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/opts/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/opts/runtime.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/opts/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/opts/secret.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/opts/ulimit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/opts/ulimit.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/pkg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/pkg/README.md -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/pkg/chrootarchive/init_windows.go: -------------------------------------------------------------------------------- 1 | package chrootarchive 2 | 3 | func init() { 4 | } 5 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/pkg/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/pkg/term/term.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/pkg/testutil/pkg.go: -------------------------------------------------------------------------------- 1 | package testutil 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/plugin/defs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/plugin/defs.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/plugin/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/plugin/store.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/poule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/poule.yml -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/project/ARM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/project/ARM.md -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/project/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ../CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/project/TOOLS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/project/TOOLS.md -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/registry/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/registry/auth.go -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/vendor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/vendor.conf -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/vendor/github.com/docker/distribution/manifest/doc.go: -------------------------------------------------------------------------------- 1 | package manifest 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/vendor/github.com/docker/go-connections/sockets/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/vendor/github.com/docker/swarmkit/manager/doc.go: -------------------------------------------------------------------------------- 1 | package manager 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/vendor/github.com/ugorji/go/codec/prebuild.go: -------------------------------------------------------------------------------- 1 | package codec 2 | 3 | //go:generate bash prebuild.sh 4 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/vendor/golang.org/x/time/README: -------------------------------------------------------------------------------- 1 | This repository provides supplementary Go time packages. 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/volume/volume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/moby/moby/volume/volume.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/opencontainers/runc/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0-rc3 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/cloudflare/pal/HEAD/vendor/github.com/opencontainers/runc/ps.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/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/cloudflare/pal/HEAD/vendor/github.com/opencontainers/runc/tty.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runtime-spec/.gitignore: -------------------------------------------------------------------------------- 1 | output 2 | schema/validate 3 | version.md 4 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/pkg/errors/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/pkg/errors/bench_test.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/pkg/errors/errors_test.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/pkg/errors/example_test.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/pkg/errors/format_test.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/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/cloudflare/pal/HEAD/vendor/github.com/prometheus/common/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/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/cloudflare/pal/HEAD/vendor/github.com/prometheus/procfs/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/prometheus/procfs/Makefile -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/prometheus/procfs/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/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/cloudflare/pal/HEAD/vendor/github.com/prometheus/procfs/fs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/ipvs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/prometheus/procfs/ipvs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/prometheus/procfs/proc.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/prometheus/procfs/stat.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/spf13/pflag/bool_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/spf13/pflag/export_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/spf13/pflag/flag_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/README -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bcrypt/base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/bcrypt/base64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bcrypt/bcrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/bcrypt/bcrypt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/blowfish/block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/blowfish/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/bn256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/bn256/bn256.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/curve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/bn256/curve.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/bn256/gfp12.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/bn256/gfp2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/bn256/gfp6.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/optate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/bn256/optate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/twist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/bn256/twist.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cast5/cast5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/cast5/cast5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/curve25519/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/curve25519/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/hkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/hkdf/hkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/hkdf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/hkdf/hkdf_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/md4/md4.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/md4/md4_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/md4/md4block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/nacl/box/box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/nacl/box/box.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ocsp/ocsp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/ocsp/ocsp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ocsp/ocsp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/ocsp/ocsp_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/otr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/otr/otr.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/smp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/otr/smp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/pkcs12/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/sha3/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/hashes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/sha3/hashes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/sha3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/sha3/sha3.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/shake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/sha3/shake.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/xor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/sha3/xor.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/ssh/buffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/ssh/certs.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/ssh/channel.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/ssh/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/ssh/client.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/ssh/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/ssh/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/ssh/session.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/tcpip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/ssh/tcpip.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/tea/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/tea/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xtea/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/xtea/block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xtea/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/xtea/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xts/xts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/crypto/xts/xts.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/dict/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/dict/dict.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/atom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/html/atom/atom.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/html/atom/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/html/node_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/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/cloudflare/pal/HEAD/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go15.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/http2/go15.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2i/h2i.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/http2/h2i/h2i.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go15.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/http2/not_go15.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/http2/not_go16.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/icmp/echo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/icmp/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/icmp/extension.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/icmp/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/icmp/interface.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/icmp/ipv4.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/icmp/ipv4_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/icmp/ipv6.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/icmp/message.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/mpls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/icmp/mpls.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/multipart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/icmp/multipart.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/paramprob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/icmp/paramprob.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ping_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/icmp/ping_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/idna/idna_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv4/control.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv4/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv4/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv4/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv4/header.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv4/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv4/iana.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv4/icmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv4/icmp_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv4/icmp_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv4/packet.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv4/payload.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv4/sockopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv4/sys_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv4/sys_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv4/sys_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv6/control.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv6/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv6/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv6/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv6/header.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv6/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv6/iana.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv6/icmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv6/icmp_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv6/icmp_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv6/icmp_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv6/payload.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv6/sockopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv6/sys_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv6/sys_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/ipv6/sys_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/netutil/listen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/netutil/listen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/per_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/proxy/per_host.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/webdav/file.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/webdav/if.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/if_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/webdav/if_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/webdav/lock.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/webdav/prop.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/webdav.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/webdav/webdav.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/webdav/xml.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/websocket/hybi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/websocket/hybi.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/xsrftoken/xsrf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/net/xsrftoken/xsrf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/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/cloudflare/pal/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/plan9/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/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/cloudflare/pal/HEAD/vendor/golang.org/x/sys/unix/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/unix/env_unset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/unix/flock.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/unix/mksyscall.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/windows/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/gopkg.in/yaml.v2/decode_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/gopkg.in/yaml.v2/encode_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/gopkg.in/yaml.v2/suite_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/pal/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go --------------------------------------------------------------------------------