├── .dockerignore ├── .gitignore ├── CHANGELOG.md ├── Dockerfile ├── Dockerfile.crosscompile ├── Dockerfile.tester ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── README.md ├── api └── server.go ├── codeship-services.yml ├── codeship-steps.yml ├── compile.sh ├── configuration ├── config.go └── config_test.go ├── docker-compose.yml ├── examples ├── after_build_command │ ├── Dockerfile │ └── build.yml ├── build.yml ├── buildarguments │ ├── Dockerfile │ ├── README.md │ ├── build-contained.yml │ └── build.yml ├── context │ ├── build.yml │ └── sub │ │ ├── Dockerfile │ │ └── entrypoint.sh ├── env │ ├── Dockerfile │ └── build.yml ├── multistage │ ├── Dockerfile │ └── build.yml ├── network │ ├── Dockerfile │ ├── README.md │ └── build.yml ├── no_cache │ ├── Dockerfile │ └── build.yml ├── security │ ├── Dockerfile │ ├── README.md │ └── build.yml ├── security_env │ ├── Dockerfile │ ├── README.md │ └── build.yml ├── testing │ ├── Dockerfile │ └── build.yml ├── uid │ ├── Dockerfile │ ├── Dockerfile.production │ └── build.yml └── uid_nested │ ├── Dockerfile.base │ ├── Dockerfile.compile │ ├── Dockerfile.runtime │ └── build.yml ├── habitus_install.sh ├── habitus_suite_test.go ├── main.go ├── secrets ├── env_provider.go ├── file_provider.go └── secret_provider.go ├── squash ├── export.go ├── image.go ├── squasher.go └── utils.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 │ │ ├── ea.go │ │ ├── ea_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 │ │ ├── vhd │ │ ├── mksyscall_windows.go │ │ ├── vhd.go │ │ └── zvhd.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 ├── ant0ine │ └── go-json-rest │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── rest │ │ ├── access_log_apache.go │ │ ├── access_log_apache_test.go │ │ ├── access_log_json.go │ │ ├── access_log_json_test.go │ │ ├── api.go │ │ ├── api_test.go │ │ ├── auth_basic.go │ │ ├── auth_basic_test.go │ │ ├── content_type_checker.go │ │ ├── content_type_checker_test.go │ │ ├── cors.go │ │ ├── cors_test.go │ │ ├── doc.go │ │ ├── gzip.go │ │ ├── gzip_test.go │ │ ├── if.go │ │ ├── if_test.go │ │ ├── json_indent.go │ │ ├── json_indent_test.go │ │ ├── jsonp.go │ │ ├── jsonp_test.go │ │ ├── middleware.go │ │ ├── middleware_test.go │ │ ├── powered_by.go │ │ ├── powered_by_test.go │ │ ├── recorder.go │ │ ├── recorder_test.go │ │ ├── recover.go │ │ ├── recover_test.go │ │ ├── request.go │ │ ├── request_test.go │ │ ├── response.go │ │ ├── response_test.go │ │ ├── route.go │ │ ├── route_test.go │ │ ├── router.go │ │ ├── router_benchmark_test.go │ │ ├── router_test.go │ │ ├── status.go │ │ ├── status_test.go │ │ ├── test │ │ ├── doc.go │ │ └── util.go │ │ ├── timer.go │ │ ├── timer_test.go │ │ └── trie │ │ ├── impl.go │ │ └── impl_test.go ├── certifi │ └── gocertifi │ │ ├── LICENSE │ │ ├── README.md │ │ ├── certifi.go │ │ ├── certifi_test.go │ │ └── tasks.py ├── containerd │ └── continuity │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── cmd │ │ └── continuity │ │ │ └── main.go │ │ ├── commands │ │ ├── apply.go │ │ ├── build.go │ │ ├── dump.go │ │ ├── ls.go │ │ ├── main.go │ │ ├── mount.go │ │ ├── mount_unsupported.go │ │ ├── stats.go │ │ └── verify.go │ │ ├── context.go │ │ ├── continuityfs │ │ ├── fuse.go │ │ └── provider.go │ │ ├── devices │ │ ├── devices.go │ │ ├── devices_unix.go │ │ └── devices_windows.go │ │ ├── digests.go │ │ ├── digests_test.go │ │ ├── driver │ │ ├── driver.go │ │ ├── driver_unix.go │ │ ├── driver_windows.go │ │ └── utils.go │ │ ├── fs │ │ ├── copy.go │ │ ├── copy_linux.go │ │ ├── copy_test.go │ │ ├── copy_unix.go │ │ ├── copy_windows.go │ │ ├── diff.go │ │ ├── diff_test.go │ │ ├── diff_unix.go │ │ ├── diff_windows.go │ │ ├── dtype_linux.go │ │ ├── dtype_linux_test.go │ │ ├── dtype_test.go │ │ ├── du.go │ │ ├── du_unix.go │ │ ├── du_windows.go │ │ ├── fstest │ │ │ ├── compare.go │ │ │ ├── continuity_util.go │ │ │ ├── file.go │ │ │ ├── file_unix.go │ │ │ ├── file_windows.go │ │ │ └── testsuite.go │ │ ├── hardlink.go │ │ ├── hardlink_unix.go │ │ ├── hardlink_windows.go │ │ ├── path.go │ │ ├── path_test.go │ │ ├── stat_bsd.go │ │ ├── stat_linux.go │ │ └── time.go │ │ ├── groups_unix.go │ │ ├── hardlinks.go │ │ ├── hardlinks_unix.go │ │ ├── hardlinks_windows.go │ │ ├── ioutils.go │ │ ├── manifest.go │ │ ├── manifest_test.go │ │ ├── manifest_test_darwin.go │ │ ├── pathdriver │ │ └── path_driver.go │ │ ├── proto │ │ ├── gen.go │ │ ├── manifest.pb.go │ │ └── manifest.proto │ │ ├── resource.go │ │ ├── resource_test.go │ │ ├── resource_unix.go │ │ ├── resource_windows.go │ │ ├── sysx │ │ ├── asm.s │ │ ├── chmod_darwin.go │ │ ├── chmod_darwin_386.go │ │ ├── chmod_darwin_amd64.go │ │ ├── chmod_freebsd.go │ │ ├── chmod_freebsd_amd64.go │ │ ├── chmod_linux.go │ │ ├── chmod_solaris.go │ │ ├── generate.sh │ │ ├── nodata_linux.go │ │ ├── nodata_solaris.go │ │ ├── nodata_unix.go │ │ ├── sys.go │ │ ├── xattr.go │ │ ├── xattr_darwin.go │ │ ├── xattr_darwin_386.go │ │ ├── xattr_darwin_amd64.go │ │ ├── xattr_freebsd.go │ │ ├── xattr_linux.go │ │ ├── xattr_linux_386.go │ │ ├── xattr_linux_amd64.go │ │ ├── xattr_linux_arm.go │ │ ├── xattr_linux_arm64.go │ │ ├── xattr_linux_ppc64.go │ │ ├── xattr_linux_ppc64le.go │ │ ├── xattr_linux_s390x.go │ │ ├── xattr_openbsd.go │ │ ├── xattr_solaris.go │ │ └── xattr_unsupported.go │ │ ├── testutil │ │ ├── helpers.go │ │ ├── helpers_unix.go │ │ ├── helpers_windows.go │ │ ├── loopback_linux.go │ │ ├── mount_linux.go │ │ └── mount_other.go │ │ ├── testutil_test.go │ │ ├── vendor.conf │ │ └── version │ │ └── version.go ├── dchest │ └── uniuri │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── uniuri.go │ │ └── uniuri_test.go ├── docker │ ├── docker │ │ ├── .DEREK.yml │ │ ├── .dockerignore │ │ ├── .github │ │ │ ├── CODEOWNERS │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Dockerfile │ │ ├── Dockerfile.e2e │ │ ├── Dockerfile.simple │ │ ├── Dockerfile.windows │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── README.md │ │ ├── ROADMAP.md │ │ ├── TESTING.md │ │ ├── VENDORING.md │ │ ├── api │ │ │ ├── README.md │ │ │ ├── common.go │ │ │ ├── common_unix.go │ │ │ ├── common_windows.go │ │ │ ├── server │ │ │ │ ├── backend │ │ │ │ │ └── build │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ └── tag.go │ │ │ │ ├── httputils │ │ │ │ │ ├── decoder.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── form.go │ │ │ │ │ ├── form_test.go │ │ │ │ │ ├── httputils.go │ │ │ │ │ ├── httputils_test.go │ │ │ │ │ ├── httputils_write_json.go │ │ │ │ │ └── write_log_stream.go │ │ │ │ ├── middleware.go │ │ │ │ ├── middleware │ │ │ │ │ ├── cors.go │ │ │ │ │ ├── debug.go │ │ │ │ │ ├── debug_test.go │ │ │ │ │ ├── experimental.go │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── version.go │ │ │ │ │ └── version_test.go │ │ │ │ ├── router │ │ │ │ │ ├── build │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ └── build_routes.go │ │ │ │ │ ├── checkpoint │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ ├── checkpoint.go │ │ │ │ │ │ └── checkpoint_routes.go │ │ │ │ │ ├── container │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ ├── container.go │ │ │ │ │ │ ├── container_routes.go │ │ │ │ │ │ ├── copy.go │ │ │ │ │ │ ├── exec.go │ │ │ │ │ │ └── inspect.go │ │ │ │ │ ├── debug │ │ │ │ │ │ ├── debug.go │ │ │ │ │ │ └── debug_routes.go │ │ │ │ │ ├── distribution │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ ├── distribution.go │ │ │ │ │ │ └── distribution_routes.go │ │ │ │ │ ├── experimental.go │ │ │ │ │ ├── image │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ ├── image.go │ │ │ │ │ │ └── image_routes.go │ │ │ │ │ ├── local.go │ │ │ │ │ ├── network │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ ├── filter.go │ │ │ │ │ │ ├── filter_test.go │ │ │ │ │ │ ├── network.go │ │ │ │ │ │ └── network_routes.go │ │ │ │ │ ├── plugin │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ ├── plugin.go │ │ │ │ │ │ └── plugin_routes.go │ │ │ │ │ ├── router.go │ │ │ │ │ ├── session │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ ├── session.go │ │ │ │ │ │ └── session_routes.go │ │ │ │ │ ├── swarm │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ ├── cluster.go │ │ │ │ │ │ ├── cluster_routes.go │ │ │ │ │ │ └── helpers.go │ │ │ │ │ ├── system │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ ├── system.go │ │ │ │ │ │ └── system_routes.go │ │ │ │ │ └── volume │ │ │ │ │ │ ├── backend.go │ │ │ │ │ │ ├── volume.go │ │ │ │ │ │ └── volume_routes.go │ │ │ │ ├── router_swapper.go │ │ │ │ ├── server.go │ │ │ │ └── server_test.go │ │ │ ├── swagger-gen.yaml │ │ │ ├── swagger.yaml │ │ │ ├── templates │ │ │ │ └── server │ │ │ │ │ └── operation.gotmpl │ │ │ └── types │ │ │ │ ├── auth.go │ │ │ │ ├── backend │ │ │ │ ├── backend.go │ │ │ │ └── build.go │ │ │ │ ├── blkiodev │ │ │ │ └── blkio.go │ │ │ │ ├── client.go │ │ │ │ ├── configs.go │ │ │ │ ├── container │ │ │ │ ├── config.go │ │ │ │ ├── container_changes.go │ │ │ │ ├── container_create.go │ │ │ │ ├── container_top.go │ │ │ │ ├── container_update.go │ │ │ │ ├── container_wait.go │ │ │ │ ├── host_config.go │ │ │ │ ├── hostconfig_unix.go │ │ │ │ ├── hostconfig_windows.go │ │ │ │ └── waitcondition.go │ │ │ │ ├── error_response.go │ │ │ │ ├── events │ │ │ │ └── events.go │ │ │ │ ├── filters │ │ │ │ ├── example_test.go │ │ │ │ ├── parse.go │ │ │ │ └── parse_test.go │ │ │ │ ├── graph_driver_data.go │ │ │ │ ├── id_response.go │ │ │ │ ├── image │ │ │ │ └── image_history.go │ │ │ │ ├── image_delete_response_item.go │ │ │ │ ├── image_summary.go │ │ │ │ ├── mount │ │ │ │ └── mount.go │ │ │ │ ├── network │ │ │ │ └── network.go │ │ │ │ ├── plugin.go │ │ │ │ ├── plugin_device.go │ │ │ │ ├── plugin_env.go │ │ │ │ ├── plugin_interface_type.go │ │ │ │ ├── plugin_mount.go │ │ │ │ ├── plugin_responses.go │ │ │ │ ├── plugins │ │ │ │ └── logdriver │ │ │ │ │ ├── entry.pb.go │ │ │ │ │ ├── entry.proto │ │ │ │ │ ├── gen.go │ │ │ │ │ └── io.go │ │ │ │ ├── port.go │ │ │ │ ├── registry │ │ │ │ ├── authenticate.go │ │ │ │ └── registry.go │ │ │ │ ├── seccomp.go │ │ │ │ ├── service_update_response.go │ │ │ │ ├── stats.go │ │ │ │ ├── strslice │ │ │ │ ├── strslice.go │ │ │ │ └── strslice_test.go │ │ │ │ ├── swarm │ │ │ │ ├── common.go │ │ │ │ ├── config.go │ │ │ │ ├── container.go │ │ │ │ ├── network.go │ │ │ │ ├── node.go │ │ │ │ ├── runtime.go │ │ │ │ ├── runtime │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── plugin.pb.go │ │ │ │ │ └── plugin.proto │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ ├── swarm.go │ │ │ │ └── task.go │ │ │ │ ├── time │ │ │ │ ├── duration_convert.go │ │ │ │ ├── duration_convert_test.go │ │ │ │ ├── timestamp.go │ │ │ │ └── timestamp_test.go │ │ │ │ ├── types.go │ │ │ │ ├── versions │ │ │ │ ├── README.md │ │ │ │ ├── compare.go │ │ │ │ ├── compare_test.go │ │ │ │ ├── v1p19 │ │ │ │ │ └── types.go │ │ │ │ └── v1p20 │ │ │ │ │ └── types.go │ │ │ │ ├── volume.go │ │ │ │ └── volume │ │ │ │ ├── volumes_create.go │ │ │ │ └── volumes_list.go │ │ ├── builder │ │ │ ├── builder.go │ │ │ ├── dockerfile │ │ │ │ ├── buildargs.go │ │ │ │ ├── buildargs_test.go │ │ │ │ ├── builder.go │ │ │ │ ├── builder_test.go │ │ │ │ ├── builder_unix.go │ │ │ │ ├── builder_windows.go │ │ │ │ ├── clientsession.go │ │ │ │ ├── command │ │ │ │ │ └── command.go │ │ │ │ ├── containerbackend.go │ │ │ │ ├── copy.go │ │ │ │ ├── copy_test.go │ │ │ │ ├── copy_unix.go │ │ │ │ ├── copy_windows.go │ │ │ │ ├── dispatchers.go │ │ │ │ ├── dispatchers_test.go │ │ │ │ ├── dispatchers_unix.go │ │ │ │ ├── dispatchers_unix_test.go │ │ │ │ ├── dispatchers_windows.go │ │ │ │ ├── dispatchers_windows_test.go │ │ │ │ ├── evaluator.go │ │ │ │ ├── evaluator_test.go │ │ │ │ ├── imagecontext.go │ │ │ │ ├── imageprobe.go │ │ │ │ ├── instructions │ │ │ │ │ ├── bflag.go │ │ │ │ │ ├── bflag_test.go │ │ │ │ │ ├── commands.go │ │ │ │ │ ├── errors_unix.go │ │ │ │ │ ├── errors_windows.go │ │ │ │ │ ├── parse.go │ │ │ │ │ ├── parse_test.go │ │ │ │ │ ├── support.go │ │ │ │ │ └── support_test.go │ │ │ │ ├── internals.go │ │ │ │ ├── internals_linux.go │ │ │ │ ├── internals_linux_test.go │ │ │ │ ├── internals_test.go │ │ │ │ ├── internals_windows.go │ │ │ │ ├── internals_windows_test.go │ │ │ │ ├── metrics.go │ │ │ │ ├── mockbackend_test.go │ │ │ │ ├── parser │ │ │ │ │ ├── dumper │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── json_test.go │ │ │ │ │ ├── line_parsers.go │ │ │ │ │ ├── line_parsers_test.go │ │ │ │ │ ├── parser.go │ │ │ │ │ ├── parser_test.go │ │ │ │ │ ├── split_command.go │ │ │ │ │ ├── testfile-line │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── testfiles-negative │ │ │ │ │ │ ├── env_no_value │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ └── shykes-nested-json │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ └── testfiles │ │ │ │ │ │ ├── ADD-COPY-with-JSON │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── brimstone-consuldock │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── brimstone-docker-consul │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── continue-at-eof │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── continueIndent │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── cpuguy83-nagios │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── docker │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── env │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── escape-after-comment │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── escape-nonewline │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── escape │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── escapes │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── flags │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── health │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── influxdb │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── jeztah-invalid-json-json-inside-string-double │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── jeztah-invalid-json-json-inside-string │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── jeztah-invalid-json-single-quotes │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── jeztah-invalid-json-unterminated-bracket │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── jeztah-invalid-json-unterminated-string │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── json │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── kartar-entrypoint-oddities │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── lk4d4-the-edge-case-generator │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── mail │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── multiple-volumes │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── mumble │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── nginx │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── tf2 │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── weechat │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ │ │ └── znc │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── result │ │ │ │ ├── shell │ │ │ │ │ ├── envVarTest │ │ │ │ │ ├── equal_env_unix.go │ │ │ │ │ ├── equal_env_windows.go │ │ │ │ │ ├── lex.go │ │ │ │ │ ├── lex_test.go │ │ │ │ │ └── wordsTest │ │ │ │ └── utils_test.go │ │ │ ├── dockerignore │ │ │ │ ├── dockerignore.go │ │ │ │ └── dockerignore_test.go │ │ │ ├── fscache │ │ │ │ ├── fscache.go │ │ │ │ ├── fscache_test.go │ │ │ │ └── naivedriver.go │ │ │ └── remotecontext │ │ │ │ ├── archive.go │ │ │ │ ├── detect.go │ │ │ │ ├── detect_test.go │ │ │ │ ├── filehash.go │ │ │ │ ├── generate.go │ │ │ │ ├── git.go │ │ │ │ ├── git │ │ │ │ ├── gitutils.go │ │ │ │ └── gitutils_test.go │ │ │ │ ├── lazycontext.go │ │ │ │ ├── mimetype.go │ │ │ │ ├── mimetype_test.go │ │ │ │ ├── remote.go │ │ │ │ ├── remote_test.go │ │ │ │ ├── tarsum.go │ │ │ │ ├── tarsum.pb.go │ │ │ │ ├── tarsum.proto │ │ │ │ ├── tarsum_test.go │ │ │ │ └── utils_test.go │ │ ├── cli │ │ │ ├── cobra.go │ │ │ ├── config │ │ │ │ └── configdir.go │ │ │ ├── debug │ │ │ │ ├── debug.go │ │ │ │ └── debug_test.go │ │ │ ├── error.go │ │ │ └── required.go │ │ ├── client │ │ │ ├── README.md │ │ │ ├── build_prune.go │ │ │ ├── checkpoint_create.go │ │ │ ├── checkpoint_create_test.go │ │ │ ├── checkpoint_delete.go │ │ │ ├── checkpoint_delete_test.go │ │ │ ├── checkpoint_list.go │ │ │ ├── checkpoint_list_test.go │ │ │ ├── client.go │ │ │ ├── client_mock_test.go │ │ │ ├── client_test.go │ │ │ ├── client_unix.go │ │ │ ├── client_windows.go │ │ │ ├── config_create.go │ │ │ ├── config_create_test.go │ │ │ ├── config_inspect.go │ │ │ ├── config_inspect_test.go │ │ │ ├── config_list.go │ │ │ ├── config_list_test.go │ │ │ ├── config_remove.go │ │ │ ├── config_remove_test.go │ │ │ ├── config_update.go │ │ │ ├── config_update_test.go │ │ │ ├── container_attach.go │ │ │ ├── container_commit.go │ │ │ ├── container_commit_test.go │ │ │ ├── container_copy.go │ │ │ ├── container_copy_test.go │ │ │ ├── container_create.go │ │ │ ├── container_create_test.go │ │ │ ├── container_diff.go │ │ │ ├── container_diff_test.go │ │ │ ├── container_exec.go │ │ │ ├── container_exec_test.go │ │ │ ├── container_export.go │ │ │ ├── container_export_test.go │ │ │ ├── container_inspect.go │ │ │ ├── container_inspect_test.go │ │ │ ├── container_kill.go │ │ │ ├── container_kill_test.go │ │ │ ├── container_list.go │ │ │ ├── container_list_test.go │ │ │ ├── container_logs.go │ │ │ ├── container_logs_test.go │ │ │ ├── container_pause.go │ │ │ ├── container_pause_test.go │ │ │ ├── container_prune.go │ │ │ ├── container_prune_test.go │ │ │ ├── container_remove.go │ │ │ ├── container_remove_test.go │ │ │ ├── container_rename.go │ │ │ ├── container_rename_test.go │ │ │ ├── container_resize.go │ │ │ ├── container_resize_test.go │ │ │ ├── container_restart.go │ │ │ ├── container_restart_test.go │ │ │ ├── container_start.go │ │ │ ├── container_start_test.go │ │ │ ├── container_stats.go │ │ │ ├── container_stats_test.go │ │ │ ├── container_stop.go │ │ │ ├── container_stop_test.go │ │ │ ├── container_top.go │ │ │ ├── container_top_test.go │ │ │ ├── container_unpause.go │ │ │ ├── container_unpause_test.go │ │ │ ├── container_update.go │ │ │ ├── container_update_test.go │ │ │ ├── container_wait.go │ │ │ ├── container_wait_test.go │ │ │ ├── disk_usage.go │ │ │ ├── disk_usage_test.go │ │ │ ├── distribution_inspect.go │ │ │ ├── distribution_inspect_test.go │ │ │ ├── errors.go │ │ │ ├── events.go │ │ │ ├── events_test.go │ │ │ ├── hijack.go │ │ │ ├── image_build.go │ │ │ ├── image_build_test.go │ │ │ ├── image_create.go │ │ │ ├── image_create_test.go │ │ │ ├── image_history.go │ │ │ ├── image_history_test.go │ │ │ ├── image_import.go │ │ │ ├── image_import_test.go │ │ │ ├── image_inspect.go │ │ │ ├── image_inspect_test.go │ │ │ ├── image_list.go │ │ │ ├── image_list_test.go │ │ │ ├── image_load.go │ │ │ ├── image_load_test.go │ │ │ ├── image_prune.go │ │ │ ├── image_prune_test.go │ │ │ ├── image_pull.go │ │ │ ├── image_pull_test.go │ │ │ ├── image_push.go │ │ │ ├── image_push_test.go │ │ │ ├── image_remove.go │ │ │ ├── image_remove_test.go │ │ │ ├── image_save.go │ │ │ ├── image_save_test.go │ │ │ ├── image_search.go │ │ │ ├── image_search_test.go │ │ │ ├── image_tag.go │ │ │ ├── image_tag_test.go │ │ │ ├── info.go │ │ │ ├── info_test.go │ │ │ ├── interface.go │ │ │ ├── interface_experimental.go │ │ │ ├── interface_stable.go │ │ │ ├── login.go │ │ │ ├── network_connect.go │ │ │ ├── network_connect_test.go │ │ │ ├── network_create.go │ │ │ ├── network_create_test.go │ │ │ ├── network_disconnect.go │ │ │ ├── network_disconnect_test.go │ │ │ ├── network_inspect.go │ │ │ ├── network_inspect_test.go │ │ │ ├── network_list.go │ │ │ ├── network_list_test.go │ │ │ ├── network_prune.go │ │ │ ├── network_prune_test.go │ │ │ ├── network_remove.go │ │ │ ├── network_remove_test.go │ │ │ ├── node_inspect.go │ │ │ ├── node_inspect_test.go │ │ │ ├── node_list.go │ │ │ ├── node_list_test.go │ │ │ ├── node_remove.go │ │ │ ├── node_remove_test.go │ │ │ ├── node_update.go │ │ │ ├── node_update_test.go │ │ │ ├── ping.go │ │ │ ├── ping_test.go │ │ │ ├── plugin_create.go │ │ │ ├── plugin_disable.go │ │ │ ├── plugin_disable_test.go │ │ │ ├── plugin_enable.go │ │ │ ├── plugin_enable_test.go │ │ │ ├── plugin_inspect.go │ │ │ ├── plugin_inspect_test.go │ │ │ ├── plugin_install.go │ │ │ ├── plugin_list.go │ │ │ ├── plugin_list_test.go │ │ │ ├── plugin_push.go │ │ │ ├── plugin_push_test.go │ │ │ ├── plugin_remove.go │ │ │ ├── plugin_remove_test.go │ │ │ ├── plugin_set.go │ │ │ ├── plugin_set_test.go │ │ │ ├── plugin_upgrade.go │ │ │ ├── request.go │ │ │ ├── request_test.go │ │ │ ├── secret_create.go │ │ │ ├── secret_create_test.go │ │ │ ├── secret_inspect.go │ │ │ ├── secret_inspect_test.go │ │ │ ├── secret_list.go │ │ │ ├── secret_list_test.go │ │ │ ├── secret_remove.go │ │ │ ├── secret_remove_test.go │ │ │ ├── secret_update.go │ │ │ ├── secret_update_test.go │ │ │ ├── service_create.go │ │ │ ├── service_create_test.go │ │ │ ├── service_inspect.go │ │ │ ├── service_inspect_test.go │ │ │ ├── service_list.go │ │ │ ├── service_list_test.go │ │ │ ├── service_logs.go │ │ │ ├── service_logs_test.go │ │ │ ├── service_remove.go │ │ │ ├── service_remove_test.go │ │ │ ├── service_update.go │ │ │ ├── service_update_test.go │ │ │ ├── session.go │ │ │ ├── swarm_get_unlock_key.go │ │ │ ├── swarm_get_unlock_key_test.go │ │ │ ├── swarm_init.go │ │ │ ├── swarm_init_test.go │ │ │ ├── swarm_inspect.go │ │ │ ├── swarm_inspect_test.go │ │ │ ├── swarm_join.go │ │ │ ├── swarm_join_test.go │ │ │ ├── swarm_leave.go │ │ │ ├── swarm_leave_test.go │ │ │ ├── swarm_unlock.go │ │ │ ├── swarm_unlock_test.go │ │ │ ├── swarm_update.go │ │ │ ├── swarm_update_test.go │ │ │ ├── task_inspect.go │ │ │ ├── task_inspect_test.go │ │ │ ├── task_list.go │ │ │ ├── task_list_test.go │ │ │ ├── task_logs.go │ │ │ ├── testdata │ │ │ │ ├── ca.pem │ │ │ │ ├── cert.pem │ │ │ │ └── key.pem │ │ │ ├── tlsconfig_clone.go │ │ │ ├── tlsconfig_clone_go17.go │ │ │ ├── transport.go │ │ │ ├── utils.go │ │ │ ├── version.go │ │ │ ├── volume_create.go │ │ │ ├── volume_create_test.go │ │ │ ├── volume_inspect.go │ │ │ ├── volume_inspect_test.go │ │ │ ├── volume_list.go │ │ │ ├── volume_list_test.go │ │ │ ├── volume_prune.go │ │ │ ├── volume_remove.go │ │ │ └── volume_remove_test.go │ │ ├── cmd │ │ │ └── dockerd │ │ │ │ ├── README.md │ │ │ │ ├── config.go │ │ │ │ ├── config_common_unix.go │ │ │ │ ├── config_unix.go │ │ │ │ ├── config_unix_test.go │ │ │ │ ├── config_windows.go │ │ │ │ ├── daemon.go │ │ │ │ ├── daemon_freebsd.go │ │ │ │ ├── daemon_linux.go │ │ │ │ ├── daemon_test.go │ │ │ │ ├── daemon_unix.go │ │ │ │ ├── daemon_unix_test.go │ │ │ │ ├── daemon_windows.go │ │ │ │ ├── docker.go │ │ │ │ ├── docker_unix.go │ │ │ │ ├── docker_windows.go │ │ │ │ ├── hack │ │ │ │ ├── malformed_host_override.go │ │ │ │ └── malformed_host_override_test.go │ │ │ │ ├── metrics.go │ │ │ │ ├── options.go │ │ │ │ ├── options_test.go │ │ │ │ ├── service_unsupported.go │ │ │ │ └── service_windows.go │ │ ├── codecov.yml │ │ ├── container │ │ │ ├── archive.go │ │ │ ├── container.go │ │ │ ├── container_linux.go │ │ │ ├── container_notlinux.go │ │ │ ├── container_unit_test.go │ │ │ ├── container_unix.go │ │ │ ├── container_windows.go │ │ │ ├── env.go │ │ │ ├── env_test.go │ │ │ ├── health.go │ │ │ ├── history.go │ │ │ ├── memory_store.go │ │ │ ├── memory_store_test.go │ │ │ ├── monitor.go │ │ │ ├── mounts_unix.go │ │ │ ├── mounts_windows.go │ │ │ ├── state.go │ │ │ ├── state_test.go │ │ │ ├── store.go │ │ │ ├── stream │ │ │ │ ├── attach.go │ │ │ │ └── streams.go │ │ │ ├── view.go │ │ │ └── view_test.go │ │ ├── contrib │ │ │ ├── README.md │ │ │ ├── REVIEWERS │ │ │ ├── apparmor │ │ │ │ ├── main.go │ │ │ │ └── template.go │ │ │ ├── builder │ │ │ │ ├── deb │ │ │ │ │ ├── aarch64 │ │ │ │ │ │ ├── build.sh │ │ │ │ │ │ ├── debian-jessie │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── debian-stretch │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ ├── ubuntu-trusty │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ └── ubuntu-xenial │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── amd64 │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── build.sh │ │ │ │ │ │ ├── debian-jessie │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── debian-stretch │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── debian-wheezy │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ ├── ubuntu-trusty │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── ubuntu-xenial │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── ubuntu-yakkety │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ └── ubuntu-zesty │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── armhf │ │ │ │ │ │ ├── debian-jessie │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ ├── raspbian-jessie │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── ubuntu-trusty │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── ubuntu-xenial │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ └── ubuntu-yakkety │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── ppc64le │ │ │ │ │ │ ├── build.sh │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ ├── ubuntu-trusty │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── ubuntu-xenial │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ └── ubuntu-yakkety │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ └── s390x │ │ │ │ │ │ ├── build.sh │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ ├── ubuntu-xenial │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ └── ubuntu-yakkety │ │ │ │ │ │ └── Dockerfile │ │ │ │ └── rpm │ │ │ │ │ ├── amd64 │ │ │ │ │ ├── README.md │ │ │ │ │ ├── amazonlinux-latest │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── centos-7 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── fedora-24 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── fedora-25 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── generate.sh │ │ │ │ │ ├── opensuse-13.2 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── oraclelinux-6 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── oraclelinux-7 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ └── photon-1.0 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── armhf │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── centos-7 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ └── generate.sh │ │ │ │ │ ├── ppc64le │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── centos-7 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── fedora-24 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── generate.sh │ │ │ │ │ └── opensuse-42.1 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ └── s390x │ │ │ │ │ ├── build.sh │ │ │ │ │ ├── clefos-base-s390x-7 │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── generate.sh │ │ │ │ │ └── opensuse-tumbleweed-1 │ │ │ │ │ └── Dockerfile │ │ │ ├── check-config.sh │ │ │ ├── desktop-integration │ │ │ │ ├── README.md │ │ │ │ ├── chromium │ │ │ │ │ └── Dockerfile │ │ │ │ └── gparted │ │ │ │ │ └── Dockerfile │ │ │ ├── docker-device-tool │ │ │ │ ├── README.md │ │ │ │ ├── device_tool.go │ │ │ │ └── device_tool_windows.go │ │ │ ├── docker-machine-install-bundle.sh │ │ │ ├── dockerize-disk.sh │ │ │ ├── download-frozen-image-v1.sh │ │ │ ├── download-frozen-image-v2.sh │ │ │ ├── editorconfig │ │ │ ├── gitdm │ │ │ │ ├── aliases │ │ │ │ ├── domain-map │ │ │ │ ├── generate_aliases.sh │ │ │ │ └── gitdm.config │ │ │ ├── httpserver │ │ │ │ ├── Dockerfile │ │ │ │ └── server.go │ │ │ ├── init │ │ │ │ ├── openrc │ │ │ │ │ ├── docker.confd │ │ │ │ │ └── docker.initd │ │ │ │ ├── systemd │ │ │ │ │ ├── REVIEWERS │ │ │ │ │ ├── docker.service │ │ │ │ │ ├── docker.service.rpm │ │ │ │ │ └── docker.socket │ │ │ │ ├── sysvinit-debian │ │ │ │ │ ├── docker │ │ │ │ │ └── docker.default │ │ │ │ ├── sysvinit-redhat │ │ │ │ │ ├── docker │ │ │ │ │ └── docker.sysconfig │ │ │ │ └── upstart │ │ │ │ │ ├── REVIEWERS │ │ │ │ │ └── docker.conf │ │ │ ├── mac-install-bundle.sh │ │ │ ├── mkimage-alpine.sh │ │ │ ├── mkimage-arch-pacman.conf │ │ │ ├── mkimage-arch.sh │ │ │ ├── mkimage-archarm-pacman.conf │ │ │ ├── mkimage-crux.sh │ │ │ ├── mkimage-pld.sh │ │ │ ├── mkimage-yum.sh │ │ │ ├── mkimage.sh │ │ │ ├── mkimage │ │ │ │ ├── .febootstrap-minimize │ │ │ │ ├── busybox-static │ │ │ │ ├── debootstrap │ │ │ │ ├── mageia-urpmi │ │ │ │ └── rinse │ │ │ ├── nnp-test │ │ │ │ ├── Dockerfile │ │ │ │ └── nnp-test.c │ │ │ ├── nuke-graph-directory.sh │ │ │ ├── project-stats.sh │ │ │ ├── report-issue.sh │ │ │ ├── reprepro │ │ │ │ └── suites.sh │ │ │ ├── selinux-fedora-24 │ │ │ │ └── docker-engine-selinux │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── docker.fc │ │ │ │ │ ├── docker.if │ │ │ │ │ └── docker.te │ │ │ ├── selinux-oraclelinux-7 │ │ │ │ └── docker-engine-selinux │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── docker.fc │ │ │ │ │ ├── docker.if │ │ │ │ │ ├── docker.te │ │ │ │ │ └── docker_selinux.8.gz │ │ │ ├── syntax │ │ │ │ ├── nano │ │ │ │ │ ├── Dockerfile.nanorc │ │ │ │ │ └── README.md │ │ │ │ ├── textmate │ │ │ │ │ ├── Docker.tmbundle │ │ │ │ │ │ ├── Preferences │ │ │ │ │ │ │ └── Dockerfile.tmPreferences │ │ │ │ │ │ ├── Syntaxes │ │ │ │ │ │ │ └── Dockerfile.tmLanguage │ │ │ │ │ │ └── info.plist │ │ │ │ │ ├── README.md │ │ │ │ │ └── REVIEWERS │ │ │ │ └── vim │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc │ │ │ │ │ └── dockerfile.txt │ │ │ │ │ ├── ftdetect │ │ │ │ │ └── dockerfile.vim │ │ │ │ │ └── syntax │ │ │ │ │ └── dockerfile.vim │ │ │ ├── syscall-test │ │ │ │ ├── Dockerfile │ │ │ │ ├── acct.c │ │ │ │ ├── exit32.s │ │ │ │ ├── ns.c │ │ │ │ ├── raw.c │ │ │ │ ├── setgid.c │ │ │ │ ├── setuid.c │ │ │ │ ├── socket.c │ │ │ │ └── userns.c │ │ │ ├── udev │ │ │ │ └── 80-docker.rules │ │ │ └── vagrant-docker │ │ │ │ └── README.md │ │ ├── daemon │ │ │ ├── apparmor_default.go │ │ │ ├── apparmor_default_unsupported.go │ │ │ ├── archive.go │ │ │ ├── archive_tarcopyoptions.go │ │ │ ├── archive_tarcopyoptions_unix.go │ │ │ ├── archive_tarcopyoptions_windows.go │ │ │ ├── archive_unix.go │ │ │ ├── archive_windows.go │ │ │ ├── attach.go │ │ │ ├── auth.go │ │ │ ├── bindmount_unix.go │ │ │ ├── caps │ │ │ │ └── utils_unix.go │ │ │ ├── changes.go │ │ │ ├── checkpoint.go │ │ │ ├── cluster.go │ │ │ ├── cluster │ │ │ │ ├── cluster.go │ │ │ │ ├── configs.go │ │ │ │ ├── controllers │ │ │ │ │ └── plugin │ │ │ │ │ │ ├── controller.go │ │ │ │ │ │ └── controller_test.go │ │ │ │ ├── convert │ │ │ │ │ ├── config.go │ │ │ │ │ ├── container.go │ │ │ │ │ ├── network.go │ │ │ │ │ ├── network_test.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── secret.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── service_test.go │ │ │ │ │ ├── swarm.go │ │ │ │ │ └── task.go │ │ │ │ ├── errors.go │ │ │ │ ├── executor │ │ │ │ │ ├── backend.go │ │ │ │ │ └── container │ │ │ │ │ │ ├── adapter.go │ │ │ │ │ │ ├── attachment.go │ │ │ │ │ │ ├── container.go │ │ │ │ │ │ ├── container_test.go │ │ │ │ │ │ ├── controller.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── executor.go │ │ │ │ │ │ ├── health_test.go │ │ │ │ │ │ ├── validate.go │ │ │ │ │ │ ├── validate_test.go │ │ │ │ │ │ ├── validate_unix_test.go │ │ │ │ │ │ └── validate_windows_test.go │ │ │ │ ├── filters.go │ │ │ │ ├── filters_test.go │ │ │ │ ├── helpers.go │ │ │ │ ├── listen_addr.go │ │ │ │ ├── listen_addr_linux.go │ │ │ │ ├── listen_addr_others.go │ │ │ │ ├── networks.go │ │ │ │ ├── noderunner.go │ │ │ │ ├── nodes.go │ │ │ │ ├── provider │ │ │ │ │ └── network.go │ │ │ │ ├── secrets.go │ │ │ │ ├── services.go │ │ │ │ ├── swarm.go │ │ │ │ ├── tasks.go │ │ │ │ └── utils.go │ │ │ ├── commit.go │ │ │ ├── config │ │ │ │ ├── config.go │ │ │ │ ├── config_common_unix.go │ │ │ │ ├── config_common_unix_test.go │ │ │ │ ├── config_test.go │ │ │ │ ├── config_unix.go │ │ │ │ ├── config_unix_test.go │ │ │ │ ├── config_windows.go │ │ │ │ ├── config_windows_test.go │ │ │ │ └── opts.go │ │ │ ├── configs.go │ │ │ ├── configs_linux.go │ │ │ ├── configs_unsupported.go │ │ │ ├── configs_windows.go │ │ │ ├── container.go │ │ │ ├── container_linux.go │ │ │ ├── container_operations.go │ │ │ ├── container_operations_unix.go │ │ │ ├── container_operations_windows.go │ │ │ ├── container_unix_test.go │ │ │ ├── container_windows.go │ │ │ ├── create.go │ │ │ ├── create_test.go │ │ │ ├── create_unix.go │ │ │ ├── create_windows.go │ │ │ ├── daemon.go │ │ │ ├── daemon_linux.go │ │ │ ├── daemon_linux_test.go │ │ │ ├── daemon_test.go │ │ │ ├── daemon_unix.go │ │ │ ├── daemon_unix_test.go │ │ │ ├── daemon_unsupported.go │ │ │ ├── daemon_windows.go │ │ │ ├── daemon_windows_test.go │ │ │ ├── debugtrap_unix.go │ │ │ ├── debugtrap_unsupported.go │ │ │ ├── debugtrap_windows.go │ │ │ ├── delete.go │ │ │ ├── delete_test.go │ │ │ ├── dependency.go │ │ │ ├── discovery │ │ │ │ ├── discovery.go │ │ │ │ └── discovery_test.go │ │ │ ├── disk_usage.go │ │ │ ├── errors.go │ │ │ ├── events.go │ │ │ ├── events │ │ │ │ ├── events.go │ │ │ │ ├── events_test.go │ │ │ │ ├── filter.go │ │ │ │ ├── metrics.go │ │ │ │ └── testutils │ │ │ │ │ └── testutils.go │ │ │ ├── events_test.go │ │ │ ├── exec.go │ │ │ ├── exec │ │ │ │ └── exec.go │ │ │ ├── exec_linux.go │ │ │ ├── exec_linux_test.go │ │ │ ├── exec_windows.go │ │ │ ├── export.go │ │ │ ├── graphdriver │ │ │ │ ├── aufs │ │ │ │ │ ├── aufs.go │ │ │ │ │ ├── aufs_test.go │ │ │ │ │ ├── dirs.go │ │ │ │ │ ├── mount.go │ │ │ │ │ ├── mount_linux.go │ │ │ │ │ └── mount_unsupported.go │ │ │ │ ├── btrfs │ │ │ │ │ ├── btrfs.go │ │ │ │ │ ├── btrfs_test.go │ │ │ │ │ ├── dummy_unsupported.go │ │ │ │ │ ├── version.go │ │ │ │ │ ├── version_none.go │ │ │ │ │ └── version_test.go │ │ │ │ ├── copy │ │ │ │ │ ├── copy.go │ │ │ │ │ └── copy_test.go │ │ │ │ ├── counter.go │ │ │ │ ├── devmapper │ │ │ │ │ ├── README.md │ │ │ │ │ ├── device_setup.go │ │ │ │ │ ├── deviceset.go │ │ │ │ │ ├── devmapper_doc.go │ │ │ │ │ ├── devmapper_test.go │ │ │ │ │ ├── driver.go │ │ │ │ │ └── mount.go │ │ │ │ ├── driver.go │ │ │ │ ├── driver_freebsd.go │ │ │ │ ├── driver_linux.go │ │ │ │ ├── driver_test.go │ │ │ │ ├── driver_unsupported.go │ │ │ │ ├── driver_windows.go │ │ │ │ ├── errors.go │ │ │ │ ├── fsdiff.go │ │ │ │ ├── graphtest │ │ │ │ │ ├── graphbench_unix.go │ │ │ │ │ ├── graphtest_unix.go │ │ │ │ │ ├── graphtest_windows.go │ │ │ │ │ ├── testutil.go │ │ │ │ │ └── testutil_unix.go │ │ │ │ ├── lcow │ │ │ │ │ ├── lcow.go │ │ │ │ │ ├── lcow_svm.go │ │ │ │ │ ├── remotefs.go │ │ │ │ │ ├── remotefs_file.go │ │ │ │ │ ├── remotefs_filedriver.go │ │ │ │ │ └── remotefs_pathdriver.go │ │ │ │ ├── overlay │ │ │ │ │ ├── overlay.go │ │ │ │ │ ├── overlay_test.go │ │ │ │ │ └── overlay_unsupported.go │ │ │ │ ├── overlay2 │ │ │ │ │ ├── check.go │ │ │ │ │ ├── mount.go │ │ │ │ │ ├── overlay.go │ │ │ │ │ ├── overlay_test.go │ │ │ │ │ ├── overlay_unsupported.go │ │ │ │ │ └── randomid.go │ │ │ │ ├── overlayutils │ │ │ │ │ └── overlayutils.go │ │ │ │ ├── plugin.go │ │ │ │ ├── proxy.go │ │ │ │ ├── quota │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── projectquota.go │ │ │ │ │ └── projectquota_test.go │ │ │ │ ├── register │ │ │ │ │ ├── register_aufs.go │ │ │ │ │ ├── register_btrfs.go │ │ │ │ │ ├── register_devicemapper.go │ │ │ │ │ ├── register_overlay.go │ │ │ │ │ ├── register_overlay2.go │ │ │ │ │ ├── register_vfs.go │ │ │ │ │ ├── register_windows.go │ │ │ │ │ └── register_zfs.go │ │ │ │ ├── vfs │ │ │ │ │ ├── copy_linux.go │ │ │ │ │ ├── copy_unsupported.go │ │ │ │ │ ├── driver.go │ │ │ │ │ ├── quota_linux.go │ │ │ │ │ ├── quota_unsupported.go │ │ │ │ │ └── vfs_test.go │ │ │ │ ├── windows │ │ │ │ │ └── windows.go │ │ │ │ └── zfs │ │ │ │ │ ├── MAINTAINERS │ │ │ │ │ ├── zfs.go │ │ │ │ │ ├── zfs_freebsd.go │ │ │ │ │ ├── zfs_linux.go │ │ │ │ │ ├── zfs_test.go │ │ │ │ │ └── zfs_unsupported.go │ │ │ ├── health.go │ │ │ ├── health_test.go │ │ │ ├── images │ │ │ │ ├── cache.go │ │ │ │ ├── image.go │ │ │ │ ├── image_builder.go │ │ │ │ ├── image_commit.go │ │ │ │ ├── image_delete.go │ │ │ │ ├── image_events.go │ │ │ │ ├── image_exporter.go │ │ │ │ ├── image_history.go │ │ │ │ ├── image_import.go │ │ │ │ ├── image_inspect.go │ │ │ │ ├── image_prune.go │ │ │ │ ├── image_pull.go │ │ │ │ ├── image_push.go │ │ │ │ ├── image_search.go │ │ │ │ ├── image_search_test.go │ │ │ │ ├── image_tag.go │ │ │ │ ├── image_unix.go │ │ │ │ ├── image_windows.go │ │ │ │ ├── images.go │ │ │ │ ├── locals.go │ │ │ │ └── service.go │ │ │ ├── info.go │ │ │ ├── info_unix.go │ │ │ ├── info_unix_test.go │ │ │ ├── info_windows.go │ │ │ ├── initlayer │ │ │ │ ├── setup_unix.go │ │ │ │ └── setup_windows.go │ │ │ ├── inspect.go │ │ │ ├── inspect_linux.go │ │ │ ├── inspect_test.go │ │ │ ├── inspect_windows.go │ │ │ ├── keys.go │ │ │ ├── keys_unsupported.go │ │ │ ├── kill.go │ │ │ ├── links.go │ │ │ ├── links │ │ │ │ ├── links.go │ │ │ │ └── links_test.go │ │ │ ├── list.go │ │ │ ├── list_test.go │ │ │ ├── list_unix.go │ │ │ ├── list_windows.go │ │ │ ├── listeners │ │ │ │ ├── group_unix.go │ │ │ │ ├── listeners_linux.go │ │ │ │ └── listeners_windows.go │ │ │ ├── logdrivers_linux.go │ │ │ ├── logdrivers_windows.go │ │ │ ├── logger │ │ │ │ ├── adapter.go │ │ │ │ ├── adapter_test.go │ │ │ │ ├── awslogs │ │ │ │ │ ├── cloudwatchlogs.go │ │ │ │ │ ├── cloudwatchlogs_test.go │ │ │ │ │ └── cwlogsiface_mock_test.go │ │ │ │ ├── copier.go │ │ │ │ ├── copier_test.go │ │ │ │ ├── etwlogs │ │ │ │ │ └── etwlogs_windows.go │ │ │ │ ├── factory.go │ │ │ │ ├── fluentd │ │ │ │ │ └── fluentd.go │ │ │ │ ├── gcplogs │ │ │ │ │ ├── gcplogging.go │ │ │ │ │ ├── gcplogging_linux.go │ │ │ │ │ └── gcplogging_others.go │ │ │ │ ├── gelf │ │ │ │ │ ├── gelf.go │ │ │ │ │ └── gelf_test.go │ │ │ │ ├── journald │ │ │ │ │ ├── journald.go │ │ │ │ │ ├── journald_test.go │ │ │ │ │ ├── journald_unsupported.go │ │ │ │ │ ├── read.go │ │ │ │ │ ├── read_native.go │ │ │ │ │ ├── read_native_compat.go │ │ │ │ │ └── read_unsupported.go │ │ │ │ ├── jsonfilelog │ │ │ │ │ ├── jsonfilelog.go │ │ │ │ │ ├── jsonfilelog_test.go │ │ │ │ │ ├── jsonlog │ │ │ │ │ │ ├── jsonlog.go │ │ │ │ │ │ ├── jsonlogbytes.go │ │ │ │ │ │ ├── jsonlogbytes_test.go │ │ │ │ │ │ ├── time_marshalling.go │ │ │ │ │ │ └── time_marshalling_test.go │ │ │ │ │ ├── read.go │ │ │ │ │ └── read_test.go │ │ │ │ ├── logentries │ │ │ │ │ └── logentries.go │ │ │ │ ├── logger.go │ │ │ │ ├── logger_test.go │ │ │ │ ├── loggerutils │ │ │ │ │ ├── log_tag.go │ │ │ │ │ ├── log_tag_test.go │ │ │ │ │ ├── logfile.go │ │ │ │ │ └── multireader │ │ │ │ │ │ ├── multireader.go │ │ │ │ │ │ └── multireader_test.go │ │ │ │ ├── loginfo.go │ │ │ │ ├── plugin.go │ │ │ │ ├── plugin_unix.go │ │ │ │ ├── plugin_unsupported.go │ │ │ │ ├── proxy.go │ │ │ │ ├── ring.go │ │ │ │ ├── ring_test.go │ │ │ │ ├── splunk │ │ │ │ │ ├── splunk.go │ │ │ │ │ ├── splunk_test.go │ │ │ │ │ └── splunkhecmock_test.go │ │ │ │ ├── syslog │ │ │ │ │ ├── syslog.go │ │ │ │ │ └── syslog_test.go │ │ │ │ └── templates │ │ │ │ │ ├── templates.go │ │ │ │ │ └── templates_test.go │ │ │ ├── logs.go │ │ │ ├── logs_test.go │ │ │ ├── metrics.go │ │ │ ├── metrics_unix.go │ │ │ ├── metrics_unsupported.go │ │ │ ├── monitor.go │ │ │ ├── mounts.go │ │ │ ├── names.go │ │ │ ├── names │ │ │ │ └── names.go │ │ │ ├── network.go │ │ │ ├── network │ │ │ │ └── settings.go │ │ │ ├── oci_linux.go │ │ │ ├── oci_linux_test.go │ │ │ ├── oci_windows.go │ │ │ ├── pause.go │ │ │ ├── prune.go │ │ │ ├── reload.go │ │ │ ├── reload_test.go │ │ │ ├── reload_unix.go │ │ │ ├── reload_windows.go │ │ │ ├── rename.go │ │ │ ├── resize.go │ │ │ ├── restart.go │ │ │ ├── seccomp_disabled.go │ │ │ ├── seccomp_linux.go │ │ │ ├── seccomp_unsupported.go │ │ │ ├── secrets.go │ │ │ ├── secrets_linux.go │ │ │ ├── secrets_unsupported.go │ │ │ ├── secrets_windows.go │ │ │ ├── selinux_linux.go │ │ │ ├── selinux_unsupported.go │ │ │ ├── start.go │ │ │ ├── start_unix.go │ │ │ ├── start_windows.go │ │ │ ├── stats.go │ │ │ ├── stats │ │ │ │ ├── collector.go │ │ │ │ ├── collector_unix.go │ │ │ │ └── collector_windows.go │ │ │ ├── stats_collector.go │ │ │ ├── stats_unix.go │ │ │ ├── stats_windows.go │ │ │ ├── stop.go │ │ │ ├── testdata │ │ │ │ └── keyfile │ │ │ ├── top_unix.go │ │ │ ├── top_unix_test.go │ │ │ ├── top_windows.go │ │ │ ├── trustkey.go │ │ │ ├── trustkey_test.go │ │ │ ├── unpause.go │ │ │ ├── update.go │ │ │ ├── update_linux.go │ │ │ ├── update_windows.go │ │ │ ├── volumes.go │ │ │ ├── volumes_linux.go │ │ │ ├── volumes_linux_test.go │ │ │ ├── volumes_unit_test.go │ │ │ ├── volumes_unix.go │ │ │ ├── volumes_unix_test.go │ │ │ ├── volumes_windows.go │ │ │ ├── wait.go │ │ │ └── workdir.go │ │ ├── distribution │ │ │ ├── config.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── fixtures │ │ │ │ └── validate_manifest │ │ │ │ │ ├── bad_manifest │ │ │ │ │ ├── extra_data_manifest │ │ │ │ │ └── good_manifest │ │ │ ├── metadata │ │ │ │ ├── metadata.go │ │ │ │ ├── v1_id_service.go │ │ │ │ ├── v1_id_service_test.go │ │ │ │ ├── v2_metadata_service.go │ │ │ │ └── v2_metadata_service_test.go │ │ │ ├── pull.go │ │ │ ├── pull_v1.go │ │ │ ├── pull_v2.go │ │ │ ├── pull_v2_test.go │ │ │ ├── pull_v2_unix.go │ │ │ ├── pull_v2_windows.go │ │ │ ├── push.go │ │ │ ├── push_v1.go │ │ │ ├── push_v2.go │ │ │ ├── push_v2_test.go │ │ │ ├── registry.go │ │ │ ├── registry_unit_test.go │ │ │ ├── utils │ │ │ │ └── progress.go │ │ │ └── xfer │ │ │ │ ├── download.go │ │ │ │ ├── download_test.go │ │ │ │ ├── transfer.go │ │ │ │ ├── transfer_test.go │ │ │ │ ├── upload.go │ │ │ │ └── upload_test.go │ │ ├── dockerversion │ │ │ ├── useragent.go │ │ │ └── version_lib.go │ │ ├── docs │ │ │ ├── api │ │ │ │ ├── v1.18.md │ │ │ │ ├── v1.19.md │ │ │ │ ├── v1.20.md │ │ │ │ ├── v1.21.md │ │ │ │ ├── v1.22.md │ │ │ │ ├── v1.23.md │ │ │ │ ├── v1.24.md │ │ │ │ └── version-history.md │ │ │ ├── contributing │ │ │ │ ├── README.md │ │ │ │ ├── images │ │ │ │ │ ├── branch-sig.png │ │ │ │ │ ├── contributor-edit.png │ │ │ │ │ ├── copy_url.png │ │ │ │ │ ├── fork_docker.png │ │ │ │ │ ├── git_bash.png │ │ │ │ │ └── list_example.png │ │ │ │ ├── set-up-dev-env.md │ │ │ │ ├── set-up-git.md │ │ │ │ ├── software-req-win.md │ │ │ │ ├── software-required.md │ │ │ │ ├── test.md │ │ │ │ └── who-written-for.md │ │ │ └── static_files │ │ │ │ ├── contributors.png │ │ │ │ └── moby-project-logo.png │ │ ├── errdefs │ │ │ ├── defs.go │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ ├── helpers_test.go │ │ │ └── is.go │ │ ├── hack │ │ │ ├── README.md │ │ │ ├── ci │ │ │ │ ├── arm │ │ │ │ ├── experimental │ │ │ │ ├── janky │ │ │ │ ├── powerpc │ │ │ │ └── z │ │ │ ├── dind │ │ │ ├── dockerfile │ │ │ │ └── install │ │ │ │ │ ├── containerd.installer │ │ │ │ │ ├── dockercli.installer │ │ │ │ │ ├── gometalinter.installer │ │ │ │ │ ├── install.sh │ │ │ │ │ ├── proxy.installer │ │ │ │ │ ├── runc.installer │ │ │ │ │ ├── tini.installer │ │ │ │ │ ├── tomlv.installer │ │ │ │ │ └── vndr.installer │ │ │ ├── generate-authors.sh │ │ │ ├── generate-swagger-api.sh │ │ │ ├── integration-cli-on-swarm │ │ │ │ ├── README.md │ │ │ │ ├── agent │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── master │ │ │ │ │ │ ├── call.go │ │ │ │ │ │ ├── master.go │ │ │ │ │ │ ├── set.go │ │ │ │ │ │ └── set_test.go │ │ │ │ │ ├── types │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── vendor.conf │ │ │ │ │ └── worker │ │ │ │ │ │ ├── executor.go │ │ │ │ │ │ └── worker.go │ │ │ │ └── host │ │ │ │ │ ├── compose.go │ │ │ │ │ ├── dockercmd.go │ │ │ │ │ ├── enumerate.go │ │ │ │ │ ├── enumerate_test.go │ │ │ │ │ ├── host.go │ │ │ │ │ └── volume.go │ │ │ ├── make.ps1 │ │ │ ├── make.sh │ │ │ ├── make │ │ │ │ ├── .binary │ │ │ │ ├── .binary-setup │ │ │ │ ├── .detect-daemon-osarch │ │ │ │ ├── .ensure-emptyfs │ │ │ │ ├── .go-autogen │ │ │ │ ├── .go-autogen.ps1 │ │ │ │ ├── .integration-daemon-setup │ │ │ │ ├── .integration-daemon-start │ │ │ │ ├── .integration-daemon-stop │ │ │ │ ├── .integration-test-helpers │ │ │ │ ├── .resources-windows │ │ │ │ │ ├── common.rc │ │ │ │ │ ├── docker.exe.manifest │ │ │ │ │ ├── docker.ico │ │ │ │ │ ├── docker.png │ │ │ │ │ ├── docker.rc │ │ │ │ │ ├── dockerd.rc │ │ │ │ │ ├── event_messages.mc │ │ │ │ │ └── resources.go │ │ │ │ ├── README.md │ │ │ │ ├── binary │ │ │ │ ├── binary-daemon │ │ │ │ ├── build-integration-test-binary │ │ │ │ ├── cross │ │ │ │ ├── dynbinary │ │ │ │ ├── dynbinary-daemon │ │ │ │ ├── install-binary │ │ │ │ ├── run │ │ │ │ ├── test-docker-py │ │ │ │ ├── test-integration │ │ │ │ ├── test-integration-cli │ │ │ │ └── test-integration-shell │ │ │ ├── test │ │ │ │ ├── e2e-run.sh │ │ │ │ └── unit │ │ │ ├── validate │ │ │ │ ├── .swagger-yamllint │ │ │ │ ├── .validate │ │ │ │ ├── all │ │ │ │ ├── changelog-date-descending │ │ │ │ ├── changelog-well-formed │ │ │ │ ├── dco │ │ │ │ ├── default │ │ │ │ ├── default-seccomp │ │ │ │ ├── deprecate-integration-cli │ │ │ │ ├── gometalinter │ │ │ │ ├── gometalinter.json │ │ │ │ ├── pkg-imports │ │ │ │ ├── swagger │ │ │ │ ├── swagger-gen │ │ │ │ ├── test-imports │ │ │ │ ├── toml │ │ │ │ └── vendor │ │ │ └── vendor.sh │ │ ├── image │ │ │ ├── cache │ │ │ │ ├── cache.go │ │ │ │ ├── compare.go │ │ │ │ └── compare_test.go │ │ │ ├── fs.go │ │ │ ├── fs_test.go │ │ │ ├── image.go │ │ │ ├── image_test.go │ │ │ ├── rootfs.go │ │ │ ├── spec │ │ │ │ ├── README.md │ │ │ │ ├── v1.1.md │ │ │ │ ├── v1.2.md │ │ │ │ └── v1.md │ │ │ ├── store.go │ │ │ ├── store_test.go │ │ │ ├── tarexport │ │ │ │ ├── load.go │ │ │ │ ├── save.go │ │ │ │ └── tarexport.go │ │ │ └── v1 │ │ │ │ ├── imagev1.go │ │ │ │ └── imagev1_test.go │ │ ├── integration-cli │ │ │ ├── benchmark_test.go │ │ │ ├── check_test.go │ │ │ ├── checker │ │ │ │ └── checker.go │ │ │ ├── cli │ │ │ │ ├── build │ │ │ │ │ ├── build.go │ │ │ │ │ ├── fakecontext │ │ │ │ │ │ └── context.go │ │ │ │ │ ├── fakegit │ │ │ │ │ │ └── fakegit.go │ │ │ │ │ └── fakestorage │ │ │ │ │ │ ├── fixtures.go │ │ │ │ │ │ └── storage.go │ │ │ │ └── cli.go │ │ │ ├── daemon │ │ │ │ ├── daemon.go │ │ │ │ ├── daemon_swarm.go │ │ │ │ ├── daemon_unix.go │ │ │ │ └── daemon_windows.go │ │ │ ├── daemon_swarm_hack_test.go │ │ │ ├── docker_api_attach_test.go │ │ │ ├── docker_api_build_test.go │ │ │ ├── docker_api_containers_test.go │ │ │ ├── docker_api_containers_windows_test.go │ │ │ ├── docker_api_create_test.go │ │ │ ├── docker_api_exec_resize_test.go │ │ │ ├── docker_api_exec_test.go │ │ │ ├── docker_api_images_test.go │ │ │ ├── docker_api_inspect_test.go │ │ │ ├── docker_api_ipcmode_test.go │ │ │ ├── docker_api_logs_test.go │ │ │ ├── docker_api_network_test.go │ │ │ ├── docker_api_stats_test.go │ │ │ ├── docker_api_swarm_node_test.go │ │ │ ├── docker_api_swarm_service_test.go │ │ │ ├── docker_api_swarm_test.go │ │ │ ├── docker_api_test.go │ │ │ ├── docker_cli_attach_test.go │ │ │ ├── docker_cli_attach_unix_test.go │ │ │ ├── docker_cli_build_test.go │ │ │ ├── docker_cli_build_unix_test.go │ │ │ ├── docker_cli_by_digest_test.go │ │ │ ├── docker_cli_commit_test.go │ │ │ ├── docker_cli_config_create_test.go │ │ │ ├── docker_cli_cp_from_container_test.go │ │ │ ├── docker_cli_cp_test.go │ │ │ ├── docker_cli_cp_to_container_test.go │ │ │ ├── docker_cli_cp_to_container_unix_test.go │ │ │ ├── docker_cli_cp_utils_test.go │ │ │ ├── docker_cli_create_test.go │ │ │ ├── docker_cli_daemon_plugins_test.go │ │ │ ├── docker_cli_daemon_test.go │ │ │ ├── docker_cli_events_test.go │ │ │ ├── docker_cli_events_unix_test.go │ │ │ ├── docker_cli_exec_test.go │ │ │ ├── docker_cli_exec_unix_test.go │ │ │ ├── docker_cli_export_import_test.go │ │ │ ├── docker_cli_external_graphdriver_unix_test.go │ │ │ ├── docker_cli_external_volume_driver_unix_test.go │ │ │ ├── docker_cli_health_test.go │ │ │ ├── docker_cli_history_test.go │ │ │ ├── docker_cli_images_test.go │ │ │ ├── docker_cli_import_test.go │ │ │ ├── docker_cli_info_test.go │ │ │ ├── docker_cli_info_unix_test.go │ │ │ ├── docker_cli_inspect_test.go │ │ │ ├── docker_cli_links_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_netmode_test.go │ │ │ ├── docker_cli_network_unix_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_push_test.go │ │ │ ├── docker_cli_registry_user_agent_test.go │ │ │ ├── docker_cli_restart_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_service_create_test.go │ │ │ ├── docker_cli_service_health_test.go │ │ │ ├── docker_cli_service_logs_test.go │ │ │ ├── docker_cli_service_scale_test.go │ │ │ ├── docker_cli_service_update_test.go │ │ │ ├── docker_cli_sni_test.go │ │ │ ├── docker_cli_start_test.go │ │ │ ├── docker_cli_stats_test.go │ │ │ ├── docker_cli_swarm_test.go │ │ │ ├── docker_cli_swarm_unix_test.go │ │ │ ├── docker_cli_tag_test.go │ │ │ ├── docker_cli_top_test.go │ │ │ ├── docker_cli_update_unix_test.go │ │ │ ├── docker_cli_userns_test.go │ │ │ ├── docker_cli_v2_only_test.go │ │ │ ├── docker_cli_volume_test.go │ │ │ ├── docker_cli_wait_test.go │ │ │ ├── docker_deprecated_api_v124_test.go │ │ │ ├── docker_deprecated_api_v124_unix_test.go │ │ │ ├── docker_experimental_network_test.go │ │ │ ├── docker_hub_pull_suite_test.go │ │ │ ├── docker_utils_test.go │ │ │ ├── environment │ │ │ │ └── environment.go │ │ │ ├── events_utils_test.go │ │ │ ├── fixtures │ │ │ │ ├── auth │ │ │ │ │ └── docker-credential-shell-test │ │ │ │ ├── credentialspecs │ │ │ │ │ └── valid.json │ │ │ │ ├── deploy │ │ │ │ │ ├── default.yaml │ │ │ │ │ ├── remove.yaml │ │ │ │ │ └── secrets.yaml │ │ │ │ ├── https │ │ │ │ │ ├── ca.pem │ │ │ │ │ ├── client-cert.pem │ │ │ │ │ ├── client-key.pem │ │ │ │ │ ├── client-rogue-cert.pem │ │ │ │ │ ├── client-rogue-key.pem │ │ │ │ │ ├── server-cert.pem │ │ │ │ │ ├── server-key.pem │ │ │ │ │ ├── server-rogue-cert.pem │ │ │ │ │ └── server-rogue-key.pem │ │ │ │ ├── load │ │ │ │ │ ├── emptyLayer.tar │ │ │ │ │ └── frozen.go │ │ │ │ ├── notary │ │ │ │ │ ├── delgkey1.crt │ │ │ │ │ ├── delgkey1.key │ │ │ │ │ ├── delgkey2.crt │ │ │ │ │ ├── delgkey2.key │ │ │ │ │ ├── delgkey3.crt │ │ │ │ │ ├── delgkey3.key │ │ │ │ │ ├── delgkey4.crt │ │ │ │ │ ├── delgkey4.key │ │ │ │ │ ├── gen.sh │ │ │ │ │ └── localhost.cert │ │ │ │ ├── plugin │ │ │ │ │ ├── basic │ │ │ │ │ │ └── basic.go │ │ │ │ │ └── plugin.go │ │ │ │ ├── registry │ │ │ │ │ └── cert.pem │ │ │ │ └── secrets │ │ │ │ │ └── default │ │ │ ├── fixtures_linux_daemon_test.go │ │ │ ├── registry │ │ │ │ ├── registry.go │ │ │ │ ├── registry_mock.go │ │ │ │ └── requirement.go │ │ │ ├── request │ │ │ │ ├── npipe.go │ │ │ │ ├── npipe_windows.go │ │ │ │ └── request.go │ │ │ ├── requirement │ │ │ │ └── requirement.go │ │ │ ├── requirements_test.go │ │ │ ├── requirements_unix_test.go │ │ │ ├── test_vars_exec_test.go │ │ │ ├── test_vars_noexec_test.go │ │ │ ├── test_vars_noseccomp_test.go │ │ │ ├── test_vars_seccomp_test.go │ │ │ ├── test_vars_test.go │ │ │ ├── test_vars_unix_test.go │ │ │ ├── test_vars_windows_test.go │ │ │ └── utils_test.go │ │ ├── integration │ │ │ ├── build │ │ │ │ ├── build_test.go │ │ │ │ └── main_test.go │ │ │ ├── config │ │ │ │ ├── config_test.go │ │ │ │ └── main_test.go │ │ │ ├── container │ │ │ │ ├── copy_test.go │ │ │ │ ├── create_test.go │ │ │ │ ├── daemon_linux_test.go │ │ │ │ ├── diff_test.go │ │ │ │ ├── exec_test.go │ │ │ │ ├── export_test.go │ │ │ │ ├── health_test.go │ │ │ │ ├── inspect_test.go │ │ │ │ ├── kill_test.go │ │ │ │ ├── links_linux_test.go │ │ │ │ ├── logs_test.go │ │ │ │ ├── main_test.go │ │ │ │ ├── mounts_linux_test.go │ │ │ │ ├── nat_test.go │ │ │ │ ├── pause_test.go │ │ │ │ ├── ps_test.go │ │ │ │ ├── remove_test.go │ │ │ │ ├── rename_test.go │ │ │ │ ├── resize_test.go │ │ │ │ ├── restart_test.go │ │ │ │ ├── stats_test.go │ │ │ │ ├── stop_test.go │ │ │ │ ├── update_linux_test.go │ │ │ │ └── update_test.go │ │ │ ├── doc.go │ │ │ ├── image │ │ │ │ ├── commit_test.go │ │ │ │ ├── import_test.go │ │ │ │ ├── main_test.go │ │ │ │ └── remove_test.go │ │ │ ├── internal │ │ │ │ ├── container │ │ │ │ │ ├── container.go │ │ │ │ │ ├── exec.go │ │ │ │ │ ├── ops.go │ │ │ │ │ └── states.go │ │ │ │ ├── request │ │ │ │ │ └── client.go │ │ │ │ ├── requirement │ │ │ │ │ └── requirement.go │ │ │ │ └── swarm │ │ │ │ │ └── service.go │ │ │ ├── network │ │ │ │ ├── delete_test.go │ │ │ │ ├── inspect_test.go │ │ │ │ ├── macvlan_test.go │ │ │ │ ├── main_test.go │ │ │ │ └── service_test.go │ │ │ ├── plugin │ │ │ │ ├── authz │ │ │ │ │ ├── authz_plugin_test.go │ │ │ │ │ ├── authz_plugin_v2_test.go │ │ │ │ │ └── main_test.go │ │ │ │ ├── logging │ │ │ │ │ ├── cmd │ │ │ │ │ │ ├── cmd_test.go │ │ │ │ │ │ └── dummy │ │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ │ └── main_test.go │ │ │ │ │ ├── helpers_test.go │ │ │ │ │ ├── main_test.go │ │ │ │ │ └── validation_test.go │ │ │ │ ├── pkg_test.go │ │ │ │ └── volumes │ │ │ │ │ ├── cmd │ │ │ │ │ ├── cmd_test.go │ │ │ │ │ └── dummy │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ └── main_test.go │ │ │ │ │ ├── helpers_test.go │ │ │ │ │ ├── main_test.go │ │ │ │ │ └── mounts_test.go │ │ │ ├── secret │ │ │ │ ├── main_test.go │ │ │ │ └── secret_test.go │ │ │ ├── service │ │ │ │ ├── create_test.go │ │ │ │ ├── inspect_test.go │ │ │ │ ├── main_test.go │ │ │ │ └── network_test.go │ │ │ ├── session │ │ │ │ ├── main_test.go │ │ │ │ └── session_test.go │ │ │ ├── system │ │ │ │ ├── cgroupdriver_systemd_test.go │ │ │ │ ├── event_test.go │ │ │ │ ├── info_linux_test.go │ │ │ │ ├── info_test.go │ │ │ │ ├── login_test.go │ │ │ │ ├── main_test.go │ │ │ │ └── version_test.go │ │ │ ├── testdata │ │ │ │ └── https │ │ │ │ │ ├── ca.pem │ │ │ │ │ ├── client-cert.pem │ │ │ │ │ ├── client-key.pem │ │ │ │ │ ├── server-cert.pem │ │ │ │ │ └── server-key.pem │ │ │ └── volume │ │ │ │ ├── main_test.go │ │ │ │ └── volume_test.go │ │ ├── internal │ │ │ ├── test │ │ │ │ └── environment │ │ │ │ │ ├── clean.go │ │ │ │ │ ├── environment.go │ │ │ │ │ └── protect.go │ │ │ └── testutil │ │ │ │ ├── helpers.go │ │ │ │ ├── stringutils.go │ │ │ │ └── stringutils_test.go │ │ ├── layer │ │ │ ├── empty.go │ │ │ ├── empty_test.go │ │ │ ├── filestore.go │ │ │ ├── filestore_test.go │ │ │ ├── filestore_unix.go │ │ │ ├── filestore_windows.go │ │ │ ├── layer.go │ │ │ ├── layer_store.go │ │ │ ├── layer_store_windows.go │ │ │ ├── layer_test.go │ │ │ ├── layer_unix.go │ │ │ ├── layer_unix_test.go │ │ │ ├── layer_windows.go │ │ │ ├── migration.go │ │ │ ├── migration_test.go │ │ │ ├── mount_test.go │ │ │ ├── mounted_layer.go │ │ │ ├── ro_layer.go │ │ │ └── ro_layer_windows.go │ │ ├── libcontainerd │ │ │ ├── client_daemon.go │ │ │ ├── client_daemon_linux.go │ │ │ ├── client_daemon_windows.go │ │ │ ├── client_local_windows.go │ │ │ ├── errors.go │ │ │ ├── process_windows.go │ │ │ ├── queue.go │ │ │ ├── queue_test.go │ │ │ ├── remote_daemon.go │ │ │ ├── remote_daemon_linux.go │ │ │ ├── remote_daemon_options.go │ │ │ ├── remote_daemon_options_linux.go │ │ │ ├── remote_daemon_windows.go │ │ │ ├── remote_local.go │ │ │ ├── types.go │ │ │ ├── types_linux.go │ │ │ ├── types_windows.go │ │ │ ├── utils_linux.go │ │ │ ├── utils_windows.go │ │ │ └── utils_windows_test.go │ │ ├── migrate │ │ │ └── v1 │ │ │ │ ├── migratev1.go │ │ │ │ └── migratev1_test.go │ │ ├── oci │ │ │ ├── defaults.go │ │ │ ├── devices_linux.go │ │ │ ├── devices_unsupported.go │ │ │ └── namespaces.go │ │ ├── opts │ │ │ ├── env.go │ │ │ ├── env_test.go │ │ │ ├── hosts.go │ │ │ ├── hosts_test.go │ │ │ ├── hosts_unix.go │ │ │ ├── hosts_windows.go │ │ │ ├── ip.go │ │ │ ├── ip_test.go │ │ │ ├── opts.go │ │ │ ├── opts_test.go │ │ │ ├── opts_unix.go │ │ │ ├── opts_windows.go │ │ │ ├── quotedstring.go │ │ │ ├── quotedstring_test.go │ │ │ ├── runtime.go │ │ │ ├── ulimit.go │ │ │ └── ulimit_test.go │ │ ├── pkg │ │ │ ├── README.md │ │ │ ├── aaparser │ │ │ │ ├── aaparser.go │ │ │ │ └── aaparser_test.go │ │ │ ├── archive │ │ │ │ ├── README.md │ │ │ │ ├── archive.go │ │ │ │ ├── archive_linux.go │ │ │ │ ├── archive_linux_test.go │ │ │ │ ├── archive_other.go │ │ │ │ ├── archive_test.go │ │ │ │ ├── archive_unix.go │ │ │ │ ├── archive_unix_test.go │ │ │ │ ├── archive_windows.go │ │ │ │ ├── archive_windows_test.go │ │ │ │ ├── changes.go │ │ │ │ ├── changes_linux.go │ │ │ │ ├── changes_other.go │ │ │ │ ├── changes_posix_test.go │ │ │ │ ├── changes_test.go │ │ │ │ ├── changes_unix.go │ │ │ │ ├── changes_windows.go │ │ │ │ ├── copy.go │ │ │ │ ├── copy_unix.go │ │ │ │ ├── copy_unix_test.go │ │ │ │ ├── copy_windows.go │ │ │ │ ├── diff.go │ │ │ │ ├── diff_test.go │ │ │ │ ├── example_changes.go │ │ │ │ ├── testdata │ │ │ │ │ └── broken.tar │ │ │ │ ├── time_linux.go │ │ │ │ ├── time_unsupported.go │ │ │ │ ├── utils_test.go │ │ │ │ ├── whiteouts.go │ │ │ │ ├── wrap.go │ │ │ │ └── wrap_test.go │ │ │ ├── authorization │ │ │ │ ├── api.go │ │ │ │ ├── api_test.go │ │ │ │ ├── authz.go │ │ │ │ ├── authz_unix_test.go │ │ │ │ ├── middleware.go │ │ │ │ ├── middleware_test.go │ │ │ │ ├── middleware_unix_test.go │ │ │ │ ├── plugin.go │ │ │ │ └── response.go │ │ │ ├── broadcaster │ │ │ │ ├── unbuffered.go │ │ │ │ └── unbuffered_test.go │ │ │ ├── chrootarchive │ │ │ │ ├── archive.go │ │ │ │ ├── archive_test.go │ │ │ │ ├── archive_unix.go │ │ │ │ ├── archive_windows.go │ │ │ │ ├── chroot_linux.go │ │ │ │ ├── chroot_unix.go │ │ │ │ ├── diff.go │ │ │ │ ├── diff_unix.go │ │ │ │ ├── diff_windows.go │ │ │ │ ├── init_unix.go │ │ │ │ └── init_windows.go │ │ │ ├── containerfs │ │ │ │ ├── archiver.go │ │ │ │ ├── containerfs.go │ │ │ │ ├── containerfs_unix.go │ │ │ │ └── containerfs_windows.go │ │ │ ├── devicemapper │ │ │ │ ├── devmapper.go │ │ │ │ ├── devmapper_log.go │ │ │ │ ├── devmapper_wrapper.go │ │ │ │ ├── devmapper_wrapper_deferred_remove.go │ │ │ │ ├── devmapper_wrapper_dynamic.go │ │ │ │ ├── devmapper_wrapper_no_deferred_remove.go │ │ │ │ ├── ioctl.go │ │ │ │ └── log.go │ │ │ ├── directory │ │ │ │ ├── directory.go │ │ │ │ ├── directory_test.go │ │ │ │ ├── directory_unix.go │ │ │ │ └── directory_windows.go │ │ │ ├── discovery │ │ │ │ ├── README.md │ │ │ │ ├── backends.go │ │ │ │ ├── discovery.go │ │ │ │ ├── discovery_test.go │ │ │ │ ├── entry.go │ │ │ │ ├── file │ │ │ │ │ ├── file.go │ │ │ │ │ └── file_test.go │ │ │ │ ├── generator.go │ │ │ │ ├── generator_test.go │ │ │ │ ├── kv │ │ │ │ │ ├── kv.go │ │ │ │ │ └── kv_test.go │ │ │ │ ├── memory │ │ │ │ │ ├── memory.go │ │ │ │ │ └── memory_test.go │ │ │ │ └── nodes │ │ │ │ │ ├── nodes.go │ │ │ │ │ └── nodes_test.go │ │ │ ├── dmesg │ │ │ │ ├── dmesg_linux.go │ │ │ │ └── dmesg_linux_test.go │ │ │ ├── filenotify │ │ │ │ ├── filenotify.go │ │ │ │ ├── fsnotify.go │ │ │ │ ├── poller.go │ │ │ │ └── poller_test.go │ │ │ ├── fileutils │ │ │ │ ├── fileutils.go │ │ │ │ ├── fileutils_darwin.go │ │ │ │ ├── fileutils_test.go │ │ │ │ ├── fileutils_unix.go │ │ │ │ └── fileutils_windows.go │ │ │ ├── fsutils │ │ │ │ ├── fsutils_linux.go │ │ │ │ └── fsutils_linux_test.go │ │ │ ├── homedir │ │ │ │ ├── homedir_linux.go │ │ │ │ ├── homedir_others.go │ │ │ │ ├── homedir_test.go │ │ │ │ ├── homedir_unix.go │ │ │ │ └── homedir_windows.go │ │ │ ├── idtools │ │ │ │ ├── idtools.go │ │ │ │ ├── idtools_unix.go │ │ │ │ ├── idtools_unix_test.go │ │ │ │ ├── idtools_windows.go │ │ │ │ ├── usergroupadd_linux.go │ │ │ │ ├── usergroupadd_unsupported.go │ │ │ │ └── utils_unix.go │ │ │ ├── ioutils │ │ │ │ ├── buffer.go │ │ │ │ ├── buffer_test.go │ │ │ │ ├── bytespipe.go │ │ │ │ ├── bytespipe_test.go │ │ │ │ ├── fswriters.go │ │ │ │ ├── fswriters_test.go │ │ │ │ ├── readers.go │ │ │ │ ├── readers_test.go │ │ │ │ ├── temp_unix.go │ │ │ │ ├── temp_windows.go │ │ │ │ ├── writeflusher.go │ │ │ │ ├── writers.go │ │ │ │ └── writers_test.go │ │ │ ├── jsonmessage │ │ │ │ ├── jsonmessage.go │ │ │ │ └── jsonmessage_test.go │ │ │ ├── locker │ │ │ │ ├── README.md │ │ │ │ ├── locker.go │ │ │ │ └── locker_test.go │ │ │ ├── longpath │ │ │ │ ├── longpath.go │ │ │ │ └── longpath_test.go │ │ │ ├── loopback │ │ │ │ ├── attach_loopback.go │ │ │ │ ├── ioctl.go │ │ │ │ ├── loop_wrapper.go │ │ │ │ └── loopback.go │ │ │ ├── mount │ │ │ │ ├── flags.go │ │ │ │ ├── flags_freebsd.go │ │ │ │ ├── flags_linux.go │ │ │ │ ├── flags_unsupported.go │ │ │ │ ├── mount.go │ │ │ │ ├── mount_unix_test.go │ │ │ │ ├── mounter_freebsd.go │ │ │ │ ├── mounter_linux.go │ │ │ │ ├── mounter_linux_test.go │ │ │ │ ├── mounter_unsupported.go │ │ │ │ ├── mountinfo.go │ │ │ │ ├── mountinfo_freebsd.go │ │ │ │ ├── mountinfo_linux.go │ │ │ │ ├── mountinfo_linux_test.go │ │ │ │ ├── mountinfo_unsupported.go │ │ │ │ ├── mountinfo_windows.go │ │ │ │ ├── sharedsubtree_linux.go │ │ │ │ └── sharedsubtree_linux_test.go │ │ │ ├── namesgenerator │ │ │ │ ├── cmd │ │ │ │ │ └── names-generator │ │ │ │ │ │ └── main.go │ │ │ │ ├── names-generator.go │ │ │ │ └── names-generator_test.go │ │ │ ├── parsers │ │ │ │ ├── kernel │ │ │ │ │ ├── kernel.go │ │ │ │ │ ├── kernel_darwin.go │ │ │ │ │ ├── kernel_unix.go │ │ │ │ │ ├── kernel_unix_test.go │ │ │ │ │ ├── kernel_windows.go │ │ │ │ │ ├── uname_linux.go │ │ │ │ │ ├── uname_solaris.go │ │ │ │ │ └── uname_unsupported.go │ │ │ │ ├── operatingsystem │ │ │ │ │ ├── operatingsystem_linux.go │ │ │ │ │ ├── operatingsystem_unix.go │ │ │ │ │ ├── operatingsystem_unix_test.go │ │ │ │ │ └── operatingsystem_windows.go │ │ │ │ ├── parsers.go │ │ │ │ └── parsers_test.go │ │ │ ├── pidfile │ │ │ │ ├── pidfile.go │ │ │ │ ├── pidfile_darwin.go │ │ │ │ ├── pidfile_test.go │ │ │ │ ├── pidfile_unix.go │ │ │ │ └── pidfile_windows.go │ │ │ ├── platform │ │ │ │ ├── architecture_linux.go │ │ │ │ ├── architecture_unix.go │ │ │ │ ├── architecture_windows.go │ │ │ │ └── platform.go │ │ │ ├── plugingetter │ │ │ │ └── getter.go │ │ │ ├── plugins │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── discovery.go │ │ │ │ ├── discovery_test.go │ │ │ │ ├── discovery_unix.go │ │ │ │ ├── discovery_unix_test.go │ │ │ │ ├── discovery_windows.go │ │ │ │ ├── errors.go │ │ │ │ ├── plugin_test.go │ │ │ │ ├── pluginrpc-gen │ │ │ │ │ ├── README.md │ │ │ │ │ ├── fixtures │ │ │ │ │ │ ├── foo.go │ │ │ │ │ │ └── otherfixture │ │ │ │ │ │ │ └── spaceship.go │ │ │ │ │ ├── main.go │ │ │ │ │ ├── parser.go │ │ │ │ │ ├── parser_test.go │ │ │ │ │ └── template.go │ │ │ │ ├── plugins.go │ │ │ │ ├── plugins_unix.go │ │ │ │ ├── plugins_windows.go │ │ │ │ └── transport │ │ │ │ │ ├── http.go │ │ │ │ │ ├── http_test.go │ │ │ │ │ └── transport.go │ │ │ ├── pools │ │ │ │ ├── pools.go │ │ │ │ └── pools_test.go │ │ │ ├── progress │ │ │ │ ├── progress.go │ │ │ │ ├── progressreader.go │ │ │ │ └── progressreader_test.go │ │ │ ├── pubsub │ │ │ │ ├── publisher.go │ │ │ │ └── publisher_test.go │ │ │ ├── reexec │ │ │ │ ├── README.md │ │ │ │ ├── command_linux.go │ │ │ │ ├── command_unix.go │ │ │ │ ├── command_unsupported.go │ │ │ │ ├── command_windows.go │ │ │ │ ├── reexec.go │ │ │ │ └── reexec_test.go │ │ │ ├── signal │ │ │ │ ├── README.md │ │ │ │ ├── signal.go │ │ │ │ ├── signal_darwin.go │ │ │ │ ├── signal_freebsd.go │ │ │ │ ├── signal_linux.go │ │ │ │ ├── signal_linux_test.go │ │ │ │ ├── signal_test.go │ │ │ │ ├── signal_unix.go │ │ │ │ ├── signal_unsupported.go │ │ │ │ ├── signal_windows.go │ │ │ │ ├── testfiles │ │ │ │ │ └── main.go │ │ │ │ ├── trap.go │ │ │ │ └── trap_linux_test.go │ │ │ ├── stdcopy │ │ │ │ ├── stdcopy.go │ │ │ │ └── stdcopy_test.go │ │ │ ├── streamformatter │ │ │ │ ├── streamformatter.go │ │ │ │ ├── streamformatter_test.go │ │ │ │ ├── streamwriter.go │ │ │ │ └── streamwriter_test.go │ │ │ ├── stringid │ │ │ │ ├── README.md │ │ │ │ ├── stringid.go │ │ │ │ └── stringid_test.go │ │ │ ├── symlink │ │ │ │ ├── LICENSE.APACHE │ │ │ │ ├── LICENSE.BSD │ │ │ │ ├── README.md │ │ │ │ ├── fs.go │ │ │ │ ├── fs_unix.go │ │ │ │ ├── fs_unix_test.go │ │ │ │ └── fs_windows.go │ │ │ ├── sysinfo │ │ │ │ ├── README.md │ │ │ │ ├── numcpu.go │ │ │ │ ├── numcpu_linux.go │ │ │ │ ├── numcpu_windows.go │ │ │ │ ├── sysinfo.go │ │ │ │ ├── sysinfo_linux.go │ │ │ │ ├── sysinfo_linux_test.go │ │ │ │ ├── sysinfo_test.go │ │ │ │ ├── sysinfo_unix.go │ │ │ │ └── sysinfo_windows.go │ │ │ ├── system │ │ │ │ ├── chtimes.go │ │ │ │ ├── chtimes_test.go │ │ │ │ ├── chtimes_unix.go │ │ │ │ ├── chtimes_unix_test.go │ │ │ │ ├── chtimes_windows.go │ │ │ │ ├── chtimes_windows_test.go │ │ │ │ ├── errors.go │ │ │ │ ├── exitcode.go │ │ │ │ ├── filesys.go │ │ │ │ ├── filesys_windows.go │ │ │ │ ├── init.go │ │ │ │ ├── init_unix.go │ │ │ │ ├── init_windows.go │ │ │ │ ├── lcow.go │ │ │ │ ├── lcow_unix.go │ │ │ │ ├── lcow_windows.go │ │ │ │ ├── lstat_unix.go │ │ │ │ ├── lstat_unix_test.go │ │ │ │ ├── lstat_windows.go │ │ │ │ ├── meminfo.go │ │ │ │ ├── meminfo_linux.go │ │ │ │ ├── meminfo_unix_test.go │ │ │ │ ├── meminfo_unsupported.go │ │ │ │ ├── meminfo_windows.go │ │ │ │ ├── mknod.go │ │ │ │ ├── mknod_windows.go │ │ │ │ ├── path.go │ │ │ │ ├── path_windows_test.go │ │ │ │ ├── process_unix.go │ │ │ │ ├── process_windows.go │ │ │ │ ├── rm.go │ │ │ │ ├── rm_test.go │ │ │ │ ├── stat_darwin.go │ │ │ │ ├── stat_freebsd.go │ │ │ │ ├── stat_linux.go │ │ │ │ ├── stat_openbsd.go │ │ │ │ ├── stat_solaris.go │ │ │ │ ├── stat_unix.go │ │ │ │ ├── stat_unix_test.go │ │ │ │ ├── stat_windows.go │ │ │ │ ├── syscall_unix.go │ │ │ │ ├── syscall_windows.go │ │ │ │ ├── syscall_windows_test.go │ │ │ │ ├── umask.go │ │ │ │ ├── umask_windows.go │ │ │ │ ├── utimes_freebsd.go │ │ │ │ ├── utimes_linux.go │ │ │ │ ├── utimes_unix_test.go │ │ │ │ ├── utimes_unsupported.go │ │ │ │ ├── xattrs_linux.go │ │ │ │ └── xattrs_unsupported.go │ │ │ ├── tailfile │ │ │ │ ├── tailfile.go │ │ │ │ └── tailfile_test.go │ │ │ ├── tarsum │ │ │ │ ├── builder_context.go │ │ │ │ ├── builder_context_test.go │ │ │ │ ├── fileinfosums.go │ │ │ │ ├── fileinfosums_test.go │ │ │ │ ├── tarsum.go │ │ │ │ ├── tarsum_spec.md │ │ │ │ ├── tarsum_test.go │ │ │ │ ├── testdata │ │ │ │ │ ├── 46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457 │ │ │ │ │ │ ├── json │ │ │ │ │ │ └── layer.tar │ │ │ │ │ ├── 511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158 │ │ │ │ │ │ ├── json │ │ │ │ │ │ └── layer.tar │ │ │ │ │ ├── collision │ │ │ │ │ │ ├── collision-0.tar │ │ │ │ │ │ ├── collision-1.tar │ │ │ │ │ │ ├── collision-2.tar │ │ │ │ │ │ └── collision-3.tar │ │ │ │ │ └── xattr │ │ │ │ │ │ ├── json │ │ │ │ │ │ └── layer.tar │ │ │ │ ├── versioning.go │ │ │ │ ├── versioning_test.go │ │ │ │ └── writercloser.go │ │ │ ├── term │ │ │ │ ├── ascii.go │ │ │ │ ├── ascii_test.go │ │ │ │ ├── proxy.go │ │ │ │ ├── proxy_test.go │ │ │ │ ├── tc.go │ │ │ │ ├── term.go │ │ │ │ ├── term_linux_test.go │ │ │ │ ├── term_windows.go │ │ │ │ ├── termios_bsd.go │ │ │ │ ├── termios_linux.go │ │ │ │ ├── windows │ │ │ │ │ ├── ansi_reader.go │ │ │ │ │ ├── ansi_writer.go │ │ │ │ │ ├── console.go │ │ │ │ │ ├── windows.go │ │ │ │ │ └── windows_test.go │ │ │ │ └── winsize.go │ │ │ ├── truncindex │ │ │ │ ├── truncindex.go │ │ │ │ └── truncindex_test.go │ │ │ ├── urlutil │ │ │ │ ├── urlutil.go │ │ │ │ └── urlutil_test.go │ │ │ └── useragent │ │ │ │ ├── README.md │ │ │ │ ├── useragent.go │ │ │ │ └── useragent_test.go │ │ ├── plugin │ │ │ ├── backend_linux.go │ │ │ ├── backend_linux_test.go │ │ │ ├── backend_unsupported.go │ │ │ ├── blobstore.go │ │ │ ├── defs.go │ │ │ ├── errors.go │ │ │ ├── events.go │ │ │ ├── executor │ │ │ │ └── containerd │ │ │ │ │ ├── containerd.go │ │ │ │ │ └── containerd_test.go │ │ │ ├── manager.go │ │ │ ├── manager_linux.go │ │ │ ├── manager_linux_test.go │ │ │ ├── manager_test.go │ │ │ ├── manager_windows.go │ │ │ ├── store.go │ │ │ ├── store_test.go │ │ │ └── v2 │ │ │ │ ├── plugin.go │ │ │ │ ├── plugin_linux.go │ │ │ │ ├── plugin_unsupported.go │ │ │ │ ├── settable.go │ │ │ │ └── settable_test.go │ │ ├── poule.yml │ │ ├── profiles │ │ │ ├── apparmor │ │ │ │ ├── apparmor.go │ │ │ │ └── template.go │ │ │ └── seccomp │ │ │ │ ├── default.json │ │ │ │ ├── fixtures │ │ │ │ └── example.json │ │ │ │ ├── generate.go │ │ │ │ ├── seccomp.go │ │ │ │ ├── seccomp_default.go │ │ │ │ ├── seccomp_test.go │ │ │ │ └── seccomp_unsupported.go │ │ ├── project │ │ │ ├── ARM.md │ │ │ ├── BRANCHES-AND-TAGS.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── GOVERNANCE.md │ │ │ ├── IRC-ADMINISTRATION.md │ │ │ ├── ISSUE-TRIAGE.md │ │ │ ├── PACKAGE-REPO-MAINTENANCE.md │ │ │ ├── PACKAGERS.md │ │ │ ├── PATCH-RELEASES.md │ │ │ ├── PRINCIPLES.md │ │ │ ├── README.md │ │ │ ├── RELEASE-CHECKLIST.md │ │ │ ├── RELEASE-PROCESS.md │ │ │ ├── REVIEWING.md │ │ │ └── TOOLS.md │ │ ├── reference │ │ │ ├── errors.go │ │ │ ├── store.go │ │ │ └── store_test.go │ │ ├── registry │ │ │ ├── auth.go │ │ │ ├── auth_test.go │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── config_unix.go │ │ │ ├── config_windows.go │ │ │ ├── endpoint_test.go │ │ │ ├── endpoint_v1.go │ │ │ ├── errors.go │ │ │ ├── registry.go │ │ │ ├── registry_mock_test.go │ │ │ ├── registry_test.go │ │ │ ├── resumable │ │ │ │ ├── resumablerequestreader.go │ │ │ │ └── resumablerequestreader_test.go │ │ │ ├── service.go │ │ │ ├── service_v1.go │ │ │ ├── service_v1_test.go │ │ │ ├── service_v2.go │ │ │ ├── session.go │ │ │ └── types.go │ │ ├── reports │ │ │ ├── 2017-05-01.md │ │ │ ├── 2017-05-08.md │ │ │ ├── 2017-05-15.md │ │ │ ├── 2017-06-05.md │ │ │ ├── 2017-06-12.md │ │ │ ├── 2017-06-26.md │ │ │ └── builder │ │ │ │ ├── 2017-05-01.md │ │ │ │ ├── 2017-05-08.md │ │ │ │ ├── 2017-05-15.md │ │ │ │ ├── 2017-05-22.md │ │ │ │ ├── 2017-05-29.md │ │ │ │ ├── 2017-06-05.md │ │ │ │ ├── 2017-06-12.md │ │ │ │ ├── 2017-06-26.md │ │ │ │ ├── 2017-07-10.md │ │ │ │ └── 2017-07-17.md │ │ ├── restartmanager │ │ │ ├── restartmanager.go │ │ │ └── restartmanager_test.go │ │ ├── runconfig │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── config_unix.go │ │ │ ├── config_windows.go │ │ │ ├── errors.go │ │ │ ├── fixtures │ │ │ │ ├── unix │ │ │ │ │ ├── container_config_1_14.json │ │ │ │ │ ├── container_config_1_17.json │ │ │ │ │ ├── container_config_1_19.json │ │ │ │ │ ├── container_hostconfig_1_14.json │ │ │ │ │ └── container_hostconfig_1_19.json │ │ │ │ └── windows │ │ │ │ │ └── container_config_1_19.json │ │ │ ├── hostconfig.go │ │ │ ├── hostconfig_test.go │ │ │ ├── hostconfig_unix.go │ │ │ ├── hostconfig_windows.go │ │ │ ├── hostconfig_windows_test.go │ │ │ └── opts │ │ │ │ └── parse.go │ │ ├── vendor.conf │ │ └── volume │ │ │ ├── drivers │ │ │ ├── adapter.go │ │ │ ├── extpoint.go │ │ │ ├── extpoint_test.go │ │ │ ├── proxy.go │ │ │ └── proxy_test.go │ │ │ ├── lcow_parser.go │ │ │ ├── linux_parser.go │ │ │ ├── local │ │ │ ├── local.go │ │ │ ├── local_test.go │ │ │ ├── local_unix.go │ │ │ └── local_windows.go │ │ │ ├── parser.go │ │ │ ├── store │ │ │ ├── db.go │ │ │ ├── db_test.go │ │ │ ├── errors.go │ │ │ ├── restore.go │ │ │ ├── restore_test.go │ │ │ ├── store.go │ │ │ ├── store_test.go │ │ │ ├── store_unix.go │ │ │ └── store_windows.go │ │ │ ├── testutils │ │ │ └── testutils.go │ │ │ ├── validate.go │ │ │ ├── validate_test.go │ │ │ ├── validate_unix_test.go │ │ │ ├── validate_windows_test.go │ │ │ ├── volume.go │ │ │ ├── volume_copy.go │ │ │ ├── volume_test.go │ │ │ ├── volume_unix.go │ │ │ ├── volume_windows.go │ │ │ └── windows_parser.go │ ├── go-connections │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── circle.yml │ │ ├── doc.go │ │ ├── nat │ │ │ ├── nat.go │ │ │ ├── nat_test.go │ │ │ ├── parse.go │ │ │ ├── parse_test.go │ │ │ ├── sort.go │ │ │ └── sort_test.go │ │ ├── proxy │ │ │ ├── logger.go │ │ │ ├── network_proxy_test.go │ │ │ ├── proxy.go │ │ │ ├── stub_proxy.go │ │ │ ├── tcp_proxy.go │ │ │ └── udp_proxy.go │ │ ├── sockets │ │ │ ├── README.md │ │ │ ├── inmem_socket.go │ │ │ ├── inmem_socket_test.go │ │ │ ├── proxy.go │ │ │ ├── sockets.go │ │ │ ├── sockets_unix.go │ │ │ ├── sockets_windows.go │ │ │ ├── tcp_socket.go │ │ │ └── unix_socket.go │ │ └── tlsconfig │ │ │ ├── certpool_go17.go │ │ │ ├── certpool_other.go │ │ │ ├── config.go │ │ │ ├── config_client_ciphers.go │ │ │ ├── config_legacy_client_ciphers.go │ │ │ ├── config_test.go │ │ │ └── fixtures │ │ │ ├── cert.pem │ │ │ ├── cert_of_encrypted_key.pem │ │ │ ├── encrypted_key.pem │ │ │ ├── key.pem │ │ │ └── multi.pem │ └── go-units │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── circle.yml │ │ ├── duration.go │ │ ├── duration_test.go │ │ ├── size.go │ │ ├── size_test.go │ │ ├── ulimit.go │ │ └── ulimit_test.go ├── dustin │ └── go-humanize │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── big.go │ │ ├── bigbytes.go │ │ ├── bigbytes_test.go │ │ ├── bytes.go │ │ ├── bytes_test.go │ │ ├── comma.go │ │ ├── comma_test.go │ │ ├── commaf.go │ │ ├── commaf_test.go │ │ ├── common_test.go │ │ ├── english │ │ ├── words.go │ │ └── words_test.go │ │ ├── ftoa.go │ │ ├── ftoa_test.go │ │ ├── humanize.go │ │ ├── number.go │ │ ├── number_test.go │ │ ├── ordinals.go │ │ ├── ordinals_test.go │ │ ├── si.go │ │ ├── si_test.go │ │ ├── times.go │ │ └── times_test.go ├── fsouza │ └── go-dockerclient │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── DOCKER-LICENSE │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.markdown │ │ ├── appveyor.yml │ │ ├── auth.go │ │ ├── auth_test.go │ │ ├── build_test.go │ │ ├── change.go │ │ ├── change_test.go │ │ ├── client.go │ │ ├── client_stress_test.go │ │ ├── client_test.go │ │ ├── client_unix.go │ │ ├── client_unix_test.go │ │ ├── client_windows.go │ │ ├── client_windows_test.go │ │ ├── container.go │ │ ├── container_test.go │ │ ├── container_unix_test.go │ │ ├── distribution.go │ │ ├── distribution_test.go │ │ ├── env.go │ │ ├── env_test.go │ │ ├── event.go │ │ ├── event_test.go │ │ ├── example_test.go │ │ ├── exec.go │ │ ├── exec_test.go │ │ ├── image.go │ │ ├── image_test.go │ │ ├── integration_test.go │ │ ├── misc.go │ │ ├── misc_test.go │ │ ├── network.go │ │ ├── network_test.go │ │ ├── plugin.go │ │ ├── plugins_test.go │ │ ├── signal.go │ │ ├── swarm.go │ │ ├── swarm_configs.go │ │ ├── swarm_configs_test.go │ │ ├── swarm_node.go │ │ ├── swarm_node_test.go │ │ ├── swarm_secrets.go │ │ ├── swarm_secrets_test.go │ │ ├── swarm_service.go │ │ ├── swarm_service_test.go │ │ ├── swarm_task.go │ │ ├── swarm_task_test.go │ │ ├── swarm_test.go │ │ ├── tar.go │ │ ├── testing │ │ ├── data │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ ├── barfile │ │ │ ├── ca.pem │ │ │ ├── cert.pem │ │ │ ├── container.tar │ │ │ ├── dockerfile.tar │ │ │ ├── foofile │ │ │ ├── key.pem │ │ │ ├── server.pem │ │ │ └── serverkey.pem │ │ ├── server.go │ │ ├── server_test.go │ │ ├── swarm.go │ │ └── swarm_test.go │ │ ├── tls.go │ │ ├── travis-scripts │ │ ├── install-docker.bash │ │ └── run-tests.bash │ │ ├── volume.go │ │ └── volume_test.go ├── getsentry │ └── raven-go │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client.go │ │ ├── client_test.go │ │ ├── docs │ │ ├── Makefile │ │ ├── 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 ├── gogo │ └── protobuf │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── GOLANG_CONTRIBUTORS │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README │ │ ├── Readme.md │ │ ├── _conformance │ │ ├── Makefile │ │ ├── conformance.go │ │ └── conformance_proto │ │ │ ├── conformance.pb.go │ │ │ └── conformance.proto │ │ ├── bench.md │ │ ├── codec │ │ ├── codec.go │ │ └── codec_test.go │ │ ├── custom_types.md │ │ ├── extensions.md │ │ ├── gogoproto │ │ ├── Makefile │ │ ├── doc.go │ │ ├── gogo.pb.go │ │ ├── gogo.pb.golden │ │ ├── gogo.proto │ │ └── helper.go │ │ ├── gogoreplace │ │ └── main.go │ │ ├── install-protobuf.sh │ │ ├── io │ │ ├── full.go │ │ ├── io.go │ │ ├── io_test.go │ │ ├── uint32.go │ │ ├── uint32_test.go │ │ └── varint.go │ │ ├── jsonpb │ │ ├── jsonpb.go │ │ ├── jsonpb_test.go │ │ └── jsonpb_test_proto │ │ │ ├── Makefile │ │ │ ├── bytes.go │ │ │ ├── more_test_objects.pb.go │ │ │ ├── more_test_objects.proto │ │ │ ├── test_objects.pb.go │ │ │ └── test_objects.proto │ │ ├── plugin │ │ ├── compare │ │ │ ├── compare.go │ │ │ └── comparetest.go │ │ ├── defaultcheck │ │ │ └── defaultcheck.go │ │ ├── description │ │ │ ├── description.go │ │ │ └── descriptiontest.go │ │ ├── embedcheck │ │ │ └── embedcheck.go │ │ ├── enumstringer │ │ │ └── enumstringer.go │ │ ├── equal │ │ │ ├── equal.go │ │ │ └── equaltest.go │ │ ├── face │ │ │ ├── face.go │ │ │ └── facetest.go │ │ ├── gostring │ │ │ ├── gostring.go │ │ │ └── gostringtest.go │ │ ├── marshalto │ │ │ └── marshalto.go │ │ ├── oneofcheck │ │ │ └── oneofcheck.go │ │ ├── populate │ │ │ └── populate.go │ │ ├── size │ │ │ ├── size.go │ │ │ └── sizetest.go │ │ ├── stringer │ │ │ ├── stringer.go │ │ │ └── stringertest.go │ │ ├── testgen │ │ │ └── testgen.go │ │ ├── union │ │ │ ├── union.go │ │ │ └── uniontest.go │ │ └── unmarshal │ │ │ └── unmarshal.go │ │ ├── proto │ │ ├── Makefile │ │ ├── all_test.go │ │ ├── any_test.go │ │ ├── clone.go │ │ ├── clone_test.go │ │ ├── decode.go │ │ ├── decode_gogo.go │ │ ├── decode_test.go │ │ ├── discard.go │ │ ├── duration.go │ │ ├── duration_gogo.go │ │ ├── encode.go │ │ ├── encode_gogo.go │ │ ├── encode_test.go │ │ ├── equal.go │ │ ├── equal_test.go │ │ ├── extensions.go │ │ ├── extensions_gogo.go │ │ ├── extensions_test.go │ │ ├── lib.go │ │ ├── lib_gogo.go │ │ ├── map_test.go │ │ ├── message_set.go │ │ ├── message_set_test.go │ │ ├── pointer_reflect.go │ │ ├── pointer_reflect_gogo.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_gogo.go │ │ ├── properties.go │ │ ├── properties_gogo.go │ │ ├── proto3_proto │ │ │ ├── proto3.pb.go │ │ │ └── proto3.proto │ │ ├── proto3_test.go │ │ ├── size2_test.go │ │ ├── size_test.go │ │ ├── skip_gogo.go │ │ ├── testdata │ │ │ ├── Makefile │ │ │ ├── golden_test.go │ │ │ ├── test.pb.go │ │ │ ├── test.pb.go.golden │ │ │ └── test.proto │ │ ├── text.go │ │ ├── text_gogo.go │ │ ├── text_parser.go │ │ ├── text_parser_test.go │ │ ├── text_test.go │ │ ├── timestamp.go │ │ └── timestamp_gogo.go │ │ ├── protobuf │ │ ├── Makefile │ │ └── google │ │ │ └── protobuf │ │ │ ├── any.proto │ │ │ ├── compiler │ │ │ └── plugin.proto │ │ │ ├── descriptor.proto │ │ │ ├── duration.proto │ │ │ ├── empty.proto │ │ │ ├── field_mask.proto │ │ │ ├── struct.proto │ │ │ ├── timestamp.proto │ │ │ └── wrappers.proto │ │ ├── protoc-gen-combo │ │ └── combo.go │ │ ├── protoc-gen-gofast │ │ └── main.go │ │ ├── protoc-gen-gogo │ │ ├── Makefile │ │ ├── descriptor │ │ │ ├── Makefile │ │ │ ├── descriptor.go │ │ │ ├── descriptor.pb.go │ │ │ ├── descriptor_gostring.gen.go │ │ │ ├── descriptor_test.go │ │ │ └── helper.go │ │ ├── doc.go │ │ ├── generator │ │ │ ├── generator.go │ │ │ ├── helper.go │ │ │ └── name_test.go │ │ ├── grpc │ │ │ └── grpc.go │ │ ├── main.go │ │ ├── plugin │ │ │ ├── Makefile │ │ │ └── plugin.pb.go │ │ └── testdata │ │ │ ├── Makefile │ │ │ ├── extension_base.proto │ │ │ ├── extension_extra.proto │ │ │ ├── extension_test.go │ │ │ ├── extension_user.proto │ │ │ ├── grpc.proto │ │ │ ├── imp.pb.go.golden │ │ │ ├── imp.proto │ │ │ ├── imp2.proto │ │ │ ├── imp3.proto │ │ │ ├── main_test.go │ │ │ ├── multi │ │ │ ├── .gitignore │ │ │ ├── multi1.proto │ │ │ ├── multi2.proto │ │ │ └── multi3.proto │ │ │ ├── my_test │ │ │ ├── test.pb.go │ │ │ └── test.proto │ │ │ └── proto3.proto │ │ ├── protoc-gen-gogofast │ │ └── main.go │ │ ├── protoc-gen-gogofaster │ │ └── main.go │ │ ├── protoc-gen-gogoslick │ │ └── main.go │ │ ├── protoc-gen-gogotypes │ │ └── main.go │ │ ├── protoc-gen-gostring │ │ └── main.go │ │ ├── protoc-min-version │ │ └── minversion.go │ │ ├── sortkeys │ │ └── sortkeys.go │ │ ├── test │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── asymetric-issue125 │ │ │ ├── Makefile │ │ │ ├── asym.pb.go │ │ │ ├── asym.proto │ │ │ ├── asym_test.go │ │ │ ├── asympb_test.go │ │ │ └── pop.go │ │ ├── bug_test.go │ │ ├── casttype │ │ │ ├── Makefile │ │ │ ├── casttype.proto │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ ├── casttype.proto │ │ │ │ │ └── casttypepb_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ ├── casttype.proto │ │ │ │ │ └── casttypepb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ ├── casttype.proto │ │ │ │ │ └── casttypepb_test.go │ │ │ │ └── unmarshaler │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ ├── casttype.proto │ │ │ │ │ └── casttypepb_test.go │ │ │ └── mytypes.go │ │ ├── castvalue │ │ │ ├── Makefile │ │ │ ├── castvalue.pb.go │ │ │ ├── castvalue.proto │ │ │ ├── castvaluepb_test.go │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ └── mytypes.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ └── mytypes.go │ │ │ │ └── unmarshaler │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ └── mytypes.go │ │ │ └── mytypes.go │ │ ├── combos │ │ │ ├── both │ │ │ │ ├── bug_test.go │ │ │ │ ├── t.go │ │ │ │ ├── thetest.pb.go │ │ │ │ ├── thetest.proto │ │ │ │ ├── thetestpb_test.go │ │ │ │ └── uuid.go │ │ │ ├── marshaler │ │ │ │ ├── bug_test.go │ │ │ │ ├── t.go │ │ │ │ ├── thetest.pb.go │ │ │ │ ├── thetest.proto │ │ │ │ ├── thetestpb_test.go │ │ │ │ └── uuid.go │ │ │ └── unmarshaler │ │ │ │ ├── bug_test.go │ │ │ │ ├── t.go │ │ │ │ ├── thetest.pb.go │ │ │ │ ├── thetest.proto │ │ │ │ ├── thetestpb_test.go │ │ │ │ └── uuid.go │ │ ├── custom-dash-type │ │ │ └── customdash.go │ │ ├── custom │ │ │ ├── custom.go │ │ │ └── custom_test.go │ │ ├── custombytesnonstruct │ │ │ ├── Makefile │ │ │ ├── custombytesnonstruct_test.go │ │ │ ├── customtype.go │ │ │ ├── proto.pb.go │ │ │ └── proto.proto │ │ ├── dashfilename │ │ │ ├── dash-filename.proto │ │ │ ├── df_test.go │ │ │ └── doc.go │ │ ├── data │ │ │ ├── Makefile │ │ │ ├── data.pb.go │ │ │ ├── data.proto │ │ │ └── datapb_test.go │ │ ├── defaultconflict │ │ │ ├── df.proto │ │ │ ├── dg.proto │ │ │ ├── doc.go │ │ │ ├── nc.proto │ │ │ ├── nc_test.go │ │ │ ├── ne.proto │ │ │ └── nx.proto │ │ ├── embedconflict │ │ │ ├── .gitignore │ │ │ ├── doc.go │ │ │ ├── eb.proto │ │ │ ├── ec.proto │ │ │ ├── ec_test.go │ │ │ ├── ee.proto │ │ │ ├── em.proto │ │ │ ├── en.proto │ │ │ └── er.proto │ │ ├── empty-issue70 │ │ │ ├── Makefile │ │ │ ├── empty.pb.go │ │ │ ├── empty.proto │ │ │ └── empty_test.go │ │ ├── enumcustomname │ │ │ ├── Makefile │ │ │ ├── enumcustomname.pb.go │ │ │ └── enumcustomname.proto │ │ ├── enumdecl │ │ │ ├── Makefile │ │ │ ├── enumdecl.pb.go │ │ │ ├── enumdecl.proto │ │ │ ├── enumdeclpb_test.go │ │ │ └── models.go │ │ ├── enumdecl_all │ │ │ ├── Makefile │ │ │ ├── enumdeclall.pb.go │ │ │ ├── enumdeclall.proto │ │ │ ├── enumdeclallpb_test.go │ │ │ └── models.go │ │ ├── enumprefix │ │ │ ├── Makefile │ │ │ ├── enumprefix.pb.go │ │ │ └── enumprefix.proto │ │ ├── enumstringer │ │ │ ├── Makefile │ │ │ ├── enumstringer.pb.go │ │ │ ├── enumstringer.proto │ │ │ ├── enumstringerpb_test.go │ │ │ └── string.go │ │ ├── example │ │ │ ├── Makefile │ │ │ ├── example.pb.go │ │ │ ├── example.proto │ │ │ ├── example_test.go │ │ │ └── examplepb_test.go │ │ ├── extension_test.go │ │ ├── filedotname │ │ │ ├── Makefile │ │ │ ├── file.dot.pb.go │ │ │ ├── file.dot.proto │ │ │ └── file.dotpb_test.go │ │ ├── fuzztests │ │ │ ├── Makefile │ │ │ ├── fuzz.pb.go │ │ │ ├── fuzz.proto │ │ │ └── fuzz_test.go │ │ ├── group │ │ │ ├── Makefile │ │ │ ├── group.pb.go │ │ │ ├── group.proto │ │ │ └── grouppb_test.go │ │ ├── importdedup │ │ │ ├── Makefile │ │ │ ├── importdedup_test.go │ │ │ ├── proto.pb.go │ │ │ ├── proto.proto │ │ │ └── subpkg │ │ │ │ ├── customtype.go │ │ │ │ ├── subproto.pb.go │ │ │ │ └── subproto.proto │ │ ├── importduplicate │ │ │ ├── Makefile │ │ │ ├── importduplicate.pb.go │ │ │ ├── importduplicate.proto │ │ │ ├── importduplicate_test.go │ │ │ ├── importduplicatepb_test.go │ │ │ ├── proto │ │ │ │ ├── proto.pb.go │ │ │ │ ├── proto.proto │ │ │ │ └── protopb_test.go │ │ │ └── sortkeys │ │ │ │ ├── sortable.pb.go │ │ │ │ ├── sortable.proto │ │ │ │ └── sortablepb_test.go │ │ ├── indeximport-issue72 │ │ │ ├── Makefile │ │ │ ├── index │ │ │ │ ├── index.pb.go │ │ │ │ ├── index.proto │ │ │ │ └── indexpb_test.go │ │ │ ├── indeximport.pb.go │ │ │ ├── indeximport.proto │ │ │ └── indeximportpb_test.go │ │ ├── int64support │ │ │ ├── Makefile │ │ │ ├── object.pb.go │ │ │ ├── object.proto │ │ │ ├── object_js.go │ │ │ ├── object_js_test.go │ │ │ └── objectpb_test.go │ │ ├── issue260 │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── issue260.pb.go │ │ │ ├── issue260.proto │ │ │ ├── issue260pb_test.go │ │ │ └── models.go │ │ ├── issue261 │ │ │ ├── Makefile │ │ │ ├── issue261.pb.go │ │ │ └── issue261.proto │ │ ├── issue262 │ │ │ ├── Makefile │ │ │ ├── timefail.pb.go │ │ │ └── timefail.proto │ │ ├── issue270 │ │ │ ├── a │ │ │ │ ├── a1.proto │ │ │ │ └── a2.proto │ │ │ ├── b │ │ │ │ └── b.proto │ │ │ ├── doc.go │ │ │ └── issue270_test.go │ │ ├── issue312 │ │ │ ├── Makefile │ │ │ ├── events │ │ │ │ ├── Makefile │ │ │ │ ├── events.pb.go │ │ │ │ ├── events.proto │ │ │ │ └── eventspb_test.go │ │ │ ├── issue312.pb.go │ │ │ └── issue312.proto │ │ ├── issue322 │ │ │ ├── Makefile │ │ │ ├── issue322.pb.go │ │ │ ├── issue322.proto │ │ │ └── issue322pb_test.go │ │ ├── issue330 │ │ │ ├── Makefile │ │ │ ├── issue330.pb.go │ │ │ ├── issue330.proto │ │ │ ├── issue330pb_test.go │ │ │ └── type.go │ │ ├── issue34 │ │ │ ├── Makefile │ │ │ ├── issue34_test.go │ │ │ ├── proto.pb.go │ │ │ └── proto.proto │ │ ├── issue42order │ │ │ ├── Makefile │ │ │ ├── issue42.pb.go │ │ │ ├── issue42.proto │ │ │ └── order_test.go │ │ ├── issue8 │ │ │ ├── Makefile │ │ │ ├── proto.pb.go │ │ │ ├── proto.proto │ │ │ └── protopb_test.go │ │ ├── jsonpb-gogo │ │ │ ├── jsonpb_gogo.go │ │ │ └── jsonpb_gogo_test.go │ │ ├── mapdefaults │ │ │ ├── Makefile │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── map.pb.go │ │ │ │ │ ├── map.proto │ │ │ │ │ ├── map_test.go │ │ │ │ │ └── mappb_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── map.pb.go │ │ │ │ │ ├── map.proto │ │ │ │ │ ├── map_test.go │ │ │ │ │ └── mappb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── map.pb.go │ │ │ │ │ ├── map.proto │ │ │ │ │ ├── map_test.go │ │ │ │ │ └── mappb_test.go │ │ │ │ └── unmarshaler │ │ │ │ │ ├── map.pb.go │ │ │ │ │ ├── map.proto │ │ │ │ │ ├── map_test.go │ │ │ │ │ └── mappb_test.go │ │ │ ├── map.pb.go │ │ │ ├── map.proto │ │ │ └── map_test.go.in │ │ ├── mapsproto2 │ │ │ ├── Makefile │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ └── unmarshaler │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ ├── doc.go │ │ │ ├── header.proto │ │ │ ├── mapsproto2.proto │ │ │ └── mapsproto2_test.go.in │ │ ├── mixbench │ │ │ ├── .gitignore │ │ │ ├── marshal.txt │ │ │ ├── marshaler.txt │ │ │ ├── mixbench.go │ │ │ ├── oldmarshaler.txt │ │ │ ├── oldunmarshaler.txt │ │ │ ├── unmarshal.txt │ │ │ ├── unmarshaler.txt │ │ │ ├── unsafe_marshaler.txt │ │ │ └── unsafe_unmarshaler.txt │ │ ├── moredefaults │ │ │ ├── Makefile │ │ │ ├── md.pb.go │ │ │ ├── md.proto │ │ │ ├── md_test.go │ │ │ └── mdpb_test.go │ │ ├── nopackage │ │ │ ├── Makefile │ │ │ ├── nopackage.pb.go │ │ │ ├── nopackage.proto │ │ │ └── nopackage_test.go │ │ ├── oneof │ │ │ ├── Makefile │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ └── unmarshaler │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ ├── doc.go │ │ │ └── one.proto │ │ ├── oneof3 │ │ │ ├── Makefile │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ │ └── unmarshaler │ │ │ │ │ ├── one.pb.go │ │ │ │ │ ├── one.proto │ │ │ │ │ └── onepb_test.go │ │ │ ├── doc.go │ │ │ └── one.proto │ │ ├── oneofembed │ │ │ ├── Makefile │ │ │ ├── oneofembed.pb.go │ │ │ ├── oneofembed.proto │ │ │ └── oneofembedpb_test.go │ │ ├── packed │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── packed.pb.go │ │ │ ├── packed.proto │ │ │ └── packed_test.go │ │ ├── proto3extension │ │ │ ├── Makefile │ │ │ ├── proto3ext.pb.go │ │ │ └── proto3ext.proto │ │ ├── protosize │ │ │ ├── Makefile │ │ │ ├── protosize.pb.go │ │ │ ├── protosize.proto │ │ │ ├── protosize_test.go │ │ │ └── protosizepb_test.go │ │ ├── registration │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── registration.proto │ │ │ └── registration_test.go.in │ │ ├── required │ │ │ ├── Makefile │ │ │ ├── requiredexample.pb.go │ │ │ ├── requiredexample.proto │ │ │ └── requiredexamplepb_test.go │ │ ├── sizerconflict │ │ │ ├── doc.go │ │ │ ├── sizerconflict.proto │ │ │ └── sizerconflict_test.go │ │ ├── sizeunderscore │ │ │ ├── Makefile │ │ │ ├── sizeunderscore.pb.go │ │ │ ├── sizeunderscore.proto │ │ │ └── sizeunderscorepb_test.go │ │ ├── stdtypes │ │ │ ├── Makefile │ │ │ ├── concurrency_test.go │ │ │ ├── stdtypes.pb.go │ │ │ ├── stdtypes.proto │ │ │ └── stdtypespb_test.go │ │ ├── t.go │ │ ├── tags │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── tags.pb.go │ │ │ ├── tags.proto │ │ │ └── tags_test.go │ │ ├── theproto3 │ │ │ ├── Makefile │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ └── unmarshaler │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ └── theproto3pb_test.go │ │ │ ├── doc.go │ │ │ ├── footer.proto │ │ │ ├── header.proto │ │ │ ├── maps.proto │ │ │ ├── proto3_test.go.in │ │ │ └── theproto3.proto │ │ ├── thetest.pb.go │ │ ├── thetest.proto │ │ ├── thetestpb_test.go │ │ ├── typedecl │ │ │ ├── Makefile │ │ │ ├── models.go │ │ │ ├── typedecl.pb.go │ │ │ ├── typedecl.proto │ │ │ └── typedeclpb_test.go │ │ ├── typedecl_all │ │ │ ├── Makefile │ │ │ ├── models.go │ │ │ ├── typedeclall.pb.go │ │ │ ├── typedeclall.proto │ │ │ └── typedeclallpb_test.go │ │ ├── typedeclimport │ │ │ ├── Makefile │ │ │ ├── models.go │ │ │ ├── subpkg │ │ │ │ ├── subpkg.pb.go │ │ │ │ └── subpkg.proto │ │ │ ├── typedeclimport.pb.go │ │ │ ├── typedeclimport.proto │ │ │ └── typedeclimport_test.go │ │ ├── types │ │ │ ├── Makefile │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── types.pb.go │ │ │ │ │ ├── types.proto │ │ │ │ │ ├── types_test.go │ │ │ │ │ └── typespb_test.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── types.pb.go │ │ │ │ │ ├── types.proto │ │ │ │ │ ├── types_test.go │ │ │ │ │ └── typespb_test.go │ │ │ │ ├── neither │ │ │ │ │ ├── types.pb.go │ │ │ │ │ ├── types.proto │ │ │ │ │ ├── types_test.go │ │ │ │ │ └── typespb_test.go │ │ │ │ └── unmarshaler │ │ │ │ │ ├── types.pb.go │ │ │ │ │ ├── types.proto │ │ │ │ │ ├── types_test.go │ │ │ │ │ └── typespb_test.go │ │ │ ├── types.proto │ │ │ └── types_test.go.in │ │ ├── unmarshalmerge │ │ │ ├── Makefile │ │ │ ├── unmarshalmerge.pb.go │ │ │ ├── unmarshalmerge.proto │ │ │ ├── unmarshalmerge_test.go │ │ │ └── unmarshalmergepb_test.go │ │ ├── unrecognized │ │ │ ├── Makefile │ │ │ ├── oldnew_test.go │ │ │ ├── unrecognized.pb.go │ │ │ ├── unrecognized.proto │ │ │ └── unrecognizedpb_test.go │ │ ├── unrecognizedgroup │ │ │ ├── Makefile │ │ │ ├── oldnew_test.go │ │ │ ├── unrecognizedgroup.pb.go │ │ │ ├── unrecognizedgroup.proto │ │ │ └── unrecognizedgrouppb_test.go │ │ ├── uuid.go │ │ └── uuid_test.go │ │ ├── types │ │ ├── Makefile │ │ ├── any.go │ │ ├── any.pb.go │ │ ├── any_test.go │ │ ├── doc.go │ │ ├── duration.go │ │ ├── duration.pb.go │ │ ├── duration_gogo.go │ │ ├── duration_test.go │ │ ├── empty.pb.go │ │ ├── field_mask.pb.go │ │ ├── struct.pb.go │ │ ├── timestamp.go │ │ ├── timestamp.pb.go │ │ ├── timestamp_gogo.go │ │ ├── timestamp_test.go │ │ └── wrappers.pb.go │ │ ├── vanity │ │ ├── command │ │ │ └── command.go │ │ ├── enum.go │ │ ├── field.go │ │ ├── file.go │ │ ├── foreach.go │ │ ├── msg.go │ │ └── test │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── fast │ │ │ ├── gogovanity.pb.go │ │ │ ├── proto3.pb.go │ │ │ └── vanity.pb.go │ │ │ ├── faster │ │ │ ├── gogovanity.pb.go │ │ │ ├── proto3.pb.go │ │ │ └── vanity.pb.go │ │ │ ├── gofast │ │ │ └── .gitignore │ │ │ ├── gogovanity.proto │ │ │ ├── proto3.proto │ │ │ ├── slick │ │ │ ├── gogovanity.pb.go │ │ │ ├── proto3.pb.go │ │ │ └── vanity.pb.go │ │ │ ├── vanity.proto │ │ │ └── vanity_test.go │ │ └── version │ │ └── version.go ├── onsi │ ├── ginkgo │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── config │ │ │ └── config.go │ │ ├── extensions │ │ │ └── table │ │ │ │ ├── table.go │ │ │ │ ├── table_entry.go │ │ │ │ ├── table_suite_test.go │ │ │ │ └── table_test.go │ │ ├── ginkgo │ │ │ ├── bootstrap_command.go │ │ │ ├── build_command.go │ │ │ ├── convert │ │ │ │ ├── ginkgo_ast_nodes.go │ │ │ │ ├── import.go │ │ │ │ ├── package_rewriter.go │ │ │ │ ├── test_finder.go │ │ │ │ ├── testfile_rewriter.go │ │ │ │ └── testing_t_rewriter.go │ │ │ ├── convert_command.go │ │ │ ├── generate_command.go │ │ │ ├── help_command.go │ │ │ ├── interrupthandler │ │ │ │ ├── interrupt_handler.go │ │ │ │ ├── sigquit_swallower_unix.go │ │ │ │ └── sigquit_swallower_windows.go │ │ │ ├── main.go │ │ │ ├── nodot │ │ │ │ ├── nodot.go │ │ │ │ ├── nodot_suite_test.go │ │ │ │ └── nodot_test.go │ │ │ ├── nodot_command.go │ │ │ ├── notifications.go │ │ │ ├── run_command.go │ │ │ ├── run_watch_and_build_command_flags.go │ │ │ ├── suite_runner.go │ │ │ ├── testrunner │ │ │ │ ├── log_writer.go │ │ │ │ ├── run_result.go │ │ │ │ ├── test_runner.go │ │ │ │ └── test_runner_test.go │ │ │ ├── testsuite │ │ │ │ ├── test_suite.go │ │ │ │ ├── testsuite_suite_test.go │ │ │ │ ├── testsuite_test.go │ │ │ │ ├── vendor_check_go15.go │ │ │ │ ├── vendor_check_go15_test.go │ │ │ │ └── vendor_check_go16.go │ │ │ ├── unfocus_command.go │ │ │ ├── version_command.go │ │ │ ├── watch │ │ │ │ ├── delta.go │ │ │ │ ├── delta_tracker.go │ │ │ │ ├── dependencies.go │ │ │ │ ├── package_hash.go │ │ │ │ ├── package_hashes.go │ │ │ │ └── suite.go │ │ │ └── watch_command.go │ │ ├── ginkgo_dsl.go │ │ ├── integration │ │ │ ├── _fixtures │ │ │ │ ├── convert_fixtures │ │ │ │ │ ├── extra_functions_test.go │ │ │ │ │ ├── nested │ │ │ │ │ │ └── nested_test.go │ │ │ │ │ ├── nested_without_gofiles │ │ │ │ │ │ └── subpackage │ │ │ │ │ │ │ └── nested_subpackage_test.go │ │ │ │ │ ├── outside_package_test.go │ │ │ │ │ └── xunit_test.go │ │ │ │ ├── convert_goldmasters │ │ │ │ │ ├── extra_functions_test.go │ │ │ │ │ ├── fixtures_suite_test.go │ │ │ │ │ ├── nested_subpackage_test.go │ │ │ │ │ ├── nested_suite_test.go │ │ │ │ │ ├── nested_test.go │ │ │ │ │ ├── outside_package_test.go │ │ │ │ │ ├── suite_test.go │ │ │ │ │ └── xunit_test.go │ │ │ │ ├── coverage_fixture │ │ │ │ │ ├── coverage.go │ │ │ │ │ ├── coverage_fixture_suite_test.go │ │ │ │ │ ├── coverage_fixture_test.go │ │ │ │ │ └── external_coverage_fixture │ │ │ │ │ │ └── external_coverage.go │ │ │ │ ├── does_not_compile │ │ │ │ │ ├── does_not_compile_suite_test.go │ │ │ │ │ └── does_not_compile_test.go │ │ │ │ ├── eventually_failing │ │ │ │ │ ├── eventually_failing_suite_test.go │ │ │ │ │ └── eventually_failing_test.go │ │ │ │ ├── exiting_synchronized_setup_tests │ │ │ │ │ └── exiting_synchronized_setup_tests_suite_test.go │ │ │ │ ├── fail_fixture │ │ │ │ │ ├── fail_fixture_suite_test.go │ │ │ │ │ └── fail_fixture_test.go │ │ │ │ ├── failing_after_suite │ │ │ │ │ ├── failing_after_suite_suite_test.go │ │ │ │ │ └── failing_after_suite_test.go │ │ │ │ ├── failing_before_suite │ │ │ │ │ ├── failing_before_suite_suite_test.go │ │ │ │ │ └── failing_before_suite_test.go │ │ │ │ ├── failing_ginkgo_tests │ │ │ │ │ ├── failing_ginkgo_tests.go │ │ │ │ │ ├── failing_ginkgo_tests_suite_test.go │ │ │ │ │ └── failing_ginkgo_tests_test.go │ │ │ │ ├── flags_tests │ │ │ │ │ ├── flags.go │ │ │ │ │ ├── flags_suite_test.go │ │ │ │ │ └── flags_test.go │ │ │ │ ├── focused_fixture │ │ │ │ │ ├── focused_fixture_suite_test.go │ │ │ │ │ └── focused_fixture_test.go │ │ │ │ ├── hanging_suite │ │ │ │ │ ├── hanging_suite_suite_test.go │ │ │ │ │ └── hanging_suite_test.go │ │ │ │ ├── more_ginkgo_tests │ │ │ │ │ ├── more_ginkgo_tests.go │ │ │ │ │ ├── more_ginkgo_tests_suite_test.go │ │ │ │ │ └── more_ginkgo_tests_test.go │ │ │ │ ├── no_test_fn │ │ │ │ │ ├── no_test_fn.go │ │ │ │ │ └── no_test_fn_test.go │ │ │ │ ├── no_tests │ │ │ │ │ └── no_tests.go │ │ │ │ ├── passing_ginkgo_tests │ │ │ │ │ ├── passing_ginkgo_tests.go │ │ │ │ │ ├── passing_ginkgo_tests_suite_test.go │ │ │ │ │ └── passing_ginkgo_tests_test.go │ │ │ │ ├── passing_suite_setup │ │ │ │ │ ├── passing_suite_setup_suite_test.go │ │ │ │ │ └── passing_suite_test.go │ │ │ │ ├── progress_fixture │ │ │ │ │ ├── progress_fixture_suite_test.go │ │ │ │ │ └── progress_fixture_test.go │ │ │ │ ├── skip_fixture │ │ │ │ │ ├── skip_fixture_suite_test.go │ │ │ │ │ └── skip_fixture_test.go │ │ │ │ ├── suite_command_tests │ │ │ │ │ ├── suite_command.go │ │ │ │ │ ├── suite_command_suite_test.go │ │ │ │ │ └── suite_command_test.go │ │ │ │ ├── synchronized_setup_tests │ │ │ │ │ └── synchronized_setup_tests_suite_test.go │ │ │ │ ├── tags_tests │ │ │ │ │ ├── ignored_test.go │ │ │ │ │ ├── tags_tests_suite_test.go │ │ │ │ │ └── tags_tests_test.go │ │ │ │ ├── test_description │ │ │ │ │ ├── test_description_suite_test.go │ │ │ │ │ └── test_description_test.go │ │ │ │ ├── watch_fixtures │ │ │ │ │ ├── A │ │ │ │ │ │ ├── A.go │ │ │ │ │ │ ├── A_suite_test.go │ │ │ │ │ │ └── A_test.go │ │ │ │ │ ├── B │ │ │ │ │ │ ├── B.go │ │ │ │ │ │ ├── B_suite_test.go │ │ │ │ │ │ └── B_test.go │ │ │ │ │ ├── C │ │ │ │ │ │ ├── C.go │ │ │ │ │ │ ├── C.json │ │ │ │ │ │ ├── C_suite_test.go │ │ │ │ │ │ └── C_test.go │ │ │ │ │ └── D │ │ │ │ │ │ ├── D.go │ │ │ │ │ │ ├── D_suite_test.go │ │ │ │ │ │ └── D_test.go │ │ │ │ └── xunit_tests │ │ │ │ │ ├── xunit_tests.go │ │ │ │ │ └── xunit_tests_test.go │ │ │ ├── convert_test.go │ │ │ ├── coverage_test.go │ │ │ ├── fail_test.go │ │ │ ├── flags_test.go │ │ │ ├── integration.go │ │ │ ├── integration_suite_test.go │ │ │ ├── interrupt_test.go │ │ │ ├── precompiled_test.go │ │ │ ├── progress_test.go │ │ │ ├── run_test.go │ │ │ ├── skip_test.go │ │ │ ├── subcommand_test.go │ │ │ ├── suite_command_test.go │ │ │ ├── suite_setup_test.go │ │ │ ├── tags_test.go │ │ │ ├── test_description_test.go │ │ │ ├── verbose_and_succinct_test.go │ │ │ └── watch_test.go │ │ ├── internal │ │ │ ├── codelocation │ │ │ │ ├── code_location.go │ │ │ │ ├── code_location_suite_test.go │ │ │ │ └── code_location_test.go │ │ │ ├── containernode │ │ │ │ ├── container_node.go │ │ │ │ ├── container_node_suite_test.go │ │ │ │ └── container_node_test.go │ │ │ ├── failer │ │ │ │ ├── failer.go │ │ │ │ ├── failer_suite_test.go │ │ │ │ └── failer_test.go │ │ │ ├── leafnodes │ │ │ │ ├── benchmarker.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── it_node.go │ │ │ │ ├── it_node_test.go │ │ │ │ ├── leaf_node_suite_test.go │ │ │ │ ├── measure_node.go │ │ │ │ ├── measure_node_test.go │ │ │ │ ├── runner.go │ │ │ │ ├── setup_nodes.go │ │ │ │ ├── setup_nodes_test.go │ │ │ │ ├── shared_runner_test.go │ │ │ │ ├── suite_nodes.go │ │ │ │ ├── suite_nodes_test.go │ │ │ │ ├── synchronized_after_suite_node.go │ │ │ │ ├── synchronized_after_suite_node_test.go │ │ │ │ ├── synchronized_before_suite_node.go │ │ │ │ └── synchronized_before_suite_node_test.go │ │ │ ├── remote │ │ │ │ ├── aggregator.go │ │ │ │ ├── aggregator_test.go │ │ │ │ ├── fake_output_interceptor_test.go │ │ │ │ ├── fake_poster_test.go │ │ │ │ ├── forwarding_reporter.go │ │ │ │ ├── forwarding_reporter_test.go │ │ │ │ ├── output_interceptor.go │ │ │ │ ├── output_interceptor_unix.go │ │ │ │ ├── output_interceptor_win.go │ │ │ │ ├── remote_suite_test.go │ │ │ │ ├── server.go │ │ │ │ ├── server_test.go │ │ │ │ ├── syscall_dup_linux_arm64.go │ │ │ │ ├── syscall_dup_solaris.go │ │ │ │ └── syscall_dup_unix.go │ │ │ ├── spec │ │ │ │ ├── spec.go │ │ │ │ ├── spec_suite_test.go │ │ │ │ ├── spec_test.go │ │ │ │ ├── specs.go │ │ │ │ └── specs_test.go │ │ │ ├── spec_iterator │ │ │ │ ├── index_computer.go │ │ │ │ ├── index_computer_test.go │ │ │ │ ├── parallel_spec_iterator.go │ │ │ │ ├── parallel_spec_iterator_test.go │ │ │ │ ├── serial_spec_iterator.go │ │ │ │ ├── serial_spec_iterator_test.go │ │ │ │ ├── sharded_parallel_spec_iterator.go │ │ │ │ ├── sharded_parallel_spec_iterator_test.go │ │ │ │ ├── spec_iterator.go │ │ │ │ └── spec_iterator_suite_test.go │ │ │ ├── specrunner │ │ │ │ ├── random_id.go │ │ │ │ ├── spec_runner.go │ │ │ │ ├── spec_runner_suite_test.go │ │ │ │ └── spec_runner_test.go │ │ │ ├── suite │ │ │ │ ├── suite.go │ │ │ │ ├── suite_suite_test.go │ │ │ │ └── suite_test.go │ │ │ ├── testingtproxy │ │ │ │ └── testing_t_proxy.go │ │ │ └── writer │ │ │ │ ├── fake_writer.go │ │ │ │ ├── writer.go │ │ │ │ ├── writer_suite_test.go │ │ │ │ └── writer_test.go │ │ ├── reporters │ │ │ ├── default_reporter.go │ │ │ ├── default_reporter_test.go │ │ │ ├── fake_reporter.go │ │ │ ├── junit_reporter.go │ │ │ ├── junit_reporter_test.go │ │ │ ├── reporter.go │ │ │ ├── reporters_suite_test.go │ │ │ ├── stenographer │ │ │ │ ├── console_logging.go │ │ │ │ ├── fake_stenographer.go │ │ │ │ ├── stenographer.go │ │ │ │ └── support │ │ │ │ │ ├── README.md │ │ │ │ │ ├── go-colorable │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── colorable_others.go │ │ │ │ │ ├── colorable_windows.go │ │ │ │ │ └── noncolorable.go │ │ │ │ │ └── go-isatty │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── isatty_appengine.go │ │ │ │ │ ├── isatty_bsd.go │ │ │ │ │ ├── isatty_linux.go │ │ │ │ │ ├── isatty_solaris.go │ │ │ │ │ └── isatty_windows.go │ │ │ ├── teamcity_reporter.go │ │ │ └── teamcity_reporter_test.go │ │ └── types │ │ │ ├── code_location.go │ │ │ ├── synchronization.go │ │ │ ├── types.go │ │ │ ├── types_suite_test.go │ │ │ └── types_test.go │ └── gomega │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── RELEASING.md │ │ ├── format │ │ ├── format.go │ │ ├── format_suite_test.go │ │ └── format_test.go │ │ ├── gbytes │ │ ├── buffer.go │ │ ├── buffer_test.go │ │ ├── gbuffer_suite_test.go │ │ ├── io_wrappers.go │ │ ├── io_wrappers_test.go │ │ ├── say_matcher.go │ │ └── say_matcher_test.go │ │ ├── gexec │ │ ├── _fixture │ │ │ └── firefly │ │ │ │ └── main.go │ │ ├── build.go │ │ ├── build_test.go │ │ ├── exit_matcher.go │ │ ├── exit_matcher_test.go │ │ ├── gexec_suite_test.go │ │ ├── prefixed_writer.go │ │ ├── prefixed_writer_test.go │ │ ├── session.go │ │ └── session_test.go │ │ ├── ghttp │ │ ├── handlers.go │ │ ├── protobuf │ │ │ ├── protobuf.go │ │ │ ├── simple_message.pb.go │ │ │ └── simple_message.proto │ │ ├── test_server.go │ │ ├── test_server_suite_test.go │ │ └── test_server_test.go │ │ ├── gomega_dsl.go │ │ ├── gstruct │ │ ├── elements.go │ │ ├── elements_test.go │ │ ├── errors │ │ │ └── nested_types.go │ │ ├── fields.go │ │ ├── fields_test.go │ │ ├── gstruct_tests_suite_test.go │ │ ├── ignore.go │ │ ├── ignore_test.go │ │ ├── pointer.go │ │ ├── pointer_test.go │ │ └── types.go │ │ ├── internal │ │ ├── assertion │ │ │ ├── assertion.go │ │ │ ├── assertion_suite_test.go │ │ │ └── assertion_test.go │ │ ├── asyncassertion │ │ │ ├── async_assertion.go │ │ │ ├── async_assertion_suite_test.go │ │ │ └── async_assertion_test.go │ │ ├── fakematcher │ │ │ └── fake_matcher.go │ │ ├── oraclematcher │ │ │ └── oracle_matcher.go │ │ └── testingtsupport │ │ │ ├── testing_t_support.go │ │ │ └── testing_t_support_test.go │ │ ├── matchers.go │ │ ├── matchers │ │ ├── and.go │ │ ├── and_test.go │ │ ├── assignable_to_type_of_matcher.go │ │ ├── assignable_to_type_of_matcher_test.go │ │ ├── attributes_slice.go │ │ ├── be_a_directory.go │ │ ├── be_a_directory_test.go │ │ ├── be_a_regular_file.go │ │ ├── be_a_regular_file_test.go │ │ ├── be_an_existing_file.go │ │ ├── be_an_existing_file_test.go │ │ ├── be_closed_matcher.go │ │ ├── be_closed_matcher_test.go │ │ ├── be_empty_matcher.go │ │ ├── be_empty_matcher_test.go │ │ ├── be_equivalent_to_matcher.go │ │ ├── be_equivalent_to_matcher_test.go │ │ ├── be_false_matcher.go │ │ ├── be_false_matcher_test.go │ │ ├── be_identical_to.go │ │ ├── be_identical_to_test.go │ │ ├── be_nil_matcher.go │ │ ├── be_nil_matcher_test.go │ │ ├── be_numerically_matcher.go │ │ ├── be_numerically_matcher_test.go │ │ ├── be_sent_matcher.go │ │ ├── be_sent_matcher_test.go │ │ ├── be_temporally_matcher.go │ │ ├── be_temporally_matcher_test.go │ │ ├── be_true_matcher.go │ │ ├── be_true_matcher_test.go │ │ ├── be_zero_matcher.go │ │ ├── be_zero_matcher_test.go │ │ ├── consist_of.go │ │ ├── consist_of_test.go │ │ ├── contain_element_matcher.go │ │ ├── contain_element_matcher_test.go │ │ ├── contain_substring_matcher.go │ │ ├── contain_substring_matcher_test.go │ │ ├── equal_matcher.go │ │ ├── equal_matcher_test.go │ │ ├── have_cap_matcher.go │ │ ├── have_cap_matcher_test.go │ │ ├── have_key_matcher.go │ │ ├── have_key_matcher_test.go │ │ ├── have_key_with_value_matcher.go │ │ ├── have_key_with_value_matcher_test.go │ │ ├── have_len_matcher.go │ │ ├── have_len_matcher_test.go │ │ ├── have_occurred_matcher.go │ │ ├── have_occurred_matcher_test.go │ │ ├── have_prefix_matcher.go │ │ ├── have_prefix_matcher_test.go │ │ ├── have_suffix_matcher.go │ │ ├── have_suffix_matcher_test.go │ │ ├── match_error_matcher.go │ │ ├── match_error_matcher_test.go │ │ ├── match_json_matcher.go │ │ ├── match_json_matcher_test.go │ │ ├── match_regexp_matcher.go │ │ ├── match_regexp_matcher_test.go │ │ ├── match_xml_matcher.go │ │ ├── match_xml_matcher_test.go │ │ ├── match_yaml_matcher.go │ │ ├── match_yaml_matcher_test.go │ │ ├── matcher_tests_suite_test.go │ │ ├── not.go │ │ ├── not_test.go │ │ ├── or.go │ │ ├── or_test.go │ │ ├── panic_matcher.go │ │ ├── panic_matcher_test.go │ │ ├── receive_matcher.go │ │ ├── receive_matcher_test.go │ │ ├── succeed_matcher.go │ │ ├── succeed_matcher_test.go │ │ ├── support │ │ │ └── goraph │ │ │ │ ├── MIT.LICENSE │ │ │ │ ├── bipartitegraph │ │ │ │ ├── bipartitegraph.go │ │ │ │ └── bipartitegraphmatching.go │ │ │ │ ├── edge │ │ │ │ └── edge.go │ │ │ │ ├── node │ │ │ │ └── node.go │ │ │ │ └── util │ │ │ │ └── util.go │ │ ├── test_data │ │ │ └── xml │ │ │ │ ├── sample_01.xml │ │ │ │ ├── sample_02.xml │ │ │ │ ├── sample_03.xml │ │ │ │ ├── sample_04.xml │ │ │ │ ├── sample_05.xml │ │ │ │ ├── sample_06.xml │ │ │ │ ├── sample_07.xml │ │ │ │ ├── sample_08.xml │ │ │ │ ├── sample_09.xml │ │ │ │ ├── sample_10.xml │ │ │ │ └── sample_11.xml │ │ ├── type_support.go │ │ ├── with_transform.go │ │ └── with_transform_test.go │ │ └── types │ │ └── types.go ├── op │ └── go-logging │ │ ├── .travis.yml │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backend.go │ │ ├── example_test.go │ │ ├── examples │ │ ├── example.go │ │ └── example.png │ │ ├── format.go │ │ ├── format_test.go │ │ ├── level.go │ │ ├── level_test.go │ │ ├── log_nix.go │ │ ├── log_test.go │ │ ├── log_windows.go │ │ ├── logger.go │ │ ├── logger_test.go │ │ ├── memory.go │ │ ├── memory_test.go │ │ ├── multi.go │ │ ├── multi_test.go │ │ ├── syslog.go │ │ └── syslog_fallback.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 │ ├── image-spec │ │ ├── .gitignore │ │ ├── .header │ │ ├── .pullapprove.yml │ │ ├── .tool │ │ │ ├── check-license │ │ │ ├── genheader.go │ │ │ └── lint │ │ ├── .travis.yml │ │ ├── GOVERNANCE.md │ │ ├── HACKING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── RELEASES.md │ │ ├── annotations.md │ │ ├── config.md │ │ ├── considerations.md │ │ ├── conversion.md │ │ ├── descriptor.md │ │ ├── identity │ │ │ ├── chainid.go │ │ │ ├── chainid_test.go │ │ │ └── helpers.go │ │ ├── image-index.md │ │ ├── image-layout.md │ │ ├── img │ │ │ ├── build-diagram.png │ │ │ ├── media-types.dot │ │ │ ├── media-types.png │ │ │ └── run-diagram.png │ │ ├── implementations.md │ │ ├── layer.md │ │ ├── manifest.md │ │ ├── media-types.md │ │ ├── project.md │ │ ├── schema │ │ │ ├── backwards_compatibility_test.go │ │ │ ├── config-schema.json │ │ │ ├── config_test.go │ │ │ ├── content-descriptor.json │ │ │ ├── defs-descriptor.json │ │ │ ├── defs.json │ │ │ ├── descriptor_test.go │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── fs.go │ │ │ ├── gen.go │ │ │ ├── image-index-schema.json │ │ │ ├── image-layout-schema.json │ │ │ ├── image-manifest-schema.json │ │ │ ├── imageindex_test.go │ │ │ ├── imagelayout_test.go │ │ │ ├── manifest_test.go │ │ │ ├── schema.go │ │ │ ├── spec_test.go │ │ │ └── validator.go │ │ ├── spec.md │ │ └── specs-go │ │ │ ├── v1 │ │ │ ├── annotations.go │ │ │ ├── config.go │ │ │ ├── descriptor.go │ │ │ ├── index.go │ │ │ ├── layout.go │ │ │ ├── manifest.go │ │ │ └── mediatype.go │ │ │ ├── version.go │ │ │ └── versioned.go │ └── runc │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── Dockerfile │ │ ├── Godeps │ │ ├── Godeps.json │ │ ├── Readme │ │ └── _workspace │ │ │ ├── .gitignore │ │ │ └── src │ │ │ └── github.com │ │ │ ├── Sirupsen │ │ │ └── logrus │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── entry.go │ │ │ │ ├── examples │ │ │ │ ├── basic │ │ │ │ │ └── basic.go │ │ │ │ └── hook │ │ │ │ │ └── hook.go │ │ │ │ ├── exported.go │ │ │ │ ├── formatter.go │ │ │ │ ├── formatters │ │ │ │ └── logstash │ │ │ │ │ └── logstash.go │ │ │ │ ├── hooks.go │ │ │ │ ├── hooks │ │ │ │ ├── airbrake │ │ │ │ │ └── airbrake.go │ │ │ │ ├── bugsnag │ │ │ │ │ └── bugsnag.go │ │ │ │ ├── papertrail │ │ │ │ │ ├── README.md │ │ │ │ │ └── papertrail.go │ │ │ │ ├── sentry │ │ │ │ │ ├── README.md │ │ │ │ │ └── sentry.go │ │ │ │ └── syslog │ │ │ │ │ ├── README.md │ │ │ │ │ └── syslog.go │ │ │ │ ├── json_formatter.go │ │ │ │ ├── logger.go │ │ │ │ ├── logrus.go │ │ │ │ ├── terminal_darwin.go │ │ │ │ ├── terminal_freebsd.go │ │ │ │ ├── terminal_linux.go │ │ │ │ ├── terminal_notwindows.go │ │ │ │ ├── terminal_openbsd.go │ │ │ │ ├── terminal_windows.go │ │ │ │ ├── text_formatter.go │ │ │ │ └── writer.go │ │ │ ├── codegangsta │ │ │ └── cli │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── app.go │ │ │ │ ├── autocomplete │ │ │ │ ├── bash_autocomplete │ │ │ │ └── zsh_autocomplete │ │ │ │ ├── cli.go │ │ │ │ ├── command.go │ │ │ │ ├── context.go │ │ │ │ ├── flag.go │ │ │ │ └── help.go │ │ │ ├── coreos │ │ │ └── go-systemd │ │ │ │ ├── LICENSE │ │ │ │ ├── activation │ │ │ │ ├── files.go │ │ │ │ ├── listeners.go │ │ │ │ └── packetconns.go │ │ │ │ ├── dbus │ │ │ │ ├── dbus.go │ │ │ │ ├── methods.go │ │ │ │ ├── properties.go │ │ │ │ ├── set.go │ │ │ │ ├── subscription.go │ │ │ │ └── subscription_set.go │ │ │ │ └── util │ │ │ │ └── util.go │ │ │ ├── docker │ │ │ ├── docker │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ ├── contrib │ │ │ │ │ └── syntax │ │ │ │ │ │ └── vim │ │ │ │ │ │ └── LICENSE │ │ │ │ ├── docs │ │ │ │ │ └── project │ │ │ │ │ │ └── images │ │ │ │ │ │ └── red_notice.png │ │ │ │ └── pkg │ │ │ │ │ ├── mflag │ │ │ │ │ └── LICENSE │ │ │ │ │ ├── mount │ │ │ │ │ ├── flags.go │ │ │ │ │ ├── flags_freebsd.go │ │ │ │ │ ├── flags_linux.go │ │ │ │ │ ├── flags_unsupported.go │ │ │ │ │ ├── mount.go │ │ │ │ │ ├── mounter_freebsd.go │ │ │ │ │ ├── mounter_linux.go │ │ │ │ │ ├── mounter_unsupported.go │ │ │ │ │ ├── mountinfo.go │ │ │ │ │ ├── mountinfo_freebsd.go │ │ │ │ │ ├── mountinfo_linux.go │ │ │ │ │ ├── mountinfo_unsupported.go │ │ │ │ │ └── sharedsubtree_linux.go │ │ │ │ │ ├── symlink │ │ │ │ │ ├── LICENSE.APACHE │ │ │ │ │ ├── LICENSE.BSD │ │ │ │ │ ├── README.md │ │ │ │ │ └── fs.go │ │ │ │ │ └── term │ │ │ │ │ ├── tc_linux_cgo.go │ │ │ │ │ ├── tc_other.go │ │ │ │ │ ├── term.go │ │ │ │ │ ├── term_windows.go │ │ │ │ │ ├── termios_darwin.go │ │ │ │ │ ├── termios_freebsd.go │ │ │ │ │ ├── termios_linux.go │ │ │ │ │ └── winconsole │ │ │ │ │ ├── console_windows.go │ │ │ │ │ └── term_emulator.go │ │ │ └── go-units │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── duration.go │ │ │ │ └── size.go │ │ │ ├── godbus │ │ │ └── dbus │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── README.markdown │ │ │ │ ├── auth.go │ │ │ │ ├── auth_external.go │ │ │ │ ├── auth_sha1.go │ │ │ │ ├── call.go │ │ │ │ ├── conn.go │ │ │ │ ├── conn_darwin.go │ │ │ │ ├── conn_other.go │ │ │ │ ├── dbus.go │ │ │ │ ├── decoder.go │ │ │ │ ├── doc.go │ │ │ │ ├── encoder.go │ │ │ │ ├── export.go │ │ │ │ ├── homedir.go │ │ │ │ ├── homedir_dynamic.go │ │ │ │ ├── homedir_static.go │ │ │ │ ├── introspect │ │ │ │ ├── call.go │ │ │ │ ├── introspect.go │ │ │ │ └── introspectable.go │ │ │ │ ├── message.go │ │ │ │ ├── object.go │ │ │ │ ├── prop │ │ │ │ └── prop.go │ │ │ │ ├── sig.go │ │ │ │ ├── transport_darwin.go │ │ │ │ ├── transport_generic.go │ │ │ │ ├── transport_unix.go │ │ │ │ ├── transport_unixcred_dragonfly.go │ │ │ │ ├── transport_unixcred_linux.go │ │ │ │ ├── variant.go │ │ │ │ ├── variant_lexer.go │ │ │ │ └── variant_parser.go │ │ │ ├── golang │ │ │ └── protobuf │ │ │ │ ├── LICENSE │ │ │ │ └── proto │ │ │ │ ├── Makefile │ │ │ │ ├── clone.go │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ ├── equal.go │ │ │ │ ├── extensions.go │ │ │ │ ├── lib.go │ │ │ │ ├── message_set.go │ │ │ │ ├── pointer_reflect.go │ │ │ │ ├── pointer_unsafe.go │ │ │ │ ├── properties.go │ │ │ │ ├── proto3_proto │ │ │ │ ├── Makefile │ │ │ │ └── proto3.proto │ │ │ │ ├── text.go │ │ │ │ └── text_parser.go │ │ │ ├── opencontainers │ │ │ └── runtime-spec │ │ │ │ ├── LICENSE │ │ │ │ └── specs-go │ │ │ │ ├── config.go │ │ │ │ ├── state.go │ │ │ │ └── version.go │ │ │ ├── pquerna │ │ │ └── ffjson │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ └── fflib │ │ │ │ └── v1 │ │ │ │ ├── buffer.go │ │ │ │ ├── buffer_nopool.go │ │ │ │ ├── buffer_pool.go │ │ │ │ ├── bytenum.go │ │ │ │ ├── decimal.go │ │ │ │ ├── extfloat.go │ │ │ │ ├── fold.go │ │ │ │ ├── ftoa.go │ │ │ │ ├── internal │ │ │ │ ├── atof.go │ │ │ │ ├── atoi.go │ │ │ │ ├── extfloat.go │ │ │ │ └── ftoa.go │ │ │ │ ├── iota.go │ │ │ │ ├── jsonstring.go │ │ │ │ ├── lexer.go │ │ │ │ ├── reader.go │ │ │ │ ├── reader_scan_amd64.go │ │ │ │ ├── reader_scan_amd64.s │ │ │ │ └── reader_scan_generic.go │ │ │ ├── seccomp │ │ │ └── libseccomp-golang │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── seccomp.go │ │ │ │ └── seccomp_internal.go │ │ │ ├── syndtr │ │ │ └── gocapability │ │ │ │ ├── LICENSE │ │ │ │ └── capability │ │ │ │ ├── capability.go │ │ │ │ ├── capability_linux.go │ │ │ │ ├── capability_noop.go │ │ │ │ ├── enum.go │ │ │ │ ├── enum_gen.go │ │ │ │ ├── enumgen │ │ │ │ └── gen.go │ │ │ │ └── syscall_linux.go │ │ │ └── vishvananda │ │ │ └── netlink │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── addr.go │ │ │ ├── addr_linux.go │ │ │ ├── filter.go │ │ │ ├── filter_linux.go │ │ │ ├── link.go │ │ │ ├── link_linux.go │ │ │ ├── neigh.go │ │ │ ├── neigh_linux.go │ │ │ ├── netlink.go │ │ │ ├── netlink_unspecified.go │ │ │ ├── nl │ │ │ ├── addr_linux.go │ │ │ ├── link_linux.go │ │ │ ├── nl_linux.go │ │ │ ├── route_linux.go │ │ │ ├── tc_linux.go │ │ │ ├── xfrm_linux.go │ │ │ ├── xfrm_policy_linux.go │ │ │ └── xfrm_state_linux.go │ │ │ ├── protinfo.go │ │ │ ├── protinfo_linux.go │ │ │ ├── qdisc.go │ │ │ ├── qdisc_linux.go │ │ │ ├── route.go │ │ │ ├── route_linux.go │ │ │ ├── xfrm.go │ │ │ ├── xfrm_policy.go │ │ │ ├── xfrm_policy_linux.go │ │ │ ├── xfrm_state.go │ │ │ └── xfrm_state_linux.go │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── MAINTAINERS_GUIDE.md │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── PRINCIPLES.md │ │ ├── README.md │ │ ├── checkpoint.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_windows.go │ │ ├── container.go │ │ ├── container_linux.go │ │ ├── container_linux_test.go │ │ ├── container_windows.go │ │ ├── criu_opts_unix.go │ │ ├── criu_opts_windows.go │ │ ├── criurpc │ │ │ ├── Makefile │ │ │ ├── criurpc.pb.go │ │ │ └── criurpc.proto │ │ ├── devices │ │ │ ├── devices_test.go │ │ │ ├── devices_unix.go │ │ │ ├── devices_unsupported.go │ │ │ └── number.go │ │ ├── error.go │ │ ├── error_test.go │ │ ├── factory.go │ │ ├── factory_linux.go │ │ ├── factory_linux_test.go │ │ ├── generic_error.go │ │ ├── generic_error_test.go │ │ ├── init_linux.go │ │ ├── integration │ │ │ ├── checkpoint_test.go │ │ │ ├── doc.go │ │ │ ├── exec_test.go │ │ │ ├── execin_test.go │ │ │ ├── init_test.go │ │ │ ├── seccomp_test.go │ │ │ ├── template_test.go │ │ │ └── utils_test.go │ │ ├── keys │ │ │ └── keyctl.go │ │ ├── label │ │ │ ├── label.go │ │ │ ├── label_selinux.go │ │ │ └── label_selinux_test.go │ │ ├── message_linux.go │ │ ├── network_linux.go │ │ ├── notify_linux.go │ │ ├── notify_linux_test.go │ │ ├── nsenter │ │ │ ├── README.md │ │ │ ├── nsenter.go │ │ │ ├── nsenter_gccgo.go │ │ │ ├── nsenter_test.go │ │ │ ├── nsenter_unsupported.go │ │ │ └── nsexec.c │ │ ├── process.go │ │ ├── process_linux.go │ │ ├── restored_process.go │ │ ├── rootfs_linux.go │ │ ├── rootfs_linux_test.go │ │ ├── seccomp │ │ │ ├── config.go │ │ │ ├── fixtures │ │ │ │ └── proc_self_status │ │ │ ├── seccomp_linux.go │ │ │ ├── seccomp_linux_test.go │ │ │ └── seccomp_unsupported.go │ │ ├── selinux │ │ │ ├── selinux.go │ │ │ └── selinux_test.go │ │ ├── setgroups_linux.go │ │ ├── setns_init_linux.go │ │ ├── specconv │ │ │ ├── spec_linux.go │ │ │ └── spec_linux_test.go │ │ ├── stacktrace │ │ │ ├── capture.go │ │ │ ├── capture_test.go │ │ │ ├── frame.go │ │ │ ├── frame_test.go │ │ │ └── stacktrace.go │ │ ├── standard_init_linux.go │ │ ├── state_linux.go │ │ ├── state_linux_test.go │ │ ├── stats.go │ │ ├── stats_freebsd.go │ │ ├── stats_linux.go │ │ ├── stats_windows.go │ │ ├── system │ │ │ ├── linux.go │ │ │ ├── proc.go │ │ │ ├── setns_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_64.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── sysconfig.go │ │ │ ├── sysconfig_notcgo.go │ │ │ ├── unsupported.go │ │ │ └── xattrs_linux.go │ │ ├── user │ │ │ ├── MAINTAINERS │ │ │ ├── lookup.go │ │ │ ├── lookup_unix.go │ │ │ ├── lookup_unsupported.go │ │ │ ├── user.go │ │ │ └── user_test.go │ │ ├── utils │ │ │ ├── utils.go │ │ │ ├── utils_test.go │ │ │ └── utils_unix.go │ │ └── xattr │ │ │ ├── errors.go │ │ │ ├── xattr_linux.go │ │ │ ├── xattr_test.go │ │ │ └── xattr_unsupported.go │ │ ├── list.go │ │ ├── main.go │ │ ├── main_unix.go │ │ ├── main_unsupported.go │ │ ├── man │ │ ├── README.md │ │ ├── md2man-all.sh │ │ ├── runc-checkpoint.8.md │ │ ├── runc-delete.8.md │ │ ├── runc-events.8.md │ │ ├── runc-exec.8.md │ │ ├── runc-kill.8.md │ │ ├── runc-list.8.md │ │ ├── runc-pause.8.md │ │ ├── runc-restore.8.md │ │ ├── runc-resume.8.md │ │ ├── runc-spec.8.md │ │ ├── runc-start.8.md │ │ ├── runc-state.8.md │ │ └── runc.8.md │ │ ├── pause.go │ │ ├── restore.go │ │ ├── rlimit_linux.go │ │ ├── script │ │ ├── .validate │ │ ├── test_Dockerfile │ │ ├── tmpmount │ │ └── validate-gofmt │ │ ├── signals.go │ │ ├── spec.go │ │ ├── start.go │ │ ├── state.go │ │ ├── tests │ │ └── sniffTest │ │ ├── tty.go │ │ └── utils.go ├── pkg │ └── errors │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── bench_test.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── example_test.go │ │ ├── format_test.go │ │ ├── stack.go │ │ └── stack_test.go ├── satori │ └── go.uuid │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codec.go │ │ ├── codec_test.go │ │ ├── generator.go │ │ ├── generator_test.go │ │ ├── sql.go │ │ ├── sql_test.go │ │ ├── uuid.go │ │ └── uuid_test.go └── sirupsen │ └── logrus │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── alt_exit.go │ ├── alt_exit_test.go │ ├── appveyor.yml │ ├── doc.go │ ├── entry.go │ ├── entry_test.go │ ├── example_basic_test.go │ ├── example_hook_test.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_bsd.go │ ├── terminal_linux.go │ ├── text_formatter.go │ ├── text_formatter_test.go │ └── writer.go ├── golang.org └── x │ ├── crypto │ ├── .gitattributes │ ├── .gitignore │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ ├── acme │ │ ├── acme.go │ │ ├── acme_test.go │ │ ├── autocert │ │ │ ├── autocert.go │ │ │ ├── autocert_test.go │ │ │ ├── cache.go │ │ │ ├── cache_test.go │ │ │ ├── example_test.go │ │ │ ├── listener.go │ │ │ ├── renewal.go │ │ │ └── renewal_test.go │ │ ├── jws.go │ │ ├── jws_test.go │ │ ├── types.go │ │ └── types_test.go │ ├── argon2 │ │ ├── argon2.go │ │ ├── argon2_test.go │ │ ├── blake2b.go │ │ ├── blamka_amd64.go │ │ ├── blamka_amd64.s │ │ ├── blamka_generic.go │ │ └── blamka_ref.go │ ├── bcrypt │ │ ├── base64.go │ │ ├── bcrypt.go │ │ └── bcrypt_test.go │ ├── blake2b │ │ ├── blake2b.go │ │ ├── blake2bAVX2_amd64.go │ │ ├── blake2bAVX2_amd64.s │ │ ├── blake2b_amd64.go │ │ ├── blake2b_amd64.s │ │ ├── blake2b_generic.go │ │ ├── blake2b_ref.go │ │ ├── blake2b_test.go │ │ ├── blake2x.go │ │ └── register.go │ ├── blake2s │ │ ├── blake2s.go │ │ ├── blake2s_386.go │ │ ├── blake2s_386.s │ │ ├── blake2s_amd64.go │ │ ├── blake2s_amd64.s │ │ ├── blake2s_generic.go │ │ ├── blake2s_ref.go │ │ ├── blake2s_test.go │ │ ├── blake2x.go │ │ └── register.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 │ ├── chacha20poly1305 │ │ ├── chacha20poly1305.go │ │ ├── chacha20poly1305_amd64.go │ │ ├── chacha20poly1305_amd64.s │ │ ├── chacha20poly1305_generic.go │ │ ├── chacha20poly1305_noasm.go │ │ ├── chacha20poly1305_test.go │ │ └── chacha20poly1305_vectors_test.go │ ├── codereview.cfg │ ├── cryptobyte │ │ ├── asn1.go │ │ ├── asn1 │ │ │ └── asn1.go │ │ ├── asn1_test.go │ │ ├── builder.go │ │ ├── cryptobyte_test.go │ │ ├── example_test.go │ │ └── string.go │ ├── curve25519 │ │ ├── const_amd64.h │ │ ├── const_amd64.s │ │ ├── cswap_amd64.s │ │ ├── curve25519.go │ │ ├── curve25519_test.go │ │ ├── doc.go │ │ ├── freeze_amd64.s │ │ ├── ladderstep_amd64.s │ │ ├── mont25519_amd64.go │ │ ├── mul_amd64.s │ │ └── square_amd64.s │ ├── ed25519 │ │ ├── ed25519.go │ │ ├── ed25519_test.go │ │ ├── internal │ │ │ └── edwards25519 │ │ │ │ ├── const.go │ │ │ │ └── edwards25519.go │ │ └── testdata │ │ │ └── sign.input.gz │ ├── hkdf │ │ ├── example_test.go │ │ ├── hkdf.go │ │ └── hkdf_test.go │ ├── internal │ │ └── chacha20 │ │ │ ├── chacha_generic.go │ │ │ └── chacha_test.go │ ├── md4 │ │ ├── example_test.go │ │ ├── md4.go │ │ ├── md4_test.go │ │ └── md4block.go │ ├── nacl │ │ ├── auth │ │ │ ├── auth.go │ │ │ ├── auth_test.go │ │ │ └── example_test.go │ │ ├── box │ │ │ ├── box.go │ │ │ ├── box_test.go │ │ │ └── example_test.go │ │ ├── secretbox │ │ │ ├── example_test.go │ │ │ ├── secretbox.go │ │ │ └── secretbox_test.go │ │ └── sign │ │ │ ├── sign.go │ │ │ └── sign_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 │ │ ├── poly1305.go │ │ ├── poly1305_test.go │ │ ├── sum_amd64.go │ │ ├── sum_amd64.s │ │ ├── sum_arm.go │ │ ├── sum_arm.s │ │ └── 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 │ │ ├── example_test.go │ │ ├── scrypt.go │ │ └── scrypt_test.go │ ├── sha3 │ │ ├── doc.go │ │ ├── hashes.go │ │ ├── keccakf.go │ │ ├── keccakf_amd64.go │ │ ├── keccakf_amd64.s │ │ ├── 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 │ │ ├── knownhosts │ │ │ ├── knownhosts.go │ │ │ └── knownhosts_test.go │ │ ├── mac.go │ │ ├── mempipe_test.go │ │ ├── messages.go │ │ ├── messages_test.go │ │ ├── mux.go │ │ ├── mux_test.go │ │ ├── server.go │ │ ├── session.go │ │ ├── session_test.go │ │ ├── streamlocal.go │ │ ├── tcpip.go │ │ ├── tcpip_test.go │ │ ├── terminal │ │ │ ├── terminal.go │ │ │ ├── terminal_test.go │ │ │ ├── util.go │ │ │ ├── util_bsd.go │ │ │ ├── util_linux.go │ │ │ ├── util_plan9.go │ │ │ ├── util_solaris.go │ │ │ └── util_windows.go │ │ ├── test │ │ │ ├── agent_unix_test.go │ │ │ ├── banner_test.go │ │ │ ├── cert_test.go │ │ │ ├── dial_unix_test.go │ │ │ ├── doc.go │ │ │ ├── forward_unix_test.go │ │ │ ├── multi_auth_test.go │ │ │ ├── session_test.go │ │ │ ├── sshd_test_pw.c │ │ │ ├── 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.md │ ├── bpf │ │ ├── asm.go │ │ ├── constants.go │ │ ├── doc.go │ │ ├── instructions.go │ │ ├── instructions_test.go │ │ ├── setter.go │ │ ├── testdata │ │ │ ├── all_instructions.bpf │ │ │ └── all_instructions.txt │ │ ├── vm.go │ │ ├── vm_aluop_test.go │ │ ├── vm_bpf_test.go │ │ ├── vm_extension_test.go │ │ ├── vm_instructions.go │ │ ├── vm_jump_test.go │ │ ├── vm_load_test.go │ │ ├── vm_ret_test.go │ │ ├── vm_scratch_test.go │ │ └── vm_test.go │ ├── codereview.cfg │ ├── context │ │ ├── context.go │ │ ├── context_test.go │ │ ├── ctxhttp │ │ │ ├── ctxhttp.go │ │ │ ├── ctxhttp_17_test.go │ │ │ ├── ctxhttp_pre17.go │ │ │ ├── ctxhttp_pre17_test.go │ │ │ └── ctxhttp_test.go │ │ ├── go17.go │ │ ├── go19.go │ │ ├── pre_go17.go │ │ ├── pre_go19.go │ │ └── withtimeout_test.go │ ├── dict │ │ └── dict.go │ ├── dns │ │ └── dnsmessage │ │ │ ├── example_test.go │ │ │ ├── message.go │ │ │ └── message_test.go │ ├── html │ │ ├── atom │ │ │ ├── atom.go │ │ │ ├── atom_test.go │ │ │ ├── gen.go │ │ │ ├── table.go │ │ │ └── table_test.go │ │ ├── charset │ │ │ ├── charset.go │ │ │ ├── charset_test.go │ │ │ └── testdata │ │ │ │ ├── HTTP-charset.html │ │ │ │ ├── HTTP-vs-UTF-8-BOM.html │ │ │ │ ├── HTTP-vs-meta-charset.html │ │ │ │ ├── HTTP-vs-meta-content.html │ │ │ │ ├── No-encoding-declaration.html │ │ │ │ ├── README │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ ├── UTF-16LE-BOM.html │ │ │ │ ├── UTF-8-BOM-vs-meta-charset.html │ │ │ │ ├── UTF-8-BOM-vs-meta-content.html │ │ │ │ ├── meta-charset-attribute.html │ │ │ │ └── meta-content-attribute.html │ │ ├── const.go │ │ ├── doc.go │ │ ├── doctype.go │ │ ├── entity.go │ │ ├── entity_test.go │ │ ├── escape.go │ │ ├── escape_test.go │ │ ├── example_test.go │ │ ├── foreign.go │ │ ├── node.go │ │ ├── node_test.go │ │ ├── parse.go │ │ ├── parse_test.go │ │ ├── render.go │ │ ├── render_test.go │ │ ├── testdata │ │ │ ├── go1.html │ │ │ └── webkit │ │ │ │ ├── README │ │ │ │ ├── adoption01.dat │ │ │ │ ├── adoption02.dat │ │ │ │ ├── comments01.dat │ │ │ │ ├── doctype01.dat │ │ │ │ ├── entities01.dat │ │ │ │ ├── entities02.dat │ │ │ │ ├── html5test-com.dat │ │ │ │ ├── inbody01.dat │ │ │ │ ├── isindex.dat │ │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ │ ├── pending-spec-changes.dat │ │ │ │ ├── plain-text-unsafe.dat │ │ │ │ ├── scriptdata01.dat │ │ │ │ ├── scripted │ │ │ │ ├── adoption01.dat │ │ │ │ └── webkit01.dat │ │ │ │ ├── tables01.dat │ │ │ │ ├── tests1.dat │ │ │ │ ├── tests10.dat │ │ │ │ ├── tests11.dat │ │ │ │ ├── tests12.dat │ │ │ │ ├── tests14.dat │ │ │ │ ├── tests15.dat │ │ │ │ ├── tests16.dat │ │ │ │ ├── tests17.dat │ │ │ │ ├── tests18.dat │ │ │ │ ├── tests19.dat │ │ │ │ ├── tests2.dat │ │ │ │ ├── tests20.dat │ │ │ │ ├── tests21.dat │ │ │ │ ├── tests22.dat │ │ │ │ ├── tests23.dat │ │ │ │ ├── tests24.dat │ │ │ │ ├── tests25.dat │ │ │ │ ├── tests26.dat │ │ │ │ ├── tests3.dat │ │ │ │ ├── tests4.dat │ │ │ │ ├── tests5.dat │ │ │ │ ├── tests6.dat │ │ │ │ ├── tests7.dat │ │ │ │ ├── tests8.dat │ │ │ │ ├── tests9.dat │ │ │ │ ├── tests_innerHTML_1.dat │ │ │ │ ├── tricky01.dat │ │ │ │ ├── webkit01.dat │ │ │ │ └── webkit02.dat │ │ ├── token.go │ │ └── token_test.go │ ├── http │ │ └── httpproxy │ │ │ ├── export_test.go │ │ │ ├── go19_test.go │ │ │ ├── proxy.go │ │ │ └── proxy_test.go │ ├── http2 │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── README │ │ ├── ciphers.go │ │ ├── ciphers_test.go │ │ ├── client_conn_pool.go │ │ ├── configure_transport.go │ │ ├── databuffer.go │ │ ├── databuffer_test.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── flow.go │ │ ├── flow_test.go │ │ ├── frame.go │ │ ├── frame_test.go │ │ ├── go16.go │ │ ├── go17.go │ │ ├── go17_not18.go │ │ ├── go18.go │ │ ├── go18_test.go │ │ ├── go19.go │ │ ├── go19_test.go │ │ ├── gotrack.go │ │ ├── gotrack_test.go │ │ ├── h2demo │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.0 │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── deployment-prod.yaml │ │ │ ├── h2demo.go │ │ │ ├── launch.go │ │ │ ├── rootCA.key │ │ │ ├── rootCA.pem │ │ │ ├── rootCA.srl │ │ │ ├── server.crt │ │ │ ├── server.key │ │ │ ├── service.yaml │ │ │ └── tmpl.go │ │ ├── h2i │ │ │ ├── README.md │ │ │ └── h2i.go │ │ ├── headermap.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── encode_test.go │ │ │ ├── hpack.go │ │ │ ├── hpack_test.go │ │ │ ├── huffman.go │ │ │ ├── tables.go │ │ │ └── tables_test.go │ │ ├── http2.go │ │ ├── http2_test.go │ │ ├── not_go16.go │ │ ├── not_go17.go │ │ ├── not_go18.go │ │ ├── not_go19.go │ │ ├── pipe.go │ │ ├── pipe_test.go │ │ ├── server.go │ │ ├── server_push_test.go │ │ ├── server_test.go │ │ ├── testdata │ │ │ └── draft-ietf-httpbis-http2.xml │ │ ├── transport.go │ │ ├── transport_test.go │ │ ├── write.go │ │ ├── writesched.go │ │ ├── writesched_priority.go │ │ ├── writesched_priority_test.go │ │ ├── writesched_random.go │ │ ├── writesched_random_test.go │ │ ├── writesched_test.go │ │ └── z_spec_test.go │ ├── icmp │ │ ├── diag_test.go │ │ ├── dstunreach.go │ │ ├── echo.go │ │ ├── endpoint.go │ │ ├── example_test.go │ │ ├── extension.go │ │ ├── extension_test.go │ │ ├── helper_posix.go │ │ ├── interface.go │ │ ├── ipv4.go │ │ ├── ipv4_test.go │ │ ├── ipv6.go │ │ ├── listen_posix.go │ │ ├── listen_stub.go │ │ ├── message.go │ │ ├── message_test.go │ │ ├── messagebody.go │ │ ├── mpls.go │ │ ├── multipart.go │ │ ├── multipart_test.go │ │ ├── packettoobig.go │ │ ├── paramprob.go │ │ ├── sys_freebsd.go │ │ └── timeexceeded.go │ ├── idna │ │ ├── example_test.go │ │ ├── idna.go │ │ ├── idna_test.go │ │ ├── punycode.go │ │ ├── punycode_test.go │ │ ├── tables.go │ │ ├── trie.go │ │ └── trieval.go │ ├── internal │ │ ├── iana │ │ │ ├── const.go │ │ │ └── gen.go │ │ ├── nettest │ │ │ ├── helper_bsd.go │ │ │ ├── helper_nobsd.go │ │ │ ├── helper_posix.go │ │ │ ├── helper_stub.go │ │ │ ├── helper_unix.go │ │ │ ├── helper_windows.go │ │ │ ├── interface.go │ │ │ ├── rlimit.go │ │ │ └── stack.go │ │ ├── socket │ │ │ ├── cmsghdr.go │ │ │ ├── cmsghdr_bsd.go │ │ │ ├── cmsghdr_linux_32bit.go │ │ │ ├── cmsghdr_linux_64bit.go │ │ │ ├── cmsghdr_solaris_64bit.go │ │ │ ├── cmsghdr_stub.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_linux.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── defs_solaris.go │ │ │ ├── error_unix.go │ │ │ ├── error_windows.go │ │ │ ├── iovec_32bit.go │ │ │ ├── iovec_64bit.go │ │ │ ├── iovec_solaris_64bit.go │ │ │ ├── iovec_stub.go │ │ │ ├── mmsghdr_stub.go │ │ │ ├── mmsghdr_unix.go │ │ │ ├── msghdr_bsd.go │ │ │ ├── msghdr_bsdvar.go │ │ │ ├── msghdr_linux.go │ │ │ ├── msghdr_linux_32bit.go │ │ │ ├── msghdr_linux_64bit.go │ │ │ ├── msghdr_openbsd.go │ │ │ ├── msghdr_solaris_64bit.go │ │ │ ├── msghdr_stub.go │ │ │ ├── rawconn.go │ │ │ ├── rawconn_mmsg.go │ │ │ ├── rawconn_msg.go │ │ │ ├── rawconn_nommsg.go │ │ │ ├── rawconn_nomsg.go │ │ │ ├── rawconn_stub.go │ │ │ ├── reflect.go │ │ │ ├── socket.go │ │ │ ├── socket_go1_9_test.go │ │ │ ├── socket_test.go │ │ │ ├── sys.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_bsdvar.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_linux_386.go │ │ │ ├── sys_linux_386.s │ │ │ ├── sys_linux_amd64.go │ │ │ ├── sys_linux_arm.go │ │ │ ├── sys_linux_arm64.go │ │ │ ├── sys_linux_mips.go │ │ │ ├── sys_linux_mips64.go │ │ │ ├── sys_linux_mips64le.go │ │ │ ├── sys_linux_mipsle.go │ │ │ ├── sys_linux_ppc64.go │ │ │ ├── sys_linux_ppc64le.go │ │ │ ├── sys_linux_s390x.go │ │ │ ├── sys_linux_s390x.s │ │ │ ├── sys_netbsd.go │ │ │ ├── sys_posix.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_solaris_amd64.s │ │ │ ├── sys_stub.go │ │ │ ├── sys_unix.go │ │ │ ├── sys_windows.go │ │ │ ├── zsys_darwin_386.go │ │ │ ├── zsys_darwin_amd64.go │ │ │ ├── zsys_darwin_arm.go │ │ │ ├── zsys_darwin_arm64.go │ │ │ ├── zsys_dragonfly_amd64.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd_386.go │ │ │ ├── zsys_netbsd_amd64.go │ │ │ ├── zsys_netbsd_arm.go │ │ │ ├── zsys_openbsd_386.go │ │ │ ├── zsys_openbsd_amd64.go │ │ │ ├── zsys_openbsd_arm.go │ │ │ └── zsys_solaris_amd64.go │ │ └── timeseries │ │ │ ├── timeseries.go │ │ │ └── timeseries_test.go │ ├── ipv4 │ │ ├── batch.go │ │ ├── bpf_test.go │ │ ├── control.go │ │ ├── control_bsd.go │ │ ├── control_pktinfo.go │ │ ├── control_stub.go │ │ ├── control_test.go │ │ ├── control_unix.go │ │ ├── control_windows.go │ │ ├── defs_darwin.go │ │ ├── defs_dragonfly.go │ │ ├── defs_freebsd.go │ │ ├── defs_linux.go │ │ ├── defs_netbsd.go │ │ ├── defs_openbsd.go │ │ ├── defs_solaris.go │ │ ├── dgramopt.go │ │ ├── doc.go │ │ ├── endpoint.go │ │ ├── example_test.go │ │ ├── gen.go │ │ ├── genericopt.go │ │ ├── header.go │ │ ├── header_test.go │ │ ├── helper.go │ │ ├── iana.go │ │ ├── icmp.go │ │ ├── icmp_linux.go │ │ ├── icmp_stub.go │ │ ├── icmp_test.go │ │ ├── multicast_test.go │ │ ├── multicastlistener_test.go │ │ ├── multicastsockopt_test.go │ │ ├── packet.go │ │ ├── packet_go1_8.go │ │ ├── packet_go1_9.go │ │ ├── payload.go │ │ ├── payload_cmsg.go │ │ ├── payload_cmsg_go1_8.go │ │ ├── payload_cmsg_go1_9.go │ │ ├── payload_nocmsg.go │ │ ├── readwrite_go1_8_test.go │ │ ├── readwrite_go1_9_test.go │ │ ├── readwrite_test.go │ │ ├── sockopt.go │ │ ├── sockopt_posix.go │ │ ├── sockopt_stub.go │ │ ├── sys_asmreq.go │ │ ├── sys_asmreq_stub.go │ │ ├── sys_asmreqn.go │ │ ├── sys_asmreqn_stub.go │ │ ├── sys_bpf.go │ │ ├── sys_bpf_stub.go │ │ ├── sys_bsd.go │ │ ├── sys_darwin.go │ │ ├── sys_dragonfly.go │ │ ├── sys_freebsd.go │ │ ├── sys_linux.go │ │ ├── sys_solaris.go │ │ ├── sys_ssmreq.go │ │ ├── sys_ssmreq_stub.go │ │ ├── sys_stub.go │ │ ├── sys_windows.go │ │ ├── unicast_test.go │ │ ├── unicastsockopt_test.go │ │ ├── zsys_darwin.go │ │ ├── zsys_dragonfly.go │ │ ├── zsys_freebsd_386.go │ │ ├── zsys_freebsd_amd64.go │ │ ├── zsys_freebsd_arm.go │ │ ├── zsys_linux_386.go │ │ ├── zsys_linux_amd64.go │ │ ├── zsys_linux_arm.go │ │ ├── zsys_linux_arm64.go │ │ ├── zsys_linux_mips.go │ │ ├── zsys_linux_mips64.go │ │ ├── zsys_linux_mips64le.go │ │ ├── zsys_linux_mipsle.go │ │ ├── zsys_linux_ppc.go │ │ ├── zsys_linux_ppc64.go │ │ ├── zsys_linux_ppc64le.go │ │ ├── zsys_linux_s390x.go │ │ ├── zsys_netbsd.go │ │ ├── zsys_openbsd.go │ │ └── zsys_solaris.go │ ├── ipv6 │ │ ├── batch.go │ │ ├── bpf_test.go │ │ ├── control.go │ │ ├── control_rfc2292_unix.go │ │ ├── control_rfc3542_unix.go │ │ ├── control_stub.go │ │ ├── control_test.go │ │ ├── control_unix.go │ │ ├── control_windows.go │ │ ├── defs_darwin.go │ │ ├── defs_dragonfly.go │ │ ├── defs_freebsd.go │ │ ├── defs_linux.go │ │ ├── defs_netbsd.go │ │ ├── defs_openbsd.go │ │ ├── defs_solaris.go │ │ ├── dgramopt.go │ │ ├── doc.go │ │ ├── endpoint.go │ │ ├── example_test.go │ │ ├── gen.go │ │ ├── genericopt.go │ │ ├── header.go │ │ ├── header_test.go │ │ ├── helper.go │ │ ├── iana.go │ │ ├── icmp.go │ │ ├── icmp_bsd.go │ │ ├── icmp_linux.go │ │ ├── icmp_solaris.go │ │ ├── icmp_stub.go │ │ ├── icmp_test.go │ │ ├── icmp_windows.go │ │ ├── mocktransponder_test.go │ │ ├── multicast_test.go │ │ ├── multicastlistener_test.go │ │ ├── multicastsockopt_test.go │ │ ├── payload.go │ │ ├── payload_cmsg.go │ │ ├── payload_cmsg_go1_8.go │ │ ├── payload_cmsg_go1_9.go │ │ ├── payload_nocmsg.go │ │ ├── readwrite_go1_8_test.go │ │ ├── readwrite_go1_9_test.go │ │ ├── readwrite_test.go │ │ ├── sockopt.go │ │ ├── sockopt_posix.go │ │ ├── sockopt_stub.go │ │ ├── sockopt_test.go │ │ ├── sys_asmreq.go │ │ ├── sys_asmreq_stub.go │ │ ├── sys_bpf.go │ │ ├── sys_bpf_stub.go │ │ ├── sys_bsd.go │ │ ├── sys_darwin.go │ │ ├── sys_freebsd.go │ │ ├── sys_linux.go │ │ ├── sys_solaris.go │ │ ├── sys_ssmreq.go │ │ ├── sys_ssmreq_stub.go │ │ ├── sys_stub.go │ │ ├── sys_windows.go │ │ ├── unicast_test.go │ │ ├── unicastsockopt_test.go │ │ ├── zsys_darwin.go │ │ ├── zsys_dragonfly.go │ │ ├── zsys_freebsd_386.go │ │ ├── zsys_freebsd_amd64.go │ │ ├── zsys_freebsd_arm.go │ │ ├── zsys_linux_386.go │ │ ├── zsys_linux_amd64.go │ │ ├── zsys_linux_arm.go │ │ ├── zsys_linux_arm64.go │ │ ├── zsys_linux_mips.go │ │ ├── zsys_linux_mips64.go │ │ ├── zsys_linux_mips64le.go │ │ ├── zsys_linux_mipsle.go │ │ ├── zsys_linux_ppc.go │ │ ├── zsys_linux_ppc64.go │ │ ├── zsys_linux_ppc64le.go │ │ ├── zsys_linux_s390x.go │ │ ├── zsys_netbsd.go │ │ ├── zsys_openbsd.go │ │ └── zsys_solaris.go │ ├── lex │ │ └── httplex │ │ │ ├── httplex.go │ │ │ └── httplex_test.go │ ├── lif │ │ ├── address.go │ │ ├── address_test.go │ │ ├── binary.go │ │ ├── defs_solaris.go │ │ ├── lif.go │ │ ├── link.go │ │ ├── link_test.go │ │ ├── sys.go │ │ ├── sys_solaris_amd64.s │ │ ├── syscall.go │ │ └── zsys_solaris_amd64.go │ ├── nettest │ │ ├── conntest.go │ │ ├── conntest_go16.go │ │ ├── conntest_go17.go │ │ └── conntest_test.go │ ├── netutil │ │ ├── listen.go │ │ └── listen_test.go │ ├── proxy │ │ ├── direct.go │ │ ├── per_host.go │ │ ├── per_host_test.go │ │ ├── proxy.go │ │ ├── proxy_test.go │ │ └── socks5.go │ ├── publicsuffix │ │ ├── gen.go │ │ ├── list.go │ │ ├── list_test.go │ │ ├── table.go │ │ └── table_test.go │ ├── route │ │ ├── address.go │ │ ├── address_darwin_test.go │ │ ├── address_test.go │ │ ├── binary.go │ │ ├── defs_darwin.go │ │ ├── defs_dragonfly.go │ │ ├── defs_freebsd.go │ │ ├── defs_netbsd.go │ │ ├── defs_openbsd.go │ │ ├── interface.go │ │ ├── interface_announce.go │ │ ├── interface_classic.go │ │ ├── interface_freebsd.go │ │ ├── interface_multicast.go │ │ ├── interface_openbsd.go │ │ ├── message.go │ │ ├── message_darwin_test.go │ │ ├── message_freebsd_test.go │ │ ├── message_test.go │ │ ├── route.go │ │ ├── route_classic.go │ │ ├── route_openbsd.go │ │ ├── route_test.go │ │ ├── sys.go │ │ ├── sys_darwin.go │ │ ├── sys_dragonfly.go │ │ ├── sys_freebsd.go │ │ ├── sys_netbsd.go │ │ ├── sys_openbsd.go │ │ ├── syscall.go │ │ ├── zsys_darwin.go │ │ ├── zsys_dragonfly.go │ │ ├── zsys_freebsd_386.go │ │ ├── zsys_freebsd_amd64.go │ │ ├── zsys_freebsd_arm.go │ │ ├── zsys_netbsd.go │ │ └── zsys_openbsd.go │ ├── trace │ │ ├── events.go │ │ ├── histogram.go │ │ ├── histogram_test.go │ │ ├── trace.go │ │ ├── trace_go16.go │ │ ├── trace_go17.go │ │ └── trace_test.go │ ├── webdav │ │ ├── file.go │ │ ├── file_go1.6.go │ │ ├── file_go1.7.go │ │ ├── file_test.go │ │ ├── if.go │ │ ├── if_test.go │ │ ├── internal │ │ │ └── xml │ │ │ │ ├── README │ │ │ │ ├── atom_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── marshal.go │ │ │ │ ├── marshal_test.go │ │ │ │ ├── read.go │ │ │ │ ├── read_test.go │ │ │ │ ├── typeinfo.go │ │ │ │ ├── xml.go │ │ │ │ └── xml_test.go │ │ ├── litmus_test_server.go │ │ ├── lock.go │ │ ├── lock_test.go │ │ ├── prop.go │ │ ├── prop_test.go │ │ ├── webdav.go │ │ ├── webdav_test.go │ │ ├── xml.go │ │ └── xml_test.go │ ├── websocket │ │ ├── client.go │ │ ├── dial.go │ │ ├── dial_test.go │ │ ├── exampledial_test.go │ │ ├── examplehandler_test.go │ │ ├── hybi.go │ │ ├── hybi_test.go │ │ ├── server.go │ │ ├── websocket.go │ │ └── websocket_test.go │ └── xsrftoken │ │ ├── xsrf.go │ │ └── xsrf_test.go │ ├── sys │ ├── .gitattributes │ ├── .gitignore │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ ├── codereview.cfg │ ├── plan9 │ │ ├── asm.s │ │ ├── asm_plan9_386.s │ │ ├── asm_plan9_amd64.s │ │ ├── asm_plan9_arm.s │ │ ├── const_plan9.go │ │ ├── dir_plan9.go │ │ ├── env_plan9.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 │ │ ├── zsyscall_plan9_arm.go │ │ └── zsysnum_plan9.go │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── asm_darwin_386.s │ │ ├── asm_darwin_amd64.s │ │ ├── asm_darwin_arm.s │ │ ├── asm_darwin_arm64.s │ │ ├── asm_dragonfly_amd64.s │ │ ├── asm_freebsd_386.s │ │ ├── asm_freebsd_amd64.s │ │ ├── asm_freebsd_arm.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_netbsd_386.s │ │ ├── asm_netbsd_amd64.s │ │ ├── asm_netbsd_arm.s │ │ ├── asm_openbsd_386.s │ │ ├── asm_openbsd_amd64.s │ │ ├── asm_openbsd_arm.s │ │ ├── asm_solaris_amd64.s │ │ ├── bluetooth_linux.go │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── creds_test.go │ │ ├── dev_darwin.go │ │ ├── dev_darwin_test.go │ │ ├── dev_dragonfly.go │ │ ├── dev_dragonfly_test.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_linux_test.go │ │ ├── dev_netbsd.go │ │ ├── dev_netbsd_test.go │ │ ├── dev_openbsd.go │ │ ├── dev_openbsd_test.go │ │ ├── dev_solaris_test.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── errors_freebsd_386.go │ │ ├── errors_freebsd_amd64.go │ │ ├── errors_freebsd_arm.go │ │ ├── example_test.go │ │ ├── export_test.go │ │ ├── fcntl.go │ │ ├── fcntl_linux_32bit.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── linux │ │ │ ├── Dockerfile │ │ │ ├── mkall.go │ │ │ ├── mksysnum.pl │ │ │ └── types.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mkpost.go │ │ ├── mksyscall.pl │ │ ├── mksyscall_solaris.pl │ │ ├── mksysctl_openbsd.pl │ │ ├── mksysnum_darwin.pl │ │ ├── mksysnum_dragonfly.pl │ │ ├── mksysnum_freebsd.pl │ │ ├── mksysnum_netbsd.pl │ │ ├── mksysnum_openbsd.pl │ │ ├── mmap_unix_test.go │ │ ├── openbsd_pledge.go │ │ ├── openbsd_test.go │ │ ├── pagesize_unix.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_bsd.go │ │ ├── syscall_bsd_test.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_386.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_freebsd_test.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_gc.go │ │ ├── syscall_linux_gccgo.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_linux_test.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_solaris_test.go │ │ ├── syscall_test.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── syscall_unix_test.go │ │ ├── timestruct.go │ │ ├── timestruct_test.go │ │ ├── types_darwin.go │ │ ├── types_dragonfly.go │ │ ├── types_freebsd.go │ │ ├── types_netbsd.go │ │ ├── types_openbsd.go │ │ ├── types_solaris.go │ │ ├── zerrors_darwin_386.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zptrace386_linux.go │ │ ├── zptracearm_linux.go │ │ ├── zptracemips_linux.go │ │ ├── zptracemipsle_linux.go │ │ ├── zsyscall_darwin_386.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_arm.go │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysnum_darwin_386.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── ztypes_darwin_386.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ └── ztypes_solaris_amd64.go │ └── windows │ │ ├── asm_windows_386.s │ │ ├── asm_windows_amd64.s │ │ ├── dll_windows.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── registry │ │ ├── export_test.go │ │ ├── key.go │ │ ├── mksyscall.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 │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ └── zsyscall_windows.go │ └── text │ ├── .gitattributes │ ├── .gitignore │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ ├── cases │ ├── cases.go │ ├── context.go │ ├── context_test.go │ ├── example_test.go │ ├── fold.go │ ├── fold_test.go │ ├── gen.go │ ├── gen_trieval.go │ ├── icu.go │ ├── icu_test.go │ ├── info.go │ ├── map.go │ ├── map_test.go │ ├── tables10.0.0.go │ ├── tables10.0.0_test.go │ ├── tables9.0.0.go │ ├── tables9.0.0_test.go │ └── trieval.go │ ├── cmd │ └── gotext │ │ ├── common.go │ │ ├── doc.go │ │ ├── examples │ │ ├── extract │ │ │ ├── catalog.go │ │ │ ├── locales │ │ │ │ ├── de │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ └── out.gotext.json │ │ │ │ ├── en-US │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ └── out.gotext.json │ │ │ │ ├── extracted.gotext.json │ │ │ │ └── zh │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ └── out.gotext.json │ │ │ └── main.go │ │ ├── extract_http │ │ │ ├── locales │ │ │ │ ├── de │ │ │ │ │ └── out.gotext.json │ │ │ │ ├── en-US │ │ │ │ │ └── out.gotext.json │ │ │ │ ├── extracted.gotext.json │ │ │ │ └── zh │ │ │ │ │ └── out.gotext.json │ │ │ ├── main.go │ │ │ └── pkg │ │ │ │ └── pkg.go │ │ └── rewrite │ │ │ ├── main.go │ │ │ └── printer.go │ │ ├── extract.go │ │ ├── generate.go │ │ ├── main.go │ │ └── rewrite.go │ ├── codereview.cfg │ ├── collate │ ├── build │ │ ├── builder.go │ │ ├── builder_test.go │ │ ├── colelem.go │ │ ├── colelem_test.go │ │ ├── contract.go │ │ ├── contract_test.go │ │ ├── order.go │ │ ├── order_test.go │ │ ├── table.go │ │ ├── trie.go │ │ └── trie_test.go │ ├── collate.go │ ├── collate_test.go │ ├── export_test.go │ ├── index.go │ ├── maketables.go │ ├── option.go │ ├── option_test.go │ ├── reg_test.go │ ├── sort.go │ ├── sort_test.go │ ├── table_test.go │ ├── tables.go │ └── tools │ │ └── colcmp │ │ ├── Makefile │ │ ├── chars.go │ │ ├── col.go │ │ ├── colcmp.go │ │ ├── darwin.go │ │ ├── gen.go │ │ └── icu.go │ ├── currency │ ├── common.go │ ├── currency.go │ ├── currency_test.go │ ├── example_test.go │ ├── format.go │ ├── format_test.go │ ├── gen.go │ ├── gen_common.go │ ├── query.go │ ├── query_test.go │ ├── tables.go │ └── tables_test.go │ ├── date │ ├── data_test.go │ ├── gen.go │ ├── gen_test.go │ └── tables.go │ ├── doc.go │ ├── encoding │ ├── charmap │ │ ├── charmap.go │ │ ├── charmap_test.go │ │ ├── maketables.go │ │ └── tables.go │ ├── encoding.go │ ├── encoding_test.go │ ├── example_test.go │ ├── htmlindex │ │ ├── gen.go │ │ ├── htmlindex.go │ │ ├── htmlindex_test.go │ │ ├── map.go │ │ └── tables.go │ ├── ianaindex │ │ ├── example_test.go │ │ ├── gen.go │ │ ├── ianaindex.go │ │ ├── ianaindex_test.go │ │ └── tables.go │ ├── internal │ │ ├── enctest │ │ │ └── enctest.go │ │ ├── identifier │ │ │ ├── gen.go │ │ │ ├── identifier.go │ │ │ └── mib.go │ │ └── internal.go │ ├── japanese │ │ ├── all.go │ │ ├── all_test.go │ │ ├── eucjp.go │ │ ├── iso2022jp.go │ │ ├── maketables.go │ │ ├── shiftjis.go │ │ └── tables.go │ ├── korean │ │ ├── all_test.go │ │ ├── euckr.go │ │ ├── maketables.go │ │ └── tables.go │ ├── simplifiedchinese │ │ ├── all.go │ │ ├── all_test.go │ │ ├── gbk.go │ │ ├── hzgb2312.go │ │ ├── maketables.go │ │ └── tables.go │ ├── testdata │ │ ├── candide-gb18030.txt │ │ ├── candide-utf-16le.txt │ │ ├── candide-utf-32be.txt │ │ ├── candide-utf-8.txt │ │ ├── candide-windows-1252.txt │ │ ├── rashomon-euc-jp.txt │ │ ├── rashomon-iso-2022-jp.txt │ │ ├── rashomon-shift-jis.txt │ │ ├── rashomon-utf-8.txt │ │ ├── sunzi-bingfa-gb-levels-1-and-2-hz-gb2312.txt │ │ ├── sunzi-bingfa-gb-levels-1-and-2-utf-8.txt │ │ ├── sunzi-bingfa-simplified-gbk.txt │ │ ├── sunzi-bingfa-simplified-utf-8.txt │ │ ├── sunzi-bingfa-traditional-big5.txt │ │ ├── sunzi-bingfa-traditional-utf-8.txt │ │ ├── unsu-joh-eun-nal-euc-kr.txt │ │ └── unsu-joh-eun-nal-utf-8.txt │ ├── traditionalchinese │ │ ├── all_test.go │ │ ├── big5.go │ │ ├── maketables.go │ │ └── tables.go │ └── unicode │ │ ├── override.go │ │ ├── unicode.go │ │ ├── unicode_test.go │ │ └── utf32 │ │ ├── utf32.go │ │ └── utf32_test.go │ ├── feature │ └── plural │ │ ├── common.go │ │ ├── data_test.go │ │ ├── example_test.go │ │ ├── gen.go │ │ ├── gen_common.go │ │ ├── message.go │ │ ├── message_test.go │ │ ├── plural.go │ │ ├── plural_test.go │ │ └── tables.go │ ├── gen.go │ ├── internal │ ├── catmsg │ │ ├── catmsg.go │ │ ├── catmsg_test.go │ │ ├── codec.go │ │ ├── varint.go │ │ └── varint_test.go │ ├── cldrtree │ │ ├── cldrtree.go │ │ ├── cldrtree_test.go │ │ ├── generate.go │ │ ├── option.go │ │ ├── testdata │ │ │ ├── test1 │ │ │ │ ├── common │ │ │ │ │ └── main │ │ │ │ │ │ └── root.xml │ │ │ │ └── output.go │ │ │ └── test2 │ │ │ │ ├── common │ │ │ │ └── main │ │ │ │ │ ├── en.xml │ │ │ │ │ ├── en_001.xml │ │ │ │ │ ├── en_GB.xml │ │ │ │ │ └── root.xml │ │ │ │ └── output.go │ │ ├── tree.go │ │ └── type.go │ ├── colltab │ │ ├── collate_test.go │ │ ├── collelem.go │ │ ├── collelem_test.go │ │ ├── colltab.go │ │ ├── colltab_test.go │ │ ├── contract.go │ │ ├── contract_test.go │ │ ├── iter.go │ │ ├── iter_test.go │ │ ├── numeric.go │ │ ├── numeric_test.go │ │ ├── table.go │ │ ├── trie.go │ │ ├── trie_test.go │ │ ├── weighter.go │ │ └── weighter_test.go │ ├── export │ │ ├── README │ │ └── idna │ │ │ ├── common_test.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── gen10.0.0_test.go │ │ │ ├── gen9.0.0_test.go │ │ │ ├── gen_common.go │ │ │ ├── gen_trieval.go │ │ │ ├── idna10.0.0.go │ │ │ ├── idna10.0.0_test.go │ │ │ ├── idna9.0.0.go │ │ │ ├── idna9.0.0_test.go │ │ │ ├── idna_test.go │ │ │ ├── punycode.go │ │ │ ├── punycode_test.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── trie.go │ │ │ └── trieval.go │ ├── format │ │ ├── format.go │ │ ├── parser.go │ │ └── parser_test.go │ ├── gen.go │ ├── gen │ │ ├── code.go │ │ └── gen.go │ ├── gen_test.go │ ├── internal.go │ ├── internal_test.go │ ├── match.go │ ├── match_test.go │ ├── number │ │ ├── common.go │ │ ├── decimal.go │ │ ├── decimal_test.go │ │ ├── format.go │ │ ├── format_test.go │ │ ├── gen.go │ │ ├── gen_common.go │ │ ├── number.go │ │ ├── number_test.go │ │ ├── pattern.go │ │ ├── pattern_test.go │ │ ├── roundingmode_string.go │ │ ├── tables.go │ │ └── tables_test.go │ ├── stringset │ │ ├── set.go │ │ └── set_test.go │ ├── tables.go │ ├── tag │ │ ├── tag.go │ │ └── tag_test.go │ ├── testtext │ │ ├── codesize.go │ │ ├── flag.go │ │ ├── gc.go │ │ ├── gccgo.go │ │ ├── go1_6.go │ │ ├── go1_7.go │ │ └── text.go │ ├── triegen │ │ ├── compact.go │ │ ├── data_test.go │ │ ├── example_compact_test.go │ │ ├── example_test.go │ │ ├── gen_test.go │ │ ├── print.go │ │ └── triegen.go │ ├── ucd │ │ ├── example_test.go │ │ ├── ucd.go │ │ └── ucd_test.go │ └── utf8internal │ │ └── utf8internal.go │ ├── language │ ├── Makefile │ ├── common.go │ ├── coverage.go │ ├── coverage_test.go │ ├── display │ │ ├── dict.go │ │ ├── dict_test.go │ │ ├── display.go │ │ ├── display_test.go │ │ ├── examples_test.go │ │ ├── lookup.go │ │ ├── maketables.go │ │ └── tables.go │ ├── doc.go │ ├── examples_test.go │ ├── gen.go │ ├── gen_common.go │ ├── gen_index.go │ ├── go1_1.go │ ├── go1_2.go │ ├── httpexample_test.go │ ├── index.go │ ├── language.go │ ├── language_test.go │ ├── lookup.go │ ├── lookup_test.go │ ├── match.go │ ├── match_test.go │ ├── parse.go │ ├── parse_test.go │ ├── tables.go │ ├── tags.go │ └── testdata │ │ ├── CLDRLocaleMatcherTest.txt │ │ └── GoLocaleMatcherTest.txt │ ├── message │ ├── catalog.go │ ├── catalog │ │ ├── catalog.go │ │ ├── catalog_test.go │ │ ├── dict.go │ │ ├── go19.go │ │ └── gopre19.go │ ├── catalog_test.go │ ├── doc.go │ ├── examples_test.go │ ├── fmt_test.go │ ├── format.go │ ├── message.go │ ├── message_test.go │ ├── pipeline │ │ ├── extract.go │ │ ├── generate.go │ │ ├── message.go │ │ ├── pipeline.go │ │ └── rewrite.go │ └── print.go │ ├── number │ ├── doc.go │ ├── examples_test.go │ ├── format.go │ ├── format_test.go │ ├── number.go │ ├── number_test.go │ └── option.go │ ├── runes │ ├── cond.go │ ├── cond_test.go │ ├── example_test.go │ ├── runes.go │ └── runes_test.go │ ├── search │ ├── index.go │ ├── pattern.go │ ├── pattern_test.go │ ├── search.go │ └── tables.go │ ├── secure │ ├── bidirule │ │ ├── bench_test.go │ │ ├── bidirule.go │ │ ├── bidirule10.0.0.go │ │ ├── bidirule10.0.0_test.go │ │ ├── bidirule9.0.0.go │ │ ├── bidirule9.0.0_test.go │ │ └── bidirule_test.go │ ├── doc.go │ └── precis │ │ ├── benchmark_test.go │ │ ├── class.go │ │ ├── class_test.go │ │ ├── context.go │ │ ├── doc.go │ │ ├── enforce10.0.0_test.go │ │ ├── enforce9.0.0_test.go │ │ ├── enforce_test.go │ │ ├── gen.go │ │ ├── gen_trieval.go │ │ ├── nickname.go │ │ ├── options.go │ │ ├── profile.go │ │ ├── profile_test.go │ │ ├── profiles.go │ │ ├── tables10.0.0.go │ │ ├── tables9.0.0.go │ │ ├── tables_test.go │ │ ├── transformer.go │ │ └── trieval.go │ ├── transform │ ├── examples_test.go │ ├── transform.go │ └── transform_test.go │ ├── unicode │ ├── bidi │ │ ├── bidi.go │ │ ├── bracket.go │ │ ├── core.go │ │ ├── core_test.go │ │ ├── gen.go │ │ ├── gen_ranges.go │ │ ├── gen_trieval.go │ │ ├── prop.go │ │ ├── ranges_test.go │ │ ├── tables10.0.0.go │ │ ├── tables9.0.0.go │ │ ├── tables_test.go │ │ └── trieval.go │ ├── cldr │ │ ├── base.go │ │ ├── cldr.go │ │ ├── cldr_test.go │ │ ├── collate.go │ │ ├── collate_test.go │ │ ├── data_test.go │ │ ├── decode.go │ │ ├── examples_test.go │ │ ├── makexml.go │ │ ├── resolve.go │ │ ├── resolve_test.go │ │ ├── slice.go │ │ ├── slice_test.go │ │ └── xml.go │ ├── doc.go │ ├── norm │ │ ├── composition.go │ │ ├── composition_test.go │ │ ├── data10.0.0_test.go │ │ ├── data9.0.0_test.go │ │ ├── example_iter_test.go │ │ ├── example_test.go │ │ ├── forminfo.go │ │ ├── forminfo_test.go │ │ ├── input.go │ │ ├── iter.go │ │ ├── iter_test.go │ │ ├── maketables.go │ │ ├── normalize.go │ │ ├── normalize_test.go │ │ ├── readwriter.go │ │ ├── readwriter_test.go │ │ ├── tables10.0.0.go │ │ ├── tables9.0.0.go │ │ ├── transform.go │ │ ├── transform_test.go │ │ ├── trie.go │ │ ├── triegen.go │ │ └── ucd_test.go │ ├── rangetable │ │ ├── gen.go │ │ ├── merge.go │ │ ├── merge_test.go │ │ ├── rangetable.go │ │ ├── rangetable_test.go │ │ ├── tables10.0.0.go │ │ └── tables9.0.0.go │ └── runenames │ │ ├── bits.go │ │ ├── example_test.go │ │ ├── gen.go │ │ ├── gen_bits.go │ │ ├── runenames.go │ │ ├── runenames_test.go │ │ └── tables.go │ └── width │ ├── common_test.go │ ├── example_test.go │ ├── gen.go │ ├── gen_common.go │ ├── gen_trieval.go │ ├── kind_string.go │ ├── runes_test.go │ ├── tables10.0.0.go │ ├── tables9.0.0.go │ ├── tables_test.go │ ├── transform.go │ ├── transform_test.go │ ├── trieval.go │ └── width.go └── gopkg.in └── yaml.v2 ├── .travis.yml ├── LICENSE ├── LICENSE.libyaml ├── NOTICE ├── README.md ├── apic.go ├── decode.go ├── decode_test.go ├── emitterc.go ├── encode.go ├── encode_test.go ├── example_embedded_test.go ├── go.mod ├── 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/cloud66-oss/habitus/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.crosscompile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/Dockerfile.crosscompile -------------------------------------------------------------------------------- /Dockerfile.tester: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/Dockerfile.tester -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/README.md -------------------------------------------------------------------------------- /api/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/api/server.go -------------------------------------------------------------------------------- /codeship-services.yml: -------------------------------------------------------------------------------- 1 | habitus: 2 | build: . -------------------------------------------------------------------------------- /codeship-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/codeship-steps.yml -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/compile.sh -------------------------------------------------------------------------------- /configuration/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/configuration/config.go -------------------------------------------------------------------------------- /configuration/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/configuration/config_test.go -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /examples/after_build_command/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine:3.5 2 | RUN echo "step1" -------------------------------------------------------------------------------- /examples/after_build_command/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/after_build_command/build.yml -------------------------------------------------------------------------------- /examples/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/build.yml -------------------------------------------------------------------------------- /examples/buildarguments/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/buildarguments/Dockerfile -------------------------------------------------------------------------------- /examples/buildarguments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/buildarguments/README.md -------------------------------------------------------------------------------- /examples/buildarguments/build-contained.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/buildarguments/build-contained.yml -------------------------------------------------------------------------------- /examples/buildarguments/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/buildarguments/build.yml -------------------------------------------------------------------------------- /examples/context/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/context/build.yml -------------------------------------------------------------------------------- /examples/context/sub/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/context/sub/Dockerfile -------------------------------------------------------------------------------- /examples/context/sub/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -eux 4 | 5 | echo "Hello" 6 | -------------------------------------------------------------------------------- /examples/env/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/env/Dockerfile -------------------------------------------------------------------------------- /examples/env/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/env/build.yml -------------------------------------------------------------------------------- /examples/multistage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/multistage/Dockerfile -------------------------------------------------------------------------------- /examples/multistage/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/multistage/build.yml -------------------------------------------------------------------------------- /examples/network/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/network/Dockerfile -------------------------------------------------------------------------------- /examples/network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/network/README.md -------------------------------------------------------------------------------- /examples/network/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/network/build.yml -------------------------------------------------------------------------------- /examples/no_cache/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine:3.5 2 | RUN echo "step1" -------------------------------------------------------------------------------- /examples/no_cache/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/no_cache/build.yml -------------------------------------------------------------------------------- /examples/security/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/security/Dockerfile -------------------------------------------------------------------------------- /examples/security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/security/README.md -------------------------------------------------------------------------------- /examples/security/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/security/build.yml -------------------------------------------------------------------------------- /examples/security_env/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/security_env/Dockerfile -------------------------------------------------------------------------------- /examples/security_env/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/security_env/README.md -------------------------------------------------------------------------------- /examples/security_env/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/security_env/build.yml -------------------------------------------------------------------------------- /examples/testing/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/testing/Dockerfile -------------------------------------------------------------------------------- /examples/testing/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/testing/build.yml -------------------------------------------------------------------------------- /examples/uid/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine:3.5 2 | RUN pwd 3 | CMD hello 4 | -------------------------------------------------------------------------------- /examples/uid/Dockerfile.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/uid/Dockerfile.production -------------------------------------------------------------------------------- /examples/uid/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/uid/build.yml -------------------------------------------------------------------------------- /examples/uid_nested/Dockerfile.base: -------------------------------------------------------------------------------- 1 | FROM alpine:3.5 2 | RUN echo 'the base' -------------------------------------------------------------------------------- /examples/uid_nested/Dockerfile.compile: -------------------------------------------------------------------------------- 1 | FROM base 2 | RUN echo 'compiling' -------------------------------------------------------------------------------- /examples/uid_nested/Dockerfile.runtime: -------------------------------------------------------------------------------- 1 | FROM base 2 | RUN echo 'runtime' -------------------------------------------------------------------------------- /examples/uid_nested/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/examples/uid_nested/build.yml -------------------------------------------------------------------------------- /habitus_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/habitus_install.sh -------------------------------------------------------------------------------- /habitus_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/habitus_suite_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/main.go -------------------------------------------------------------------------------- /secrets/env_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/secrets/env_provider.go -------------------------------------------------------------------------------- /secrets/file_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/secrets/file_provider.go -------------------------------------------------------------------------------- /secrets/secret_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/secrets/secret_provider.go -------------------------------------------------------------------------------- /squash/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/squash/export.go -------------------------------------------------------------------------------- /squash/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/squash/image.go -------------------------------------------------------------------------------- /squash/squasher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/squash/squasher.go -------------------------------------------------------------------------------- /squash/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/squash/utils.go -------------------------------------------------------------------------------- /vendor/github.com/Azure/go-ansiterm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/Azure/go-ansiterm/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Azure/go-ansiterm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/Azure/go-ansiterm/README.md -------------------------------------------------------------------------------- /vendor/github.com/Azure/go-ansiterm/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/Azure/go-ansiterm/context.go -------------------------------------------------------------------------------- /vendor/github.com/Azure/go-ansiterm/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/Azure/go-ansiterm/parser.go -------------------------------------------------------------------------------- /vendor/github.com/Azure/go-ansiterm/states.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/Azure/go-ansiterm/states.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/Microsoft/go-winio/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/Microsoft/go-winio/README.md -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/archive/tar/testdata/small.txt: -------------------------------------------------------------------------------- 1 | Kilts -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/archive/tar/testdata/small2.txt: -------------------------------------------------------------------------------- 1 | Google.com 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/Microsoft/go-winio/backup.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/ea.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/Microsoft/go-winio/ea.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/Microsoft/go-winio/file.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/Microsoft/go-winio/pipe.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/sd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/Microsoft/go-winio/sd.go -------------------------------------------------------------------------------- /vendor/github.com/Nvveen/Gotty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/Nvveen/Gotty/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Nvveen/Gotty/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/Nvveen/Gotty/README -------------------------------------------------------------------------------- /vendor/github.com/Nvveen/Gotty/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/Nvveen/Gotty/TODO -------------------------------------------------------------------------------- /vendor/github.com/Nvveen/Gotty/attributes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/Nvveen/Gotty/attributes.go -------------------------------------------------------------------------------- /vendor/github.com/Nvveen/Gotty/gotty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/Nvveen/Gotty/gotty.go -------------------------------------------------------------------------------- /vendor/github.com/Nvveen/Gotty/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/Nvveen/Gotty/parser.go -------------------------------------------------------------------------------- /vendor/github.com/Nvveen/Gotty/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/Nvveen/Gotty/types.go -------------------------------------------------------------------------------- /vendor/github.com/ant0ine/go-json-rest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/ant0ine/go-json-rest/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/certifi/gocertifi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/certifi/gocertifi/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/certifi/gocertifi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/certifi/gocertifi/README.md -------------------------------------------------------------------------------- /vendor/github.com/certifi/gocertifi/certifi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/certifi/gocertifi/certifi.go -------------------------------------------------------------------------------- /vendor/github.com/certifi/gocertifi/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/certifi/gocertifi/tasks.py -------------------------------------------------------------------------------- /vendor/github.com/dchest/uniuri/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/dchest/uniuri/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/dchest/uniuri/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/dchest/uniuri/README.md -------------------------------------------------------------------------------- /vendor/github.com/dchest/uniuri/uniuri.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/dchest/uniuri/uniuri.go -------------------------------------------------------------------------------- /vendor/github.com/dchest/uniuri/uniuri_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/dchest/uniuri/uniuri_test.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/.DEREK.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/.DEREK.yml -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/.dockerignore -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/Dockerfile -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/Dockerfile.e2e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/Dockerfile.e2e -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/Makefile -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/ROADMAP.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/TESTING.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/VENDORING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/VENDORING.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/api/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/api/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/api/common.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/builder/dockerfile/parser/testfiles/continue-at-eof/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine:3.5 2 | 3 | RUN something \ -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/continue-at-eof/result: -------------------------------------------------------------------------------- 1 | (from "alpine:3.5") 2 | (run "something") 3 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/cli/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/cli/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/cli/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/cli/error.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/client/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/client/info.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/client/ping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/client/ping.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/codecov.yml -------------------------------------------------------------------------------- /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/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/daemon/auth.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/daemon/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/daemon/exec.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/daemon/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/daemon/info.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/daemon/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/daemon/keys.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/daemon/kill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/daemon/kill.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/daemon/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/daemon/list.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/daemon/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/daemon/logs.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/daemon/stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/daemon/stop.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/daemon/wait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/daemon/wait.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/errdefs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/errdefs/doc.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/errdefs/is.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/errdefs/is.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/ci/arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/hack/ci/arm -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/ci/z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/hack/ci/z -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/dind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/hack/dind -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/hack/make.sh -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/make/.resources-windows/docker.rc: -------------------------------------------------------------------------------- 1 | #define DOCKER_NAME "Docker Client" 2 | 3 | #include "common.rc" 4 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/image/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/image/fs.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/integration-cli/fixtures/https/ca.pem: -------------------------------------------------------------------------------- 1 | ../../../integration/testdata/https/ca.pem -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/integration-cli/fixtures/https/client-cert.pem: -------------------------------------------------------------------------------- 1 | ../../../integration/testdata/https/client-cert.pem -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/integration-cli/fixtures/https/client-key.pem: -------------------------------------------------------------------------------- 1 | ../../../integration/testdata/https/client-key.pem -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/integration-cli/fixtures/https/server-cert.pem: -------------------------------------------------------------------------------- 1 | ../../../integration/testdata/https/server-cert.pem -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/integration-cli/fixtures/https/server-key.pem: -------------------------------------------------------------------------------- 1 | ../../../integration/testdata/https/server-key.pem -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/integration-cli/fixtures/secrets/default: -------------------------------------------------------------------------------- 1 | this is the secret 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/integration/plugin/logging/cmd/cmd_test.go: -------------------------------------------------------------------------------- 1 | package cmd 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/integration/plugin/logging/cmd/dummy/main_test.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/integration/plugin/volumes/cmd/cmd_test.go: -------------------------------------------------------------------------------- 1 | package cmd 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/integration/plugin/volumes/cmd/dummy/main_test.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/opts/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/opts/env.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/opts/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/opts/ip.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/opts/opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/opts/opts.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/poule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/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/cloud66-oss/habitus/HEAD/vendor/github.com/docker/docker/vendor.conf -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/sockets/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/go-units/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/go-units/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/go-units/circle.yml -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/go-units/size.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/ulimit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/docker/go-units/ulimit.go -------------------------------------------------------------------------------- /vendor/github.com/dustin/go-humanize/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/dustin/go-humanize/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/dustin/go-humanize/big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/dustin/go-humanize/big.go -------------------------------------------------------------------------------- /vendor/github.com/dustin/go-humanize/ftoa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/dustin/go-humanize/ftoa.go -------------------------------------------------------------------------------- /vendor/github.com/dustin/go-humanize/si.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/dustin/go-humanize/si.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/testing/data/barfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/testing/data/foofile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/getsentry/raven-go/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /vendor/github.com/getsentry/raven-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/getsentry/raven-go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/getsentry/raven-go/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/getsentry/raven-go/http.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/gogo/protobuf/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/gogo/protobuf/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/gogo/protobuf/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/gogo/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/gogo/protobuf/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/gogo/protobuf/README -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/gogo/protobuf/Readme.md -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/bench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/gogo/protobuf/bench.md -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/io/full.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/gogo/protobuf/io/full.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/io/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/gogo/protobuf/io/io.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/io/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/gogo/protobuf/io/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/io/varint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/gogo/protobuf/io/varint.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/gogo/protobuf/proto/lib.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/protoc-gen-gogo/testdata/multi/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/.gitignore: -------------------------------------------------------------------------------- 1 | *.dat 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/dashfilename/doc.go: -------------------------------------------------------------------------------- 1 | package dashfilename 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/defaultconflict/doc.go: -------------------------------------------------------------------------------- 1 | package defaultcheck 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/embedconflict/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/embedconflict/doc.go: -------------------------------------------------------------------------------- 1 | package embedconflict 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/issue270/doc.go: -------------------------------------------------------------------------------- 1 | package issue270 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/jsonpb-gogo/jsonpb_gogo.go: -------------------------------------------------------------------------------- 1 | package jsonpb_gogo 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/mapsproto2/doc.go: -------------------------------------------------------------------------------- 1 | package mapsproto2 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/mixbench/.gitignore: -------------------------------------------------------------------------------- 1 | mixbench -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/oneof/doc.go: -------------------------------------------------------------------------------- 1 | package one 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/oneof3/doc.go: -------------------------------------------------------------------------------- 1 | package oneof3 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/packed/doc.go: -------------------------------------------------------------------------------- 1 | package packed 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/sizerconflict/doc.go: -------------------------------------------------------------------------------- 1 | package sizerconflict 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/t.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/gogo/protobuf/test/t.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/tags/doc.go: -------------------------------------------------------------------------------- 1 | package tags 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/theproto3/doc.go: -------------------------------------------------------------------------------- 1 | package theproto3 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/test/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/gogo/protobuf/test/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/types/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/gogo/protobuf/types/any.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/types/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/gogo/protobuf/types/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/vanity/test/doc.go: -------------------------------------------------------------------------------- 1 | package test 2 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/vanity/test/gofast/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | TODO 3 | tmp/**/* 4 | *.coverprofile 5 | .vscode -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/onsi/ginkgo/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/onsi/ginkgo/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/onsi/ginkgo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/onsi/ginkgo/README.md -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/onsi/ginkgo/ginkgo/main.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo_dsl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/onsi/ginkgo/ginkgo_dsl.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/integration/_fixtures/watch_fixtures/C/C.go: -------------------------------------------------------------------------------- 1 | package C 2 | 3 | func DoIt() string { 4 | return "done!" 5 | } 6 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/integration/_fixtures/watch_fixtures/C/C.json: -------------------------------------------------------------------------------- 1 | { 2 | "fixture": "data" 3 | } -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/integration/integration.go: -------------------------------------------------------------------------------- 1 | package integration 2 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/onsi/ginkgo/types/types.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.test 3 | . 4 | .idea 5 | gomega.iml 6 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/onsi/gomega/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/onsi/gomega/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/onsi/gomega/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/onsi/gomega/README.md -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/onsi/gomega/RELEASING.md -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/gexec/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/onsi/gomega/gexec/build.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/gomega_dsl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/onsi/gomega/gomega_dsl.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/onsi/gomega/matchers.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/or.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/onsi/gomega/matchers/or.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/onsi/gomega/types/types.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/op/go-logging/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/op/go-logging/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/op/go-logging/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/op/go-logging/README.md -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/op/go-logging/backend.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/op/go-logging/format.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/op/go-logging/level.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/log_nix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/op/go-logging/log_nix.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/op/go-logging/log_test.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/op/go-logging/logger.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/op/go-logging/memory.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/multi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/op/go-logging/multi.go -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/syslog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/op/go-logging/syslog.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/image-spec/.gitignore: -------------------------------------------------------------------------------- 1 | /oci-validate-examples 2 | output 3 | header.html 4 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM runc_test 2 | ADD . /go/src/github.com/opencontainers/runc 3 | RUN make 4 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/Godeps/_workspace/.gitignore: -------------------------------------------------------------------------------- 1 | /pkg 2 | /bin 3 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/opencontainers/runc/NOTICE -------------------------------------------------------------------------------- /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/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/cloud66-oss/habitus/HEAD/vendor/github.com/opencontainers/runc/tty.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/pkg/errors/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/pkg/errors/bench_test.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/pkg/errors/errors_test.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/pkg/errors/example_test.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/pkg/errors/format_test.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/pkg/errors/stack_test.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/satori/go.uuid/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/satori/go.uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/satori/go.uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/satori/go.uuid/codec.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/satori/go.uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/sql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/satori/go.uuid/sql_test.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/satori/go.uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/sirupsen/logrus/README.md -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/github.com/sirupsen/logrus/writer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/acme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/acme/acme.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/acme_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/acme/acme_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/acme/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/jws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/acme/jws_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/acme/types.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/argon2/argon2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/argon2/argon2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/argon2/blake2b.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/argon2/blake2b.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bcrypt/base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/bcrypt/base64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bcrypt/bcrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/bcrypt/bcrypt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/blowfish/block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/blowfish/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/bn256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/bn256/bn256.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/curve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/bn256/curve.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/bn256/gfp12.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/bn256/gfp2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/bn256/gfp6.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/optate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/bn256/optate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/twist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/bn256/twist.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cast5/cast5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/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/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/curve25519/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/hkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/hkdf/hkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/hkdf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/hkdf/hkdf_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/md4/md4.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/md4/md4_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/md4/md4block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/nacl/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/nacl/auth/auth.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/nacl/box/box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/nacl/box/box.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/nacl/sign/sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/nacl/sign/sign.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ocsp/ocsp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/ocsp/ocsp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ocsp/ocsp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/ocsp/ocsp_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/openpgp/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/openpgp/read.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/openpgp/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/otr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/otr/otr.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/otr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/otr/otr_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/smp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/otr/smp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/pkcs12/crypto.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/pkcs12/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/pkcs12/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/pbkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/pkcs12/pbkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/pkcs12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/pkcs12/pkcs12.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/scrypt/scrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/scrypt/scrypt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/sha3/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/hashes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/sha3/hashes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/keccakf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/sha3/keccakf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/sha3/register.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/sha3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/sha3/sha3.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/sha3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/sha3/sha3_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/shake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/sha3/shake.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/xor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/sha3/xor.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/ssh/buffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/ssh/certs.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/certs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/ssh/certs_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/ssh/channel.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/ssh/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/ssh/client.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/ssh/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/ssh/connection.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/handshake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/ssh/handshake.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/ssh/kex_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/ssh/keys_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/ssh/messages.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/ssh/mux_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/ssh/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/ssh/session.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/tcpip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/ssh/tcpip.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/tcpip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/ssh/tcpip_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/test/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/ssh/test/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/ssh/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/tea/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/tea/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/tea/tea_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/tea/tea_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xtea/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/xtea/block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xtea/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/xtea/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xtea/xtea_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/xtea/xtea_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xts/xts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/xts/xts.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xts/xts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/crypto/xts/xts_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/bpf/asm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/bpf/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/bpf/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/instructions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/bpf/instructions.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/setter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/bpf/setter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/bpf/vm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm_aluop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/bpf/vm_aluop_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm_bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/bpf/vm_bpf_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm_jump_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/bpf/vm_jump_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm_load_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/bpf/vm_load_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm_ret_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/bpf/vm_ret_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/bpf/vm_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/context/go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/pre_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/context/pre_go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/pre_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/context/pre_go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/dict/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/dict/dict.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/atom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/html/atom/atom.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/html/atom/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/html/atom/table.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/html/entity_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/html/escape_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/html/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/html/node_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/html/parse_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/html/render_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/html/token_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/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/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/databuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/databuffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/errors_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/flow_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/frame_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/go16.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go17_not18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/go17_not18.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/go18.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go18_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/go18_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go19_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/go19_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/h2demo/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/tmpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/h2demo/tmpl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/h2i/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2i/h2i.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/h2i/h2i.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/headermap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/headermap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/hpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/hpack/hpack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/http2_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/not_go16.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/not_go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/not_go18.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/not_go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/pipe_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/server_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/writesched.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/writesched.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/z_spec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/http2/z_spec_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/diag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/icmp/diag_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/dstunreach.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/icmp/dstunreach.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/icmp/echo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/icmp/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/icmp/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/icmp/extension.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/helper_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/icmp/helper_posix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/icmp/interface.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/icmp/ipv4.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/icmp/ipv4_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/icmp/ipv6.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/listen_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/icmp/listen_posix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/listen_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/icmp/listen_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/icmp/message.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/message_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/icmp/message_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/messagebody.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/icmp/messagebody.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/mpls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/icmp/mpls.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/multipart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/icmp/multipart.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/packettoobig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/icmp/packettoobig.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/paramprob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/icmp/paramprob.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/icmp/sys_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/timeexceeded.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/icmp/timeexceeded.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/idna/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/idna/idna_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/idna/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/iana/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/internal/iana/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/batch.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/bpf_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/control.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/control_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/control_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/control_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/control_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/defs_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/defs_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/defs_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/defs_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/defs_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/defs_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/dgramopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/dgramopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/genericopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/genericopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/header.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/header_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/header_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/iana.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/icmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/icmp_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/icmp_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/icmp_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/packet.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/packet_go1_8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/packet_go1_8.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/packet_go1_9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/packet_go1_9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/payload.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/payload_cmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/payload_cmsg.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/sockopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sockopt_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/sockopt_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_asmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/sys_asmreq.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_asmreqn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/sys_asmreqn.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/sys_bpf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_bpf_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/sys_bpf_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/sys_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/sys_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/sys_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/sys_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/sys_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_ssmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/sys_ssmreq.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/sys_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/sys_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/unicast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/unicast_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/zsys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/zsys_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/zsys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/zsys_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/zsys_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/zsys_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/zsys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv4/zsys_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/batch.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/bpf_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/control.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/control_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/control_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/control_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/control_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/control_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/control_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/defs_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/defs_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/defs_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/defs_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/defs_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/defs_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/dgramopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/dgramopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/genericopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/genericopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/header.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/header_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/header_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/iana.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/icmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/icmp_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/icmp_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/icmp_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/icmp_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/icmp_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/icmp_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/payload.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/payload_cmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/payload_cmsg.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/sockopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sockopt_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/sockopt_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sockopt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/sockopt_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_asmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/sys_asmreq.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/sys_bpf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_bpf_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/sys_bpf_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/sys_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/sys_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/sys_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/sys_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/sys_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_ssmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/sys_ssmreq.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/sys_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/sys_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/unicast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/unicast_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/zsys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/zsys_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/zsys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/zsys_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/zsys_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/zsys_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/zsys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/ipv6/zsys_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/lif/address.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/address_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/lif/address_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/lif/binary.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/defs_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/lif/defs_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/lif.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/lif/lif.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/lif/link.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/link_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/lif/link_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/lif/sys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/lif/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/nettest/conntest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/nettest/conntest.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/netutil/listen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/netutil/listen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/per_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/proxy/per_host.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/proxy/proxy_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/publicsuffix/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/publicsuffix/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/publicsuffix/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/publicsuffix/list.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/route/address.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/route/binary.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/defs_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/route/defs_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/defs_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/route/defs_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/route/interface.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/route/message.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/route/route.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/route_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/route/route_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/route/sys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/route/sys_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/route/sys_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/sys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/route/sys_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/sys_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/route/sys_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/route/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/zsys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/route/zsys_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/zsys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/route/zsys_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/trace/histogram.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/trace/trace_go16.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/trace/trace_go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/trace/trace_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/webdav/file.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/file_go1.6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/webdav/file_go1.6.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/file_go1.7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/webdav/file_go1.7.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/webdav/file_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/webdav/if.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/if_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/webdav/if_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/webdav/lock.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/lock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/webdav/lock_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/webdav/prop.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/prop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/webdav/prop_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/webdav.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/webdav/webdav.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/webdav/xml.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/xml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/webdav/xml_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/websocket/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/websocket/client.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/websocket/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/websocket/dial.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/websocket/hybi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/websocket/hybi.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/websocket/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/websocket/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/xsrftoken/xsrf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/net/xsrftoken/xsrf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/const_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/plan9/const_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/dir_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/plan9/dir_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/env_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/plan9/env_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/plan9/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/plan9/mksyscall.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/pwd_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/plan9/pwd_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/plan9/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/creds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/creds_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/export_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/linux/mkall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/linux/mkall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/linux/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/linux/types.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/mksyscall.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/openbsd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/openbsd_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/syscall_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/types_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/unix/types_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/windows/mksyscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/windows/svc/event.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/windows/svc/go12.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/windows/svc/go12.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go13.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/windows/svc/go13.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/text/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/cases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/cases/cases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/cases/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/fold_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/cases/fold_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/cases/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/icu_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/cases/icu_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/cases/map_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/cases/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cmd/gotext/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/cmd/gotext/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cmd/gotext/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/cmd/gotext/main.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/collate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/collate/collate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/collate/index.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/collate/option.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/reg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/collate/reg_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/collate/sort.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/collate/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/currency/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/currency/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/currency/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/currency/format.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/currency/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/currency/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/currency/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/currency/query.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/currency/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/currency/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/date/data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/date/data_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/date/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/date/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/date/gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/date/gen_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/date/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/date/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/internal/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/gen/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/internal/gen/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/internal/match.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/internal/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/tag/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/internal/tag/tag.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/ucd/ucd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/internal/ucd/ucd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/language/Makefile -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/language/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/language/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/go1_1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/language/go1_1.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/go1_2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/language/go1_2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/language/index.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/language/lookup.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/language/match.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/language/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/language/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/language/tags.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/message/catalog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/message/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/fmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/message/fmt_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/message/format.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/message/message.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/message/print.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/number/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/number/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/number/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/number/format.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/number/number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/number/number.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/number/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/number/option.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/cond_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/runes/cond_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/runes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/runes/runes_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/search/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/search/index.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/search/pattern.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/search/pattern.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/search/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/search/search.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/search/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/search/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/secure/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/unicode/bidi/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/cldr/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/unicode/cldr/xml.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/unicode/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/width/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/gen_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/width/gen_common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/runes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/width/runes_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/width/transform.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/width/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/golang.org/x/text/width/width.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/gopkg.in/yaml.v2/decode_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/gopkg.in/yaml.v2/encode_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/gopkg.in/yaml.v2/suite_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloud66-oss/habitus/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go --------------------------------------------------------------------------------