gitextract_9yro7slu/ ├── .cirrus.yml ├── .codespellrc ├── .fmf/ │ └── version ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── buildah_bug_report.yaml │ │ ├── config.yaml │ │ └── podman_build_bug_report.yaml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── release.yml │ ├── renovate.json5 │ └── workflows/ │ ├── check_cirrus_cron.yml │ ├── issue_pr_lock.yml │ ├── pr.yml │ └── stale.yml ├── .gitignore ├── .golangci.yml ├── .packit.yaml ├── CHANGELOG.md ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── GOVERNANCE.md ├── LICENSE ├── MAINTAINERS.md ├── Makefile ├── OWNERS ├── README.md ├── ROADMAP.md ├── SECURITY.md ├── add.go ├── bind/ │ ├── mount.go │ ├── mount_unsupported.go │ └── util.go ├── btrfs_installed_tag.sh ├── buildah.go ├── buildah_test.go ├── changelog.txt ├── chroot/ │ ├── run_common.go │ ├── run_freebsd.go │ ├── run_linux.go │ ├── run_linux_test.go │ ├── run_test.go │ ├── seccomp.go │ ├── seccomp_freebsd.go │ ├── seccomp_test.go │ ├── seccomp_unsupported.go │ ├── seccomp_unsupported_test.go │ ├── selinux.go │ ├── selinux_unsupported.go │ └── unsupported.go ├── cmd/ │ └── buildah/ │ ├── addcopy.go │ ├── build.go │ ├── commit.go │ ├── common.go │ ├── common_test.go │ ├── config.go │ ├── containers.go │ ├── containers_test.go │ ├── dumpbolt.go │ ├── from.go │ ├── images.go │ ├── images_test.go │ ├── info.go │ ├── inspect.go │ ├── login.go │ ├── logout.go │ ├── main.go │ ├── manifest.go │ ├── mkcw.go │ ├── mount.go │ ├── prune.go │ ├── pull.go │ ├── push.go │ ├── rename.go │ ├── rm.go │ ├── rmi.go │ ├── rpc.go │ ├── run.go │ ├── source.go │ ├── tag.go │ ├── umount.go │ ├── unshare.go │ ├── unshare_unsupported.go │ └── version.go ├── commit.go ├── commit_test.go ├── common.go ├── common_test.go ├── config.go ├── contrib/ │ ├── buildahimage/ │ │ └── README.md │ ├── cirrus/ │ │ ├── build.sh │ │ ├── lib.sh │ │ ├── logcollector.sh │ │ ├── setup.sh │ │ ├── test.sh │ │ └── timestamp.awk │ └── completions/ │ └── bash/ │ └── buildah ├── convertcw.go ├── convertcw_test.go ├── copier/ │ ├── copier.go │ ├── copier_linux_test.go │ ├── copier_test.go │ ├── copier_unix_test.go │ ├── copier_windows_test.go │ ├── hardlink_not_uint64.go │ ├── hardlink_uint64.go │ ├── hardlink_unix.go │ ├── hardlink_windows.go │ ├── mknod_int.go │ ├── mknod_uint64.go │ ├── syscall_unix.go │ ├── syscall_windows.go │ ├── xattrs.go │ ├── xattrs_test.go │ └── xattrs_unsupported.go ├── define/ │ ├── build.go │ ├── build_test.go │ ├── isolation.go │ ├── mount_freebsd.go │ ├── mount_linux.go │ ├── mount_unsupported.go │ ├── namespace.go │ ├── pull.go │ ├── pull_test.go │ ├── types.go │ ├── types_test.go │ ├── types_unix.go │ └── types_unsupported.go ├── delete.go ├── demos/ │ ├── README.md │ ├── buildah-bud-demo.sh │ ├── buildah-scratch-demo.sh │ ├── buildah_multi_stage.sh │ └── docker-compatibility-demo.sh ├── developmentplan.md ├── digester.go ├── digester_test.go ├── docker/ │ ├── AUTHORS │ └── types.go ├── docs/ │ ├── Makefile │ ├── buildah-add.1.md │ ├── buildah-build.1.md │ ├── buildah-commit.1.md │ ├── buildah-config.1.md │ ├── buildah-containers.1.md │ ├── buildah-copy.1.md │ ├── buildah-from.1.md │ ├── buildah-images.1.md │ ├── buildah-info.1.md │ ├── buildah-inspect.1.md │ ├── buildah-login.1.md │ ├── buildah-logout.1.md │ ├── buildah-manifest-add.1.md │ ├── buildah-manifest-annotate.1.md │ ├── buildah-manifest-create.1.md │ ├── buildah-manifest-exists.1.md │ ├── buildah-manifest-inspect.1.md │ ├── buildah-manifest-push.1.md │ ├── buildah-manifest-remove.1.md │ ├── buildah-manifest-rm.1.md │ ├── buildah-manifest.1.md │ ├── buildah-mkcw.1.md │ ├── buildah-mount.1.md │ ├── buildah-prune.1.md │ ├── buildah-pull.1.md │ ├── buildah-push.1.md │ ├── buildah-rename.1.md │ ├── buildah-rm.1.md │ ├── buildah-rmi.1.md │ ├── buildah-run.1.md │ ├── buildah-source-add.1.md │ ├── buildah-source-create.1.md │ ├── buildah-source-pull.1.md │ ├── buildah-source-push.1.md │ ├── buildah-source.1.md │ ├── buildah-tag.1.md │ ├── buildah-umount.1.md │ ├── buildah-unshare.1.md │ ├── buildah-version.1.md │ ├── buildah.1.md │ ├── containertools/ │ │ └── README.md │ ├── links/ │ │ └── buildah-bud.1 │ ├── release-announcements/ │ │ ├── README.md │ │ ├── v0.12.md │ │ ├── v0.16.md │ │ ├── v1.1.md │ │ ├── v1.2.md │ │ ├── v1.3.md │ │ ├── v1.4.md │ │ └── v1.5.md │ ├── samples/ │ │ └── registries.conf │ └── tutorials/ │ ├── 01-intro.md │ ├── 02-registries-repositories.md │ ├── 03-on-build.md │ ├── 04-include-in-your-build-tool.md │ ├── 05-openshift-rootless-build.md │ └── README.md ├── examples/ │ ├── all-the-things.sh │ ├── copy.sh │ └── lighttpd.sh ├── go.mod ├── go.sum ├── hack/ │ ├── apparmor_tag.sh │ ├── build_speed.sh │ ├── check_vendor_toolchain.sh │ ├── get_ci_vm.sh │ ├── libsubid_tag.sh │ ├── sqlite_tag.sh │ ├── systemd_tag.sh │ ├── tree_status.sh │ └── xref-helpmsgs-manpages ├── image.go ├── imagebuildah/ │ ├── build.go │ ├── build_linux.go │ ├── build_linux_test.go │ ├── build_notlinux.go │ ├── executor.go │ ├── stage_executor.go │ ├── stage_executor_test.go │ ├── util.go │ └── util_test.go ├── import.go ├── info.go ├── install.md ├── internal/ │ ├── config/ │ │ ├── convert.go │ │ ├── convert_test.go │ │ ├── executor.go │ │ ├── executor_test.go │ │ └── override.go │ ├── metadata/ │ │ └── metadata.go │ ├── mkcw/ │ │ ├── archive.go │ │ ├── archive_test.go │ │ ├── attest.go │ │ ├── embed/ │ │ │ ├── asm/ │ │ │ │ ├── doc.md │ │ │ │ └── entrypoint_amd64.s │ │ │ ├── check.sh │ │ │ ├── doc.go │ │ │ ├── entrypoint.go │ │ │ ├── entrypoint_amd64.s │ │ │ ├── entrypoint_arm64.s │ │ │ ├── entrypoint_ppc64le.s │ │ │ └── entrypoint_s390x.s │ │ ├── entrypoint.go │ │ ├── luks.go │ │ ├── luks_test.go │ │ ├── makefs.go │ │ ├── types/ │ │ │ ├── attest.go │ │ │ └── workload.go │ │ ├── workload.go │ │ └── workload_test.go │ ├── open/ │ │ ├── open.go │ │ ├── open_linux.go │ │ ├── open_linux_test.go │ │ ├── open_test.go │ │ ├── open_types.go │ │ ├── open_unix.go │ │ └── open_unsupported.go │ ├── output/ │ │ ├── build_output.go │ │ └── build_output_test.go │ ├── parsevolume/ │ │ └── parse.go │ ├── pty/ │ │ ├── pty_posix.go │ │ ├── pty_ptmx.go │ │ └── pty_unsupported.go │ ├── rpc/ │ │ ├── listen/ │ │ │ └── listen.go │ │ └── noop/ │ │ ├── noop.go │ │ └── pb/ │ │ ├── build.sh │ │ ├── noop.pb.go │ │ ├── noop.proto │ │ └── noop_grpc.pb.go │ ├── sanitize/ │ │ ├── sanitize.go │ │ └── sanitize_test.go │ ├── sbom/ │ │ ├── merge.go │ │ ├── merge_test.go │ │ ├── presets.go │ │ └── presets_test.go │ ├── source/ │ │ ├── add.go │ │ ├── create.go │ │ ├── pull.go │ │ ├── push.go │ │ └── source.go │ ├── tmpdir/ │ │ ├── tmpdir.go │ │ └── tmpdir_test.go │ ├── types.go │ ├── util/ │ │ ├── util.go │ │ └── util_test.go │ └── volumes/ │ ├── bind_linux.go │ ├── bind_linux_test.go │ ├── bind_notlinux.go │ ├── bind_test.go │ ├── volumes.go │ └── volumes_test.go ├── manifests/ │ └── compat.go ├── mount.go ├── new.go ├── new_test.go ├── pkg/ │ ├── binfmt/ │ │ ├── binfmt.go │ │ └── binfmt_unsupported.go │ ├── blobcache/ │ │ └── blobcache.go │ ├── chrootuser/ │ │ ├── user.go │ │ ├── user_basic.go │ │ ├── user_test.go │ │ └── user_unix.go │ ├── cli/ │ │ ├── build.go │ │ ├── common.go │ │ ├── common_test.go │ │ └── exec_codes.go │ ├── completion/ │ │ └── completion.go │ ├── dummy/ │ │ └── dummy_test.go │ ├── formats/ │ │ ├── doc.go │ │ ├── formats.go │ │ └── templates.go │ ├── jail/ │ │ ├── jail.go │ │ ├── jail_int32.go │ │ ├── jail_int64.go │ │ └── jail_test.go │ ├── manifests/ │ │ └── compat.go │ ├── overlay/ │ │ ├── overlay.go │ │ ├── overlay_freebsd.go │ │ ├── overlay_linux.go │ │ └── overlay_unsupported.go │ ├── parse/ │ │ ├── parse.go │ │ ├── parse_test.go │ │ ├── parse_unix.go │ │ └── parse_unsupported.go │ ├── rusage/ │ │ ├── rusage.go │ │ ├── rusage_test.go │ │ ├── rusage_unix.go │ │ └── rusage_unsupported.go │ ├── sourcepolicy/ │ │ ├── policy.go │ │ └── policy_test.go │ ├── sshagent/ │ │ ├── sshagent.go │ │ └── sshagent_test.go │ ├── supplemented/ │ │ └── compat.go │ ├── umask/ │ │ └── umask.go │ ├── util/ │ │ ├── resource_unix.go │ │ ├── resource_unix_test.go │ │ ├── resource_windows.go │ │ ├── test/ │ │ │ └── test1/ │ │ │ └── Containerfile │ │ ├── uptime_darwin.go │ │ ├── uptime_freebsd.go │ │ ├── uptime_linux.go │ │ ├── uptime_netbsd.go │ │ ├── uptime_windows.go │ │ ├── util.go │ │ ├── util_test.go │ │ ├── version_unix.go │ │ └── version_windows.go │ └── volumes/ │ └── volumes.go ├── plans/ │ └── main.fmf ├── pull.go ├── push.go ├── release.sh ├── rpm/ │ ├── Makefile │ ├── buildah.spec │ ├── gating.yaml │ └── update-spec-version.sh ├── run.go ├── run_common.go ├── run_common_test.go ├── run_freebsd.go ├── run_linux.go ├── run_test.go ├── run_unix.go ├── run_unsupported.go ├── scan.go ├── seccomp.go ├── seccomp_unsupported.go ├── selinux.go ├── selinux_unsupported.go ├── tests/ │ ├── NEW-IMAGES │ ├── add.bats │ ├── authenticate.bats │ ├── basic.bats │ ├── blobcache.bats │ ├── bud/ │ │ ├── add-checksum/ │ │ │ ├── Containerfile │ │ │ ├── Containerfile.bad │ │ │ └── Containerfile.bad-checksum │ │ ├── add-chmod/ │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.bad │ │ │ ├── Dockerfile.combined │ │ │ └── addchmod.txt │ │ ├── add-chown/ │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.bad │ │ │ └── addchown.txt │ │ ├── add-create-absolute-path/ │ │ │ ├── Dockerfile │ │ │ └── distutils.cfg │ │ ├── add-create-relative-path/ │ │ │ ├── Dockerfile │ │ │ └── distutils.cfg │ │ ├── add-file/ │ │ │ ├── Dockerfile │ │ │ ├── file │ │ │ └── file2 │ │ ├── add-run-dir/ │ │ │ └── Dockerfile │ │ ├── addtl-tags/ │ │ │ └── Dockerfile │ │ ├── all-platform/ │ │ │ └── Containerfile.default-arg │ │ ├── arg-scope/ │ │ │ ├── Containerfile.arg-mixed-defaults │ │ │ ├── Containerfile.copy-from-arg │ │ │ ├── Containerfile.from-arg │ │ │ ├── Containerfile.multiple-args-one-step │ │ │ ├── Containerfile.multiple-args-stage-only │ │ │ ├── Containerfile.multiple-args-stage-overrides-one │ │ │ ├── Containerfile.stage-overrides-header │ │ │ └── Containerfile.stage-overrides-header-copy-from │ │ ├── base-with-arg/ │ │ │ ├── Containerfile │ │ │ ├── Containerfile2 │ │ │ ├── Containerfilebad │ │ │ ├── first.args │ │ │ └── second.args │ │ ├── base-with-labels/ │ │ │ ├── Containerfile │ │ │ ├── Containerfile.layer │ │ │ ├── Containerfile.multi-stage │ │ │ └── Containerfile2 │ │ ├── bud.limits/ │ │ │ └── Containerfile │ │ ├── build-arg/ │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile2 │ │ │ ├── Dockerfile3 │ │ │ └── Dockerfile4 │ │ ├── build-with-from/ │ │ │ └── Containerfile │ │ ├── buildkit-mount/ │ │ │ ├── Containerfile5 │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile2 │ │ │ ├── Dockerfile3 │ │ │ ├── Dockerfile4 │ │ │ ├── Dockerfile6 │ │ │ ├── Dockerfilecacheread │ │ │ ├── Dockerfilecachereadwithoutz │ │ │ ├── Dockerfilecachewrite │ │ │ ├── Dockerfilecachewritesharing │ │ │ ├── Dockerfilecachewritewithoutz │ │ │ ├── Dockerfilemultiplemounts │ │ │ ├── Dockerfiletmpfs │ │ │ ├── Dockerfiletmpfscopyup │ │ │ ├── input_file │ │ │ └── subdir/ │ │ │ └── input_file │ │ ├── buildkit-mount-from/ │ │ │ ├── Dockerfilebindfrom │ │ │ ├── Dockerfilebindfromrelative │ │ │ ├── Dockerfilebindfromwithemptyfrom │ │ │ ├── Dockerfilebindfromwithoutsource │ │ │ ├── Dockerfilebindfromwriteable │ │ │ ├── Dockerfilebuildkitbase │ │ │ ├── Dockerfilebuildkitbaserelative │ │ │ ├── Dockerfilecachefrom │ │ │ ├── Dockerfilecachefromimage │ │ │ ├── Dockerfilecachemultiplefrom │ │ │ ├── Dockerfilemultistagefrom │ │ │ ├── Dockerfilemultistagefromcache │ │ │ ├── Dockermultistagefrom │ │ │ ├── hello │ │ │ ├── hello1 │ │ │ └── hello2 │ │ ├── cache-chown/ │ │ │ ├── Dockerfile.add1 │ │ │ ├── Dockerfile.add2 │ │ │ ├── Dockerfile.copy1 │ │ │ ├── Dockerfile.copy2 │ │ │ ├── Dockerfile.prev1 │ │ │ ├── Dockerfile.prev2 │ │ │ ├── Dockerfile.tar1 │ │ │ ├── Dockerfile.tar2 │ │ │ ├── Dockerfile.url1 │ │ │ ├── Dockerfile.url2 │ │ │ └── testfile │ │ ├── cache-format/ │ │ │ └── Dockerfile │ │ ├── cache-from/ │ │ │ └── Containerfile │ │ ├── cache-from-stage/ │ │ │ ├── Containerfile │ │ │ └── testfile │ │ ├── cache-mount-locked/ │ │ │ ├── Containerfile │ │ │ └── file │ │ ├── cache-scratch/ │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.config │ │ │ ├── Dockerfile.different1 │ │ │ └── Dockerfile.different2 │ │ ├── cache-stages/ │ │ │ ├── Dockerfile.1 │ │ │ ├── Dockerfile.2 │ │ │ └── Dockerfile.3 │ │ ├── capabilities/ │ │ │ └── Dockerfile │ │ ├── cdi/ │ │ │ ├── Dockerfile │ │ │ └── containers-cdi.yaml │ │ ├── check-race/ │ │ │ └── Containerfile │ │ ├── container-ignoresymlink/ │ │ │ ├── Dockerfile │ │ │ ├── hello │ │ │ └── world │ │ ├── containeranddockerfile/ │ │ │ ├── Containerfile │ │ │ └── Dockerfile │ │ ├── containerfile/ │ │ │ ├── Containerfile │ │ │ └── Containerfile.in │ │ ├── containerignore/ │ │ │ ├── .containerignore │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.succeed │ │ │ ├── subdir/ │ │ │ │ ├── sub1.txt │ │ │ │ └── sub2.txt │ │ │ ├── test1.txt │ │ │ └── test2.txt │ │ ├── context-escape-dir/ │ │ │ ├── testdir/ │ │ │ │ └── Containerfile │ │ │ └── upperfile.txt │ │ ├── context-from-stdin/ │ │ │ └── Dockerfile │ │ ├── copy-archive/ │ │ │ └── Containerfile │ │ ├── copy-chmod/ │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.bad │ │ │ ├── Dockerfile.combined │ │ │ └── copychmod.txt │ │ ├── copy-chown/ │ │ │ ├── Containerfile.chown_user │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.bad │ │ │ ├── Dockerfile.bad2 │ │ │ └── copychown.txt │ │ ├── copy-create-absolute-path/ │ │ │ ├── Dockerfile │ │ │ └── distutils.cfg │ │ ├── copy-create-relative-path/ │ │ │ ├── Dockerfile │ │ │ └── distutils.cfg │ │ ├── copy-envvar/ │ │ │ ├── Containerfile │ │ │ └── file-0.0.1.txt │ │ ├── copy-exclude/ │ │ │ ├── Containerfile │ │ │ ├── Containerfile.missing │ │ │ ├── test1.txt │ │ │ └── test2.txt │ │ ├── copy-from/ │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.bad │ │ │ ├── Dockerfile2 │ │ │ ├── Dockerfile2.bad │ │ │ ├── Dockerfile3 │ │ │ └── Dockerfile4 │ │ ├── copy-from-stage-scoped-arg/ │ │ │ ├── Containerfile │ │ │ └── Containerfile.multi-copy-arg-override │ │ ├── copy-globs/ │ │ │ ├── Containerfile │ │ │ ├── Containerfile.bad │ │ │ ├── Containerfile.missing │ │ │ ├── Dockerfile │ │ │ ├── test1.txt │ │ │ └── test2.txt │ │ ├── copy-multiple-files/ │ │ │ ├── Dockerfile │ │ │ ├── file │ │ │ └── file2 │ │ ├── copy-multistage-paths/ │ │ │ ├── Dockerfile.absolute │ │ │ ├── Dockerfile.invalid_from │ │ │ └── Dockerfile.relative │ │ ├── copy-parents/ │ │ │ ├── Containerfile │ │ │ ├── Containerfile-hardlinks │ │ │ ├── x/ │ │ │ │ ├── a.txt │ │ │ │ ├── y/ │ │ │ │ │ ├── a.txt │ │ │ │ │ └── b.txt │ │ │ │ └── z/ │ │ │ │ ├── a.txt │ │ │ │ └── b.txt │ │ │ └── y/ │ │ │ ├── a.txt │ │ │ └── b.txt │ │ ├── copy-root/ │ │ │ ├── Dockerfile │ │ │ └── distutils.cfg │ │ ├── copy-workdir/ │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.2 │ │ │ ├── file1.txt │ │ │ └── file2.txt │ │ ├── dest-final-slash/ │ │ │ └── Dockerfile │ │ ├── dest-symlink/ │ │ │ └── Dockerfile │ │ ├── dest-symlink-dangling/ │ │ │ └── Dockerfile │ │ ├── device/ │ │ │ └── Dockerfile │ │ ├── dns/ │ │ │ └── Dockerfile │ │ ├── dockerfile/ │ │ │ └── Dockerfile │ │ ├── dockerignore/ │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.succeed │ │ │ ├── subdir/ │ │ │ │ ├── sub1.txt │ │ │ │ └── sub2.txt │ │ │ ├── test1.txt │ │ │ └── test2.txt │ │ ├── dockerignore2/ │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ └── subdir/ │ │ │ ├── sub1.txt │ │ │ └── subsubdir/ │ │ │ └── subsub1.txt │ │ ├── dockerignore3/ │ │ │ ├── .dockerignore │ │ │ ├── BUILD.md │ │ │ ├── COPYRIGHT │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── README-secret.md │ │ │ ├── README.md │ │ │ ├── manifest │ │ │ ├── src/ │ │ │ │ ├── Makefile │ │ │ │ ├── cmd/ │ │ │ │ │ ├── Makefile │ │ │ │ │ └── main.in │ │ │ │ ├── etc/ │ │ │ │ │ ├── foo.conf │ │ │ │ │ └── foo.conf.d/ │ │ │ │ │ └── dropin.conf │ │ │ │ └── lib/ │ │ │ │ ├── Makefile │ │ │ │ └── framework.in │ │ │ ├── test1.txt │ │ │ ├── test2.txt │ │ │ └── test3.txt │ │ ├── dockerignore4/ │ │ │ ├── BUILD.md │ │ │ ├── COPYRIGHT │ │ │ ├── Dockerfile.test │ │ │ ├── Dockerfile.test.dockerignore │ │ │ ├── LICENSE │ │ │ ├── README-secret.md │ │ │ ├── README.md │ │ │ ├── manifest │ │ │ ├── src/ │ │ │ │ ├── Makefile │ │ │ │ ├── cmd/ │ │ │ │ │ ├── Makefile │ │ │ │ │ └── main.in │ │ │ │ ├── etc/ │ │ │ │ │ ├── foo.conf │ │ │ │ │ └── foo.conf.d/ │ │ │ │ │ └── dropin.conf │ │ │ │ └── lib/ │ │ │ │ ├── Makefile │ │ │ │ └── framework.in │ │ │ ├── test1.txt │ │ │ ├── test2.txt │ │ │ └── test3.txt │ │ ├── dockerignore6/ │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.dockerignore │ │ │ ├── Dockerfile.succeed │ │ │ ├── Dockerfile.succeed.dockerignore │ │ │ ├── subdir/ │ │ │ │ ├── sub1.txt │ │ │ │ └── sub2.txt │ │ │ ├── test1.txt │ │ │ └── test2.txt │ │ ├── dupe-arg-env-name/ │ │ │ └── Containerfile │ │ ├── env/ │ │ │ ├── Dockerfile.check-env │ │ │ ├── Dockerfile.env-from-image │ │ │ ├── Dockerfile.env-precedence │ │ │ ├── Dockerfile.env-same-file │ │ │ └── Dockerfile.special-chars │ │ ├── exit42/ │ │ │ └── Containerfile │ │ ├── from-as/ │ │ │ ├── Dockerfile │ │ │ └── Dockerfile.skip │ │ ├── from-base/ │ │ │ └── Containerfile │ │ ├── from-invalid-registry/ │ │ │ └── Containerfile │ │ ├── from-multiple-files/ │ │ │ ├── Dockerfile1.alpine │ │ │ ├── Dockerfile1.scratch │ │ │ ├── Dockerfile2.glob │ │ │ ├── Dockerfile2.nofrom │ │ │ └── Dockerfile2.withfrom │ │ ├── from-scratch/ │ │ │ ├── Containerfile │ │ │ ├── Containerfile2 │ │ │ └── Dockerfile │ │ ├── from-with-arg/ │ │ │ └── Containerfile │ │ ├── group/ │ │ │ └── Containerfile │ │ ├── hardlink/ │ │ │ └── Dockerfile │ │ ├── healthcheck/ │ │ │ └── Dockerfile │ │ ├── heredoc/ │ │ │ ├── Containerfile │ │ │ ├── Containerfile.bash_file │ │ │ ├── Containerfile.she_bang │ │ │ └── Containerfile.verify_mount_leak │ │ ├── heredoc-ignore/ │ │ │ ├── .containerignore │ │ │ └── Containerfile │ │ ├── inline-network/ │ │ │ ├── Dockerfile1 │ │ │ ├── Dockerfile2 │ │ │ ├── Dockerfile3 │ │ │ └── Dockerfile4 │ │ ├── layers-squash/ │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.hardlinks │ │ │ ├── Dockerfile.multi-stage │ │ │ └── artifact │ │ ├── leading-args/ │ │ │ └── Dockerfile │ │ ├── long-sleep/ │ │ │ └── Dockerfile │ │ ├── maintainer/ │ │ │ └── Dockerfile │ │ ├── masks/ │ │ │ ├── Containerfile │ │ │ └── test.sh │ │ ├── metadata-only/ │ │ │ └── Containerfile │ │ ├── mount/ │ │ │ └── Dockerfile │ │ ├── multi-stage-builds/ │ │ │ ├── Dockerfile.arg │ │ │ ├── Dockerfile.arg_in_copy │ │ │ ├── Dockerfile.arg_in_stage │ │ │ ├── Dockerfile.extended │ │ │ ├── Dockerfile.index │ │ │ ├── Dockerfile.mixed │ │ │ ├── Dockerfile.name │ │ │ ├── Dockerfile.rebase │ │ │ ├── Dockerfile.reused │ │ │ └── Dockerfile.reused2 │ │ ├── multi-stage-builds-small-as/ │ │ │ ├── Dockerfile.index │ │ │ ├── Dockerfile.mixed │ │ │ └── Dockerfile.name │ │ ├── multi-stage-only-base/ │ │ │ ├── Containerfile1 │ │ │ ├── Containerfile2 │ │ │ └── Containerfile3 │ │ ├── multiarch/ │ │ │ ├── Containerfile.reset-platform │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.built-in-args │ │ │ ├── Dockerfile.fail │ │ │ ├── Dockerfile.fail-multistage │ │ │ └── Dockerfile.no-run │ │ ├── namespaces/ │ │ │ └── Containerfile │ │ ├── network/ │ │ │ └── Containerfile │ │ ├── no-change/ │ │ │ └── Dockerfile │ │ ├── no-history/ │ │ │ └── Dockerfile │ │ ├── no-hostname/ │ │ │ ├── Containerfile │ │ │ └── Containerfile.noetc │ │ ├── non-directory-in-path/ │ │ │ └── non-directory │ │ ├── onbuild/ │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile1 │ │ │ └── Dockerfile2 │ │ ├── only-base/ │ │ │ └── Containerfile │ │ ├── platform-sets-args/ │ │ │ └── Containerfile │ │ ├── preprocess/ │ │ │ ├── Decomposed.in │ │ │ ├── Error.in │ │ │ ├── base │ │ │ ├── common │ │ │ └── install-base │ │ ├── preserve-volumes/ │ │ │ └── Dockerfile │ │ ├── pull/ │ │ │ └── Containerfile │ │ ├── recurse/ │ │ │ └── Dockerfile │ │ ├── run-mounts/ │ │ │ ├── Dockerfile.secret │ │ │ ├── Dockerfile.secret-access │ │ │ ├── Dockerfile.secret-mode │ │ │ ├── Dockerfile.secret-not-required │ │ │ ├── Dockerfile.secret-options │ │ │ ├── Dockerfile.secret-required │ │ │ ├── Dockerfile.secret-required-false │ │ │ ├── Dockerfile.secret-required-wo-value │ │ │ ├── Dockerfile.ssh │ │ │ ├── Dockerfile.ssh_access │ │ │ └── Dockerfile.ssh_options │ │ ├── run-privd/ │ │ │ └── Dockerfile │ │ ├── run-scenarios/ │ │ │ ├── Dockerfile.args │ │ │ ├── Dockerfile.cmd-empty-run │ │ │ ├── Dockerfile.cmd-run │ │ │ ├── Dockerfile.entrypoint-cmd-empty-run │ │ │ ├── Dockerfile.entrypoint-cmd-run │ │ │ ├── Dockerfile.entrypoint-empty-run │ │ │ ├── Dockerfile.entrypoint-run │ │ │ ├── Dockerfile.multi-args │ │ │ └── Dockerfile.noop-flags │ │ ├── save-stages/ │ │ │ ├── Dockerfile.arg-build-stages-and-chained-build-stages │ │ │ ├── Dockerfile.chained-three-build-stages │ │ │ ├── Dockerfile.chained-two-build-stages │ │ │ ├── Dockerfile.chained-two-build-stages-no-aliases │ │ │ ├── Dockerfile.empty-intermediate-build-stage │ │ │ ├── Dockerfile.final-uses-build-stage │ │ │ ├── Dockerfile.simple │ │ │ ├── Dockerfile.single-build-stage │ │ │ ├── Dockerfile.single-build-stage-modifiable │ │ │ ├── Dockerfile.single-build-stage-modifiable-renamed │ │ │ ├── Dockerfile.three-build-stages-parent-child-independent │ │ │ ├── Dockerfile.two-build-stages │ │ │ └── Dockerfile.two-build-stages-one-unused │ │ ├── secret-env/ │ │ │ └── Dockerfile │ │ ├── secret-relative/ │ │ │ ├── Dockerfile │ │ │ ├── secret1.txt │ │ │ └── secret2.txt │ │ ├── shell/ │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.build-shell-custom │ │ │ └── Dockerfile.build-shell-default │ │ ├── simple-multi-step/ │ │ │ └── Containerfile │ │ ├── stdio/ │ │ │ └── Dockerfile │ │ ├── supplemental-groups/ │ │ │ └── Dockerfile │ │ ├── symlink/ │ │ │ ├── Containerfile.add-tar-gz-with-link │ │ │ ├── Containerfile.add-tar-with-link │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.absolute-dir-symlink │ │ │ ├── Dockerfile.absolute-symlink │ │ │ ├── Dockerfile.multiple-symlinks │ │ │ ├── Dockerfile.relative-symlink │ │ │ ├── Dockerfile.replace-symlink │ │ │ └── Dockerfile.symlink-points-to-itself │ │ ├── target/ │ │ │ └── Dockerfile │ │ ├── targetarch/ │ │ │ └── Dockerfile │ │ ├── terminal/ │ │ │ └── Dockerfile │ │ ├── unrecognized/ │ │ │ └── Dockerfile │ │ ├── use-args/ │ │ │ ├── Containerfile │ │ │ ├── Containerfile.dest_nobrace │ │ │ └── Containerfile.destination │ │ ├── use-layers/ │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.2 │ │ │ ├── Dockerfile.3 │ │ │ ├── Dockerfile.4 │ │ │ ├── Dockerfile.5 │ │ │ ├── Dockerfile.6 │ │ │ ├── Dockerfile.7 │ │ │ ├── Dockerfile.build-args │ │ │ ├── Dockerfile.dangling-symlink │ │ │ ├── Dockerfile.fail-case │ │ │ ├── Dockerfile.multistage-copy │ │ │ └── Dockerfile.non-existent-registry │ │ ├── verify-cleanup/ │ │ │ ├── Dockerfile │ │ │ ├── hey │ │ │ └── secret1.txt │ │ ├── volume-ownership/ │ │ │ └── Dockerfile │ │ ├── volume-perms/ │ │ │ └── Dockerfile │ │ ├── volume-symlink/ │ │ │ ├── Dockerfile │ │ │ └── Dockerfile.no-symlink │ │ ├── with-arg/ │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile2 │ │ │ └── Dockerfilefromarg │ │ ├── workdir-symlink/ │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-2 │ │ │ └── Dockerfile-3 │ │ └── workdir-user/ │ │ └── Dockerfile │ ├── bud.bats │ ├── bud_overlay_leaks.bats │ ├── byid.bats │ ├── cdi.bats │ ├── chroot.bats │ ├── commit.bats │ ├── config.bats │ ├── conformance/ │ │ ├── README.md │ │ ├── conformance_test.go │ │ ├── selinux_linux_test.go │ │ ├── selinux_unsupported_test.go │ │ └── testdata/ │ │ ├── Dockerfile.add │ │ ├── Dockerfile.copyfrom_1 │ │ ├── Dockerfile.copyfrom_10 │ │ ├── Dockerfile.copyfrom_11 │ │ ├── Dockerfile.copyfrom_12 │ │ ├── Dockerfile.copyfrom_13 │ │ ├── Dockerfile.copyfrom_2 │ │ ├── Dockerfile.copyfrom_3 │ │ ├── Dockerfile.copyfrom_3_1 │ │ ├── Dockerfile.copyfrom_4 │ │ ├── Dockerfile.copyfrom_5 │ │ ├── Dockerfile.copyfrom_6 │ │ ├── Dockerfile.copyfrom_7 │ │ ├── Dockerfile.copyfrom_8 │ │ ├── Dockerfile.copyfrom_9 │ │ ├── Dockerfile.edgecases │ │ ├── Dockerfile.env │ │ ├── Dockerfile.exposedefault │ │ ├── Dockerfile.heredoc-quoting │ │ ├── Dockerfile.margs │ │ ├── Dockerfile.quoted-arg │ │ ├── Dockerfile.reusebase │ │ ├── Dockerfile.run.args │ │ ├── Dockerfile.shell │ │ ├── add/ │ │ │ ├── archive/ │ │ │ │ ├── Dockerfile.1 │ │ │ │ ├── Dockerfile.2 │ │ │ │ ├── Dockerfile.3 │ │ │ │ ├── Dockerfile.4 │ │ │ │ ├── Dockerfile.5 │ │ │ │ ├── Dockerfile.6 │ │ │ │ └── Dockerfile.7 │ │ │ ├── dir-not-dir/ │ │ │ │ └── Dockerfile │ │ │ ├── not-dir-dir/ │ │ │ │ └── Dockerfile │ │ │ ├── parent-clean/ │ │ │ │ └── Dockerfile │ │ │ ├── parent-dangling/ │ │ │ │ └── Dockerfile │ │ │ ├── parent-symlink/ │ │ │ │ └── Dockerfile │ │ │ └── populated-dir-not-dir/ │ │ │ └── Dockerfile │ │ ├── builtins/ │ │ │ ├── Dockerfile │ │ │ ├── otherfile.txt │ │ │ └── sourcefile.txt │ │ ├── chown-volume/ │ │ │ └── Dockerfile │ │ ├── copy/ │ │ │ ├── Dockerfile │ │ │ └── script │ │ ├── copy-escape-glob/ │ │ │ ├── Dockerfile │ │ │ └── app/ │ │ │ ├── [xyz]/ │ │ │ │ ├── [abc]/ │ │ │ │ │ └── file.txt │ │ │ │ └── file.txt │ │ │ ├── nope/ │ │ │ │ └── file.txt │ │ │ └── strauv/ │ │ │ └── file.txt │ │ ├── copy-parents/ │ │ │ ├── x/ │ │ │ │ ├── a.txt │ │ │ │ ├── y/ │ │ │ │ │ ├── a.txt │ │ │ │ │ └── b.txt │ │ │ │ └── z/ │ │ │ │ ├── a.txt │ │ │ │ └── b.txt │ │ │ └── y/ │ │ │ ├── a.txt │ │ │ └── b.txt │ │ ├── copyblahblub/ │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile2 │ │ │ ├── Dockerfile3 │ │ │ └── firstdir/ │ │ │ └── seconddir/ │ │ │ ├── dir-a/ │ │ │ │ └── file-a │ │ │ └── dir-b/ │ │ │ └── file-b │ │ ├── copychown/ │ │ │ ├── Dockerfile │ │ │ ├── script │ │ │ └── script2 │ │ ├── copydir/ │ │ │ ├── Dockerfile │ │ │ └── dir/ │ │ │ └── file │ │ ├── copyempty/ │ │ │ ├── .script │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile2 │ │ │ ├── script1 │ │ │ └── script2 │ │ ├── copyglob/ │ │ │ ├── Beach.txt │ │ │ ├── Dockerfile │ │ │ ├── a/ │ │ │ │ └── sub/ │ │ │ │ └── subsub/ │ │ │ │ ├── protopatriarchal.txt │ │ │ │ └── undestructible.txt │ │ │ ├── b/ │ │ │ │ ├── .sub/ │ │ │ │ │ ├── gade.txt │ │ │ │ │ └── parcae.txt │ │ │ │ ├── heliacally.txt │ │ │ │ ├── overgoing.txt │ │ │ │ └── sub/ │ │ │ │ ├── ileosigmoidostomy.txt │ │ │ │ └── overdilation.txt │ │ │ ├── c/ │ │ │ │ └── sub/ │ │ │ │ ├── disadvise.txt │ │ │ │ ├── subsub/ │ │ │ │ │ └── subsubsub/ │ │ │ │ │ ├── fiddlecome.txt │ │ │ │ │ └── unweariableness.txt │ │ │ │ └── travel-sick.txt │ │ │ ├── d/ │ │ │ │ ├── .sub/ │ │ │ │ │ ├── restocks.txt │ │ │ │ │ └── unblazoned.txt │ │ │ │ └── sub/ │ │ │ │ ├── alkalinity.txt │ │ │ │ └── glandules.txt │ │ │ ├── e/ │ │ │ │ ├── .sub/ │ │ │ │ │ ├── Tytonidae.txt │ │ │ │ │ └── vice-guilty.txt │ │ │ │ ├── Towroy.txt │ │ │ │ ├── sub/ │ │ │ │ │ └── subsub/ │ │ │ │ │ ├── near-blindness.txt │ │ │ │ │ └── paymaster-generalship.txt │ │ │ │ └── subjectivities.txt │ │ │ ├── f/ │ │ │ │ ├── .sub/ │ │ │ │ │ ├── bilobate.txt │ │ │ │ │ └── fine-headed.txt │ │ │ │ ├── Etnean.txt │ │ │ │ ├── Sheya.txt │ │ │ │ └── sub/ │ │ │ │ ├── Vernaccia.txt │ │ │ │ ├── inaccordance.txt │ │ │ │ └── subsub/ │ │ │ │ └── subsubsub/ │ │ │ │ ├── ankylosing.txt │ │ │ │ └── ocean-born.txt │ │ │ ├── g/ │ │ │ │ ├── sub/ │ │ │ │ │ ├── huerta.txt │ │ │ │ │ └── smopple.txt │ │ │ │ ├── triple-throw.txt │ │ │ │ └── unexciting.txt │ │ │ ├── h/ │ │ │ │ ├── .sub/ │ │ │ │ │ ├── Ellston.txt │ │ │ │ │ └── mine-run.txt │ │ │ │ └── sub/ │ │ │ │ ├── chromaticness.txt │ │ │ │ └── noninhabitancy.txt │ │ │ ├── i/ │ │ │ │ ├── .sub/ │ │ │ │ │ ├── Auer.txt │ │ │ │ │ └── hexachlorocyclohexane.txt │ │ │ │ └── sub/ │ │ │ │ └── subsub/ │ │ │ │ ├── Minnnie.txt │ │ │ │ ├── papsquidder.txt │ │ │ │ └── subsubsub/ │ │ │ │ ├── Croghan.txt │ │ │ │ └── stacc..txt │ │ │ ├── j/ │ │ │ │ └── sub/ │ │ │ │ ├── Hamon.txt │ │ │ │ ├── subsub/ │ │ │ │ │ └── subsubsub/ │ │ │ │ │ ├── anapaestic.txt │ │ │ │ │ └── castlelike.txt │ │ │ │ └── topsy-turvydom.txt │ │ │ ├── k/ │ │ │ │ ├── coembody.txt │ │ │ │ └── unvoweled.txt │ │ │ ├── l/ │ │ │ │ ├── .sub/ │ │ │ │ │ ├── galliots.txt │ │ │ │ │ └── minning.txt │ │ │ │ ├── sub/ │ │ │ │ │ └── subsub/ │ │ │ │ │ ├── misidentification.txt │ │ │ │ │ └── palling.txt │ │ │ │ ├── torpifying.txt │ │ │ │ └── unmarring.txt │ │ │ ├── m/ │ │ │ │ └── sub/ │ │ │ │ ├── cache.txt │ │ │ │ └── ribbon-marked.txt │ │ │ └── pasteups.txt │ │ ├── copyrename/ │ │ │ ├── Dockerfile │ │ │ └── file1 │ │ ├── copysymlink/ │ │ │ ├── Dockerfile │ │ │ └── Dockerfile2 │ │ ├── dir/ │ │ │ ├── Dockerfile │ │ │ ├── file │ │ │ └── subdir/ │ │ │ └── file2 │ │ ├── dockerignore/ │ │ │ ├── allowlist/ │ │ │ │ ├── alternating/ │ │ │ │ │ ├── .dockerignore │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── subdir/ │ │ │ │ │ └── subdir1/ │ │ │ │ │ └── subdir2/ │ │ │ │ │ └── subdir3/ │ │ │ │ │ └── subdir4/ │ │ │ │ │ └── subdir5/ │ │ │ │ │ └── file │ │ │ │ ├── alternating-nothing/ │ │ │ │ │ ├── .dockerignore │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── subdir/ │ │ │ │ │ └── subdir1/ │ │ │ │ │ └── subdir2/ │ │ │ │ │ └── subdir3/ │ │ │ │ │ └── subdir4/ │ │ │ │ │ └── subdir5/ │ │ │ │ │ └── file │ │ │ │ ├── alternating-other/ │ │ │ │ │ ├── .dockerignore │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── subdir/ │ │ │ │ │ └── subdir1/ │ │ │ │ │ └── subdir2/ │ │ │ │ │ └── subdir3/ │ │ │ │ │ └── subdir4/ │ │ │ │ │ └── subdir5/ │ │ │ │ │ └── file2 │ │ │ │ ├── nothing-dot/ │ │ │ │ │ ├── .dockerignore │ │ │ │ │ └── Dockerfile │ │ │ │ ├── nothing-slash/ │ │ │ │ │ ├── .dockerignore │ │ │ │ │ └── Dockerfile │ │ │ │ ├── subdir-file/ │ │ │ │ │ ├── .dockerignore │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── folder1/ │ │ │ │ │ ├── file1 │ │ │ │ │ └── file2 │ │ │ │ ├── subdir-nofile/ │ │ │ │ │ ├── .dockerignore │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── folder1/ │ │ │ │ │ ├── file1 │ │ │ │ │ └── file2 │ │ │ │ ├── subsubdir-file/ │ │ │ │ │ ├── .dockerignore │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── folder/ │ │ │ │ │ └── subfolder/ │ │ │ │ │ └── file │ │ │ │ ├── subsubdir-nofile/ │ │ │ │ │ ├── .dockerignore │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── folder/ │ │ │ │ │ └── file │ │ │ │ └── subsubdir-nosubdir/ │ │ │ │ ├── .dockerignore │ │ │ │ ├── Dockerfile │ │ │ │ └── folder/ │ │ │ │ └── file │ │ │ ├── empty/ │ │ │ │ ├── .dockerignore │ │ │ │ ├── Dockerfile │ │ │ │ └── test1.txt │ │ │ ├── exceptions-skip/ │ │ │ │ ├── .dockerignore │ │ │ │ ├── Dockerfile │ │ │ │ └── volume/ │ │ │ │ └── data/ │ │ │ │ └── oneline.txt │ │ │ ├── exceptions-weirdness-1/ │ │ │ │ ├── .dockerignore │ │ │ │ ├── Dockerfile │ │ │ │ └── subdir/ │ │ │ │ ├── sub1.txt │ │ │ │ ├── sub2.txt │ │ │ │ └── sub3.txt │ │ │ ├── exceptions-weirdness-2/ │ │ │ │ ├── .dockerignore │ │ │ │ ├── Dockerfile │ │ │ │ └── subdir/ │ │ │ │ ├── sub1.txt │ │ │ │ ├── sub2.txt │ │ │ │ └── sub3.txt │ │ │ ├── integration1/ │ │ │ │ ├── .dockerignore │ │ │ │ ├── Dockerfile │ │ │ │ ├── subdir/ │ │ │ │ │ ├── sub1.txt │ │ │ │ │ └── sub2.txt │ │ │ │ ├── test1.txt │ │ │ │ └── test2.txt │ │ │ ├── integration2/ │ │ │ │ ├── .dockerignore │ │ │ │ ├── Dockerfile │ │ │ │ └── subdir/ │ │ │ │ ├── sub1.txt │ │ │ │ └── subsubdir/ │ │ │ │ └── subsub1.txt │ │ │ ├── integration3/ │ │ │ │ ├── .dockerignore │ │ │ │ ├── BUILD.md │ │ │ │ ├── COPYRIGHT │ │ │ │ ├── Dockerfile │ │ │ │ ├── LICENSE │ │ │ │ ├── README-secret.md │ │ │ │ ├── README.md │ │ │ │ ├── manifest │ │ │ │ ├── src/ │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cmd/ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── main.in │ │ │ │ │ ├── etc/ │ │ │ │ │ │ ├── foo.conf │ │ │ │ │ │ └── foo.conf.d/ │ │ │ │ │ │ └── dropin.conf │ │ │ │ │ └── lib/ │ │ │ │ │ ├── Makefile │ │ │ │ │ └── framework.in │ │ │ │ ├── test1.txt │ │ │ │ ├── test2.txt │ │ │ │ └── test3.txt │ │ │ ├── minimal_test/ │ │ │ │ ├── .dockerignore │ │ │ │ ├── Dockerfile │ │ │ │ └── stuff/ │ │ │ │ └── huge/ │ │ │ │ └── usr/ │ │ │ │ └── bin/ │ │ │ │ ├── file1 │ │ │ │ └── file2 │ │ │ └── populated/ │ │ │ ├── .dotfile-a.txt │ │ │ ├── file-a.txt │ │ │ ├── file-b.txt │ │ │ ├── file-c.txt │ │ │ ├── subdir-b/ │ │ │ │ └── .dotfile-b.txt │ │ │ └── subdir-e/ │ │ │ ├── file-n.txt │ │ │ └── subdir-f/ │ │ │ └── file-o.txt │ │ ├── env/ │ │ │ └── precedence/ │ │ │ └── Dockerfile │ │ ├── header-builtin/ │ │ │ └── Dockerfile │ │ ├── heredoc/ │ │ │ ├── Dockerfile.heredoc_copy │ │ │ └── file │ │ ├── mount/ │ │ │ ├── Dockerfile │ │ │ ├── file │ │ │ └── file2 │ │ ├── mount-targets/ │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.mount │ │ │ └── true.go │ │ ├── multistage/ │ │ │ └── copyback/ │ │ │ └── Dockerfile │ │ ├── overlapdirwithoutslash/ │ │ │ ├── Dockerfile │ │ │ └── existing/ │ │ │ └── etc/ │ │ │ └── file-in-existing-dir │ │ ├── overlapdirwithslash/ │ │ │ ├── Dockerfile │ │ │ └── existing/ │ │ │ └── etc/ │ │ │ └── file-in-existing-dir │ │ ├── replace/ │ │ │ └── symlink-with-directory/ │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.2 │ │ │ ├── Dockerfile.3 │ │ │ ├── Dockerfile.4 │ │ │ ├── tree1/ │ │ │ │ └── directory/ │ │ │ │ └── file-in-directory │ │ │ └── tree2/ │ │ │ └── maybe-directory/ │ │ │ └── file-in-maybe-directory │ │ ├── subdir/ │ │ │ └── subdir/ │ │ │ └── Dockerfile │ │ ├── tar-g/ │ │ │ ├── Dockerfile │ │ │ ├── content.sh │ │ │ └── content.txt │ │ ├── transientmount/ │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.env │ │ │ ├── file │ │ │ └── subdir/ │ │ │ └── file2 │ │ ├── volume/ │ │ │ ├── Dockerfile │ │ │ ├── file │ │ │ └── file2 │ │ ├── volumerun/ │ │ │ ├── Dockerfile │ │ │ ├── file │ │ │ ├── file2 │ │ │ └── file4 │ │ └── wildcard/ │ │ ├── Dockerfile │ │ └── dir2/ │ │ ├── file.a │ │ ├── file.b │ │ ├── file.c │ │ └── file2.b │ ├── containers.bats │ ├── containers.conf │ ├── containers_conf.bats │ ├── copy/ │ │ └── copy.go │ ├── copy.bats │ ├── crash/ │ │ ├── crash_notunix.go │ │ └── crash_unix.go │ ├── deny.json │ ├── digest/ │ │ ├── README.md │ │ └── make-v2sN │ ├── digest.bats │ ├── docker.json │ ├── dumpspec/ │ │ ├── dumpspec.go │ │ ├── dumpspec_linux.go │ │ ├── dumpspec_notlinux.go │ │ ├── dumpspec_notunix.go │ │ ├── dumpspec_unix.go │ │ └── notes.md │ ├── formats.bats │ ├── from.bats │ ├── help.bats │ ├── helpers.bash │ ├── helpers.bash.t │ ├── history.bats │ ├── images.bats │ ├── imgtype/ │ │ └── imgtype.go │ ├── inet/ │ │ └── inet.go │ ├── info.bats │ ├── inspect.bats │ ├── lists.bats │ ├── loglevel.bats │ ├── mkcw.bats │ ├── mount.bats │ ├── namespaces.bats │ ├── overlay.bats │ ├── passwd/ │ │ ├── README.md │ │ └── passwd.go │ ├── platforms.bats │ ├── policy.json │ ├── pull.bats │ ├── push.bats │ ├── registries-cached.conf │ ├── registries.bats │ ├── registries.conf │ ├── registries.conf.block │ ├── registries.conf.hub │ ├── rename.bats │ ├── rm.bats │ ├── rmi.bats │ ├── rpc/ │ │ └── noop/ │ │ └── noop.go │ ├── rpc.bats │ ├── run.bats │ ├── sbom.bats │ ├── selinux.bats │ ├── serve/ │ │ └── serve.go │ ├── sign.bats │ ├── source-policy.bats │ ├── source.bats │ ├── squash.bats │ ├── ssh.bats │ ├── subscriptions.bats │ ├── tag.bats │ ├── test_buildah_authentication.sh │ ├── test_buildah_baseline.sh │ ├── test_buildah_build_rpm.sh │ ├── test_buildah_rpm.sh │ ├── test_runner.sh │ ├── testreport/ │ │ ├── testreport.go │ │ └── types/ │ │ └── types.go │ ├── tmt/ │ │ ├── system.fmf │ │ └── system.sh │ ├── tools/ │ │ ├── Makefile │ │ ├── go.mod │ │ ├── go.sum │ │ ├── tools.go │ │ └── vendor/ │ │ ├── github.com/ │ │ │ └── russross/ │ │ │ └── blackfriday/ │ │ │ └── v2/ │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── block.go │ │ │ ├── doc.go │ │ │ ├── entities.go │ │ │ ├── esc.go │ │ │ ├── html.go │ │ │ ├── inline.go │ │ │ ├── markdown.go │ │ │ ├── node.go │ │ │ └── smartypants.go │ │ └── modules.txt │ ├── tutorial/ │ │ └── tutorial.go │ ├── tutorial.bats │ ├── umount.bats │ ├── validate/ │ │ ├── buildahimages-are-sane │ │ ├── pr-should-include-tests │ │ ├── pr-should-include-tests.t │ │ └── whitespace.sh │ └── wait/ │ ├── wait_notunix.go │ └── wait_unix.go ├── troubleshooting.md ├── unmount.go ├── util/ │ ├── types.go │ ├── util.go │ ├── util_test.go │ ├── util_unix.go │ ├── util_unsupported.go │ └── util_windows.go ├── util.go └── vendor/ ├── cyphar.com/ │ └── go-pathrs/ │ ├── .golangci.yml │ ├── COPYING │ ├── doc.go │ ├── handle_linux.go │ ├── internal/ │ │ ├── fdutils/ │ │ │ └── fd_linux.go │ │ └── libpathrs/ │ │ ├── error_unix.go │ │ └── libpathrs_linux.go │ ├── procfs/ │ │ └── procfs_linux.go │ ├── root_linux.go │ └── utils_linux.go ├── dario.cat/ │ └── mergo/ │ ├── .deepsource.toml │ ├── .gitignore │ ├── .travis.yml │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FUNDING.json │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── doc.go │ ├── map.go │ ├── merge.go │ └── mergo.go ├── github.com/ │ ├── Azure/ │ │ └── go-ansiterm/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── constants.go │ │ ├── context.go │ │ ├── csi_entry_state.go │ │ ├── csi_param_state.go │ │ ├── escape_intermediate_state.go │ │ ├── escape_state.go │ │ ├── event_handler.go │ │ ├── ground_state.go │ │ ├── osc_string_state.go │ │ ├── parser.go │ │ ├── parser_action_helpers.go │ │ ├── parser_actions.go │ │ ├── states.go │ │ ├── utilities.go │ │ └── winterm/ │ │ ├── ansi.go │ │ ├── api.go │ │ ├── attr_translation.go │ │ ├── cursor_helpers.go │ │ ├── erase_helpers.go │ │ ├── scroll_helper.go │ │ ├── utilities.go │ │ └── win_event_handler.go │ ├── BurntSushi/ │ │ └── toml/ │ │ ├── .gitignore │ │ ├── COPYING │ │ ├── README.md │ │ ├── decode.go │ │ ├── deprecated.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── error.go │ │ ├── internal/ │ │ │ └── tz.go │ │ ├── lex.go │ │ ├── meta.go │ │ ├── parse.go │ │ ├── type_fields.go │ │ └── type_toml.go │ ├── Microsoft/ │ │ └── go-winio/ │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODEOWNERS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── backup.go │ │ ├── doc.go │ │ ├── ea.go │ │ ├── file.go │ │ ├── fileinfo.go │ │ ├── hvsock.go │ │ ├── internal/ │ │ │ ├── fs/ │ │ │ │ ├── doc.go │ │ │ │ ├── fs.go │ │ │ │ ├── security.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── socket/ │ │ │ │ ├── rawaddr.go │ │ │ │ ├── socket.go │ │ │ │ └── zsyscall_windows.go │ │ │ └── stringbuffer/ │ │ │ └── wstring.go │ │ ├── pipe.go │ │ ├── pkg/ │ │ │ └── guid/ │ │ │ ├── guid.go │ │ │ ├── guid_nonwindows.go │ │ │ ├── guid_windows.go │ │ │ └── variant_string.go │ │ ├── privilege.go │ │ ├── reparse.go │ │ ├── sd.go │ │ ├── syscall.go │ │ └── zsyscall_windows.go │ ├── VividCortex/ │ │ └── ewma/ │ │ ├── .gitignore │ │ ├── .whitesource │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codecov.yml │ │ └── ewma.go │ ├── acarl005/ │ │ └── stripansi/ │ │ ├── LICENSE │ │ ├── README.md │ │ └── stripansi.go │ ├── aead/ │ │ └── serpent/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── sbox_ref.go │ │ ├── serpent.go │ │ └── serpent_ref.go │ ├── cespare/ │ │ └── xxhash/ │ │ └── v2/ │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── testall.sh │ │ ├── xxhash.go │ │ ├── xxhash_amd64.s │ │ ├── xxhash_arm64.s │ │ ├── xxhash_asm.go │ │ ├── xxhash_other.go │ │ ├── xxhash_safe.go │ │ └── xxhash_unsafe.go │ ├── chzyer/ │ │ └── readline/ │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ansi_windows.go │ │ ├── complete.go │ │ ├── complete_helper.go │ │ ├── complete_segment.go │ │ ├── history.go │ │ ├── operation.go │ │ ├── password.go │ │ ├── rawreader_windows.go │ │ ├── readline.go │ │ ├── remote.go │ │ ├── runebuf.go │ │ ├── runes.go │ │ ├── search.go │ │ ├── std.go │ │ ├── std_windows.go │ │ ├── term.go │ │ ├── term_bsd.go │ │ ├── term_linux.go │ │ ├── term_nosyscall6.go │ │ ├── term_unix.go │ │ ├── term_windows.go │ │ ├── terminal.go │ │ ├── utils.go │ │ ├── utils_unix.go │ │ ├── utils_windows.go │ │ ├── vim.go │ │ └── windows_api.go │ ├── clipperhouse/ │ │ └── uax29/ │ │ └── v2/ │ │ ├── LICENSE │ │ └── graphemes/ │ │ ├── README.md │ │ ├── ansi.go │ │ ├── ansi8.go │ │ ├── iterator.go │ │ ├── reader.go │ │ ├── splitfunc.go │ │ └── trie.go │ ├── containerd/ │ │ ├── errdefs/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── errors.go │ │ │ ├── pkg/ │ │ │ │ ├── LICENSE │ │ │ │ ├── errhttp/ │ │ │ │ │ └── http.go │ │ │ │ └── internal/ │ │ │ │ └── cause/ │ │ │ │ └── cause.go │ │ │ └── resolve.go │ │ ├── log/ │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── context.go │ │ ├── platforms/ │ │ │ ├── .gitattributes │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── compare.go │ │ │ ├── cpuinfo.go │ │ │ ├── cpuinfo_linux.go │ │ │ ├── cpuinfo_other.go │ │ │ ├── database.go │ │ │ ├── defaults.go │ │ │ ├── defaults_darwin.go │ │ │ ├── defaults_freebsd.go │ │ │ ├── defaults_unix.go │ │ │ ├── defaults_windows.go │ │ │ ├── errors.go │ │ │ ├── platform_windows_compat.go │ │ │ └── platforms.go │ │ ├── stargz-snapshotter/ │ │ │ └── estargz/ │ │ │ ├── LICENSE │ │ │ ├── build.go │ │ │ ├── errorutil/ │ │ │ │ └── errors.go │ │ │ ├── estargz.go │ │ │ ├── gzip.go │ │ │ ├── testutil.go │ │ │ └── types.go │ │ └── typeurl/ │ │ └── v2/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── types.go │ │ └── types_gogo.go │ ├── containers/ │ │ ├── libtrust/ │ │ │ ├── CODE-OF-CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── certificates.go │ │ │ ├── doc.go │ │ │ ├── ec_key.go │ │ │ ├── ec_key_no_openssl.go │ │ │ ├── ec_key_openssl.go │ │ │ ├── filter.go │ │ │ ├── hash.go │ │ │ ├── jsonsign.go │ │ │ ├── key.go │ │ │ ├── key_files.go │ │ │ ├── key_manager.go │ │ │ ├── rsa_key.go │ │ │ └── util.go │ │ ├── luksy/ │ │ │ ├── .cirrus.yml │ │ │ ├── .dockerignore │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── decrypt.go │ │ │ ├── encrypt.go │ │ │ ├── encryption.go │ │ │ ├── luks.go │ │ │ ├── tune.go │ │ │ ├── v1header.go │ │ │ ├── v2header.go │ │ │ └── v2json.go │ │ └── ocicrypt/ │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── ADOPTERS.md │ │ ├── CODE-OF-CONDUCT.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── blockcipher/ │ │ │ ├── blockcipher.go │ │ │ └── blockcipher_aes_ctr.go │ │ ├── config/ │ │ │ ├── config.go │ │ │ ├── constructors.go │ │ │ ├── keyprovider-config/ │ │ │ │ └── config.go │ │ │ └── pkcs11config/ │ │ │ └── config.go │ │ ├── crypto/ │ │ │ └── pkcs11/ │ │ │ ├── common.go │ │ │ ├── pkcs11helpers.go │ │ │ ├── pkcs11helpers_nocgo.go │ │ │ └── utils.go │ │ ├── encryption.go │ │ ├── gpg.go │ │ ├── gpgvault.go │ │ ├── helpers/ │ │ │ └── parse_helpers.go │ │ ├── keywrap/ │ │ │ ├── jwe/ │ │ │ │ └── keywrapper_jwe.go │ │ │ ├── keyprovider/ │ │ │ │ └── keyprovider.go │ │ │ ├── keywrap.go │ │ │ ├── pgp/ │ │ │ │ └── keywrapper_gpg.go │ │ │ ├── pkcs11/ │ │ │ │ └── keywrapper_pkcs11.go │ │ │ └── pkcs7/ │ │ │ └── keywrapper_pkcs7.go │ │ ├── reader.go │ │ ├── spec/ │ │ │ └── spec.go │ │ └── utils/ │ │ ├── delayedreader.go │ │ ├── ioutils.go │ │ ├── keyprovider/ │ │ │ ├── keyprovider.pb.go │ │ │ └── keyprovider.proto │ │ ├── testing.go │ │ └── utils.go │ ├── coreos/ │ │ └── go-systemd/ │ │ └── v22/ │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── dbus/ │ │ ├── dbus.go │ │ ├── methods.go │ │ ├── properties.go │ │ ├── set.go │ │ ├── subscription.go │ │ └── subscription_set.go │ ├── cyberphone/ │ │ └── json-canonicalization/ │ │ ├── LICENSE │ │ └── go/ │ │ └── src/ │ │ └── webpki.org/ │ │ └── jsoncanonicalizer/ │ │ ├── es6numfmt.go │ │ └── jsoncanonicalizer.go │ ├── cyphar/ │ │ └── filepath-securejoin/ │ │ ├── .golangci.yml │ │ ├── CHANGELOG.md │ │ ├── COPYING.md │ │ ├── LICENSE.BSD │ │ ├── LICENSE.MPL-2.0 │ │ ├── README.md │ │ ├── VERSION │ │ ├── codecov.yml │ │ ├── doc.go │ │ ├── internal/ │ │ │ └── consts/ │ │ │ └── consts.go │ │ ├── join.go │ │ ├── pathrs-lite/ │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── internal/ │ │ │ │ ├── assert/ │ │ │ │ │ └── assert.go │ │ │ │ ├── errors_linux.go │ │ │ │ ├── fd/ │ │ │ │ │ ├── at_linux.go │ │ │ │ │ ├── fd.go │ │ │ │ │ ├── fd_linux.go │ │ │ │ │ ├── mount_linux.go │ │ │ │ │ └── openat2_linux.go │ │ │ │ ├── gocompat/ │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── gocompat_atomic_go119.go │ │ │ │ │ ├── gocompat_atomic_unsupported.go │ │ │ │ │ ├── gocompat_errors_go120.go │ │ │ │ │ ├── gocompat_errors_unsupported.go │ │ │ │ │ ├── gocompat_generics_go121.go │ │ │ │ │ └── gocompat_generics_unsupported.go │ │ │ │ ├── gopathrs/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── lookup_linux.go │ │ │ │ │ ├── mkdir_linux.go │ │ │ │ │ ├── open_linux.go │ │ │ │ │ └── openat2_linux.go │ │ │ │ ├── kernelversion/ │ │ │ │ │ └── kernel_linux.go │ │ │ │ ├── linux/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── mount_linux.go │ │ │ │ │ └── openat2_linux.go │ │ │ │ └── procfs/ │ │ │ │ ├── procfs_linux.go │ │ │ │ └── procfs_lookup_linux.go │ │ │ ├── mkdir.go │ │ │ ├── mkdir_libpathrs.go │ │ │ ├── mkdir_purego.go │ │ │ ├── open.go │ │ │ ├── open_libpathrs.go │ │ │ ├── open_purego.go │ │ │ └── procfs/ │ │ │ ├── procfs_libpathrs.go │ │ │ └── procfs_purego.go │ │ └── vfs.go │ ├── davecgh/ │ │ └── go-spew/ │ │ ├── LICENSE │ │ └── spew/ │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go │ ├── disiqueira/ │ │ └── gotree/ │ │ └── v3/ │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _config.yml │ │ └── gotree.go │ ├── distribution/ │ │ └── reference/ │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE-OF-CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── GOVERNANCE.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── helpers.go │ │ ├── normalize.go │ │ ├── reference.go │ │ ├── regexp.go │ │ └── sort.go │ ├── docker/ │ │ ├── distribution/ │ │ │ ├── LICENSE │ │ │ └── registry/ │ │ │ └── api/ │ │ │ ├── errcode/ │ │ │ │ ├── errors.go │ │ │ │ ├── handler.go │ │ │ │ └── register.go │ │ │ └── v2/ │ │ │ ├── descriptors.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── headerparser.go │ │ │ ├── routes.go │ │ │ └── urls.go │ │ ├── docker/ │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── api/ │ │ │ └── types/ │ │ │ ├── filters/ │ │ │ │ ├── errors.go │ │ │ │ ├── filters_deprecated.go │ │ │ │ └── parse.go │ │ │ ├── registry/ │ │ │ │ ├── authconfig.go │ │ │ │ ├── authenticate.go │ │ │ │ ├── registry.go │ │ │ │ └── search.go │ │ │ └── versions/ │ │ │ └── compare.go │ │ ├── docker-credential-helpers/ │ │ │ ├── LICENSE │ │ │ ├── client/ │ │ │ │ ├── client.go │ │ │ │ └── command.go │ │ │ └── credentials/ │ │ │ ├── credentials.go │ │ │ ├── error.go │ │ │ ├── helper.go │ │ │ └── version.go │ │ ├── go-connections/ │ │ │ ├── LICENSE │ │ │ ├── sockets/ │ │ │ │ ├── inmem_socket.go │ │ │ │ ├── proxy.go │ │ │ │ ├── sockets.go │ │ │ │ ├── sockets_unix.go │ │ │ │ ├── sockets_windows.go │ │ │ │ ├── tcp_socket.go │ │ │ │ ├── unix_socket.go │ │ │ │ ├── unix_socket_unix.go │ │ │ │ └── unix_socket_windows.go │ │ │ └── tlsconfig/ │ │ │ ├── certpool.go │ │ │ └── config.go │ │ └── go-units/ │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── circle.yml │ │ ├── duration.go │ │ ├── size.go │ │ └── ulimit.go │ ├── felixge/ │ │ └── httpsnoop/ │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── capture_metrics.go │ │ ├── docs.go │ │ ├── wrap_generated_gteq_1.8.go │ │ └── wrap_generated_lt_1.8.go │ ├── fsnotify/ │ │ └── fsnotify/ │ │ ├── .cirrus.yml │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backend_fen.go │ │ ├── backend_inotify.go │ │ ├── backend_kqueue.go │ │ ├── backend_other.go │ │ ├── backend_windows.go │ │ ├── fsnotify.go │ │ ├── internal/ │ │ │ ├── darwin.go │ │ │ ├── debug_darwin.go │ │ │ ├── debug_dragonfly.go │ │ │ ├── debug_freebsd.go │ │ │ ├── debug_kqueue.go │ │ │ ├── debug_linux.go │ │ │ ├── debug_netbsd.go │ │ │ ├── debug_openbsd.go │ │ │ ├── debug_solaris.go │ │ │ ├── debug_windows.go │ │ │ ├── freebsd.go │ │ │ ├── internal.go │ │ │ ├── unix.go │ │ │ ├── unix2.go │ │ │ └── windows.go │ │ ├── shared.go │ │ ├── staticcheck.conf │ │ ├── system_bsd.go │ │ └── system_darwin.go │ ├── fsouza/ │ │ └── go-dockerclient/ │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── DOCKER-LICENSE │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── auth.go │ │ ├── change.go │ │ ├── client.go │ │ ├── client_unix.go │ │ ├── client_windows.go │ │ ├── container.go │ │ ├── container_archive.go │ │ ├── container_attach.go │ │ ├── container_changes.go │ │ ├── container_commit.go │ │ ├── container_copy.go │ │ ├── container_create.go │ │ ├── container_export.go │ │ ├── container_inspect.go │ │ ├── container_kill.go │ │ ├── container_list.go │ │ ├── container_logs.go │ │ ├── container_pause.go │ │ ├── container_prune.go │ │ ├── container_remove.go │ │ ├── container_rename.go │ │ ├── container_resize.go │ │ ├── container_restart.go │ │ ├── container_start.go │ │ ├── container_stats.go │ │ ├── container_stop.go │ │ ├── container_top.go │ │ ├── container_unpause.go │ │ ├── container_update.go │ │ ├── container_wait.go │ │ ├── distribution.go │ │ ├── env.go │ │ ├── event.go │ │ ├── exec.go │ │ ├── image.go │ │ ├── misc.go │ │ ├── network.go │ │ ├── plugin.go │ │ ├── registry_auth.go │ │ ├── signal.go │ │ ├── system.go │ │ ├── tar.go │ │ ├── tls.go │ │ └── volume.go │ ├── go-jose/ │ │ └── go-jose/ │ │ └── v4/ │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── asymmetric.go │ │ ├── cipher/ │ │ │ ├── cbc_hmac.go │ │ │ ├── concat_kdf.go │ │ │ ├── ecdh_es.go │ │ │ └── key_wrap.go │ │ ├── crypter.go │ │ ├── doc.go │ │ ├── encoding.go │ │ ├── json/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── indent.go │ │ │ ├── scanner.go │ │ │ ├── stream.go │ │ │ └── tags.go │ │ ├── jwe.go │ │ ├── jwk.go │ │ ├── jws.go │ │ ├── opaque.go │ │ ├── shared.go │ │ ├── signing.go │ │ └── symmetric.go │ ├── go-logr/ │ │ ├── logr/ │ │ │ ├── .golangci.yaml │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── context.go │ │ │ ├── context_noslog.go │ │ │ ├── context_slog.go │ │ │ ├── discard.go │ │ │ ├── funcr/ │ │ │ │ ├── funcr.go │ │ │ │ └── slogsink.go │ │ │ ├── logr.go │ │ │ ├── sloghandler.go │ │ │ ├── slogr.go │ │ │ └── slogsink.go │ │ └── stdr/ │ │ ├── LICENSE │ │ ├── README.md │ │ └── stdr.go │ ├── godbus/ │ │ └── dbus/ │ │ └── v5/ │ │ ├── .cirrus.yml │ │ ├── .golangci.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── auth.go │ │ ├── auth_anonymous.go │ │ ├── auth_default_other.go │ │ ├── auth_default_windows.go │ │ ├── auth_external.go │ │ ├── auth_sha1_windows.go │ │ ├── call.go │ │ ├── conn.go │ │ ├── conn_darwin.go │ │ ├── conn_other.go │ │ ├── conn_unix.go │ │ ├── conn_windows.go │ │ ├── dbus.go │ │ ├── decoder.go │ │ ├── default_handler.go │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── escape.go │ │ ├── export.go │ │ ├── match.go │ │ ├── message.go │ │ ├── object.go │ │ ├── sequence.go │ │ ├── sequential_handler.go │ │ ├── server_interfaces.go │ │ ├── sig.go │ │ ├── transport_darwin.go │ │ ├── transport_generic.go │ │ ├── transport_nonce_tcp.go │ │ ├── transport_tcp.go │ │ ├── transport_unix.go │ │ ├── transport_unixcred_dragonfly.go │ │ ├── transport_unixcred_freebsd.go │ │ ├── transport_unixcred_linux.go │ │ ├── transport_unixcred_netbsd.go │ │ ├── transport_unixcred_openbsd.go │ │ ├── transport_zos.go │ │ ├── variant.go │ │ ├── variant_lexer.go │ │ └── variant_parser.go │ ├── gogo/ │ │ └── protobuf/ │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── proto/ │ │ ├── Makefile │ │ ├── clone.go │ │ ├── custom_gogo.go │ │ ├── decode.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── duration.go │ │ ├── duration_gogo.go │ │ ├── encode.go │ │ ├── encode_gogo.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── extensions_gogo.go │ │ ├── lib.go │ │ ├── lib_gogo.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_reflect_gogo.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_gogo.go │ │ ├── properties.go │ │ ├── properties_gogo.go │ │ ├── skip_gogo.go │ │ ├── table_marshal.go │ │ ├── table_marshal_gogo.go │ │ ├── table_merge.go │ │ ├── table_unmarshal.go │ │ ├── table_unmarshal_gogo.go │ │ ├── text.go │ │ ├── text_gogo.go │ │ ├── text_parser.go │ │ ├── timestamp.go │ │ ├── timestamp_gogo.go │ │ ├── wrappers.go │ │ └── wrappers_gogo.go │ ├── golang/ │ │ └── protobuf/ │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── proto/ │ │ ├── buffer.go │ │ ├── defaults.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── extensions.go │ │ ├── properties.go │ │ ├── proto.go │ │ ├── registry.go │ │ ├── text_decode.go │ │ ├── text_encode.go │ │ ├── wire.go │ │ └── wrappers.go │ ├── google/ │ │ ├── go-containerregistry/ │ │ │ ├── LICENSE │ │ │ └── pkg/ │ │ │ ├── name/ │ │ │ │ ├── README.md │ │ │ │ ├── check.go │ │ │ │ ├── digest.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── options.go │ │ │ │ ├── ref.go │ │ │ │ ├── registry.go │ │ │ │ ├── repository.go │ │ │ │ └── tag.go │ │ │ └── v1/ │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── hash.go │ │ │ ├── image.go │ │ │ ├── index.go │ │ │ ├── layer.go │ │ │ ├── manifest.go │ │ │ ├── platform.go │ │ │ ├── progress.go │ │ │ ├── types/ │ │ │ │ └── types.go │ │ │ └── zz_deepcopy_generated.go │ │ ├── go-intervals/ │ │ │ ├── LICENSE │ │ │ └── intervalset/ │ │ │ ├── intervalset.go │ │ │ └── intervalset_immutable.go │ │ └── uuid/ │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── hash.go │ │ ├── marshal.go │ │ ├── node.go │ │ ├── node_js.go │ │ ├── node_net.go │ │ ├── null.go │ │ ├── sql.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── version1.go │ │ ├── version4.go │ │ ├── version6.go │ │ └── version7.go │ ├── gorilla/ │ │ └── mux/ │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── doc.go │ │ ├── middleware.go │ │ ├── mux.go │ │ ├── regexp.go │ │ ├── route.go │ │ └── test_helpers.go │ ├── hashicorp/ │ │ ├── errwrap/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── errwrap.go │ │ └── go-multierror/ │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── append.go │ │ ├── flatten.go │ │ ├── format.go │ │ ├── group.go │ │ ├── multierror.go │ │ ├── prefix.go │ │ └── sort.go │ ├── inconshreveable/ │ │ └── mousetrap/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── trap_others.go │ │ └── trap_windows.go │ ├── jinzhu/ │ │ └── copier/ │ │ ├── .gitignore │ │ ├── License │ │ ├── README.md │ │ ├── copier.go │ │ └── errors.go │ ├── klauspost/ │ │ ├── compress/ │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .goreleaser.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── compressible.go │ │ │ ├── flate/ │ │ │ │ ├── deflate.go │ │ │ │ ├── dict_decoder.go │ │ │ │ ├── fast_encoder.go │ │ │ │ ├── huffman_bit_writer.go │ │ │ │ ├── huffman_code.go │ │ │ │ ├── huffman_sortByFreq.go │ │ │ │ ├── huffman_sortByLiteral.go │ │ │ │ ├── inflate.go │ │ │ │ ├── inflate_gen.go │ │ │ │ ├── level1.go │ │ │ │ ├── level2.go │ │ │ │ ├── level3.go │ │ │ │ ├── level4.go │ │ │ │ ├── level5.go │ │ │ │ ├── level6.go │ │ │ │ ├── matchlen_generic.go │ │ │ │ ├── regmask_amd64.go │ │ │ │ ├── regmask_other.go │ │ │ │ ├── stateless.go │ │ │ │ └── token.go │ │ │ ├── fse/ │ │ │ │ ├── README.md │ │ │ │ ├── bitreader.go │ │ │ │ ├── bitwriter.go │ │ │ │ ├── bytereader.go │ │ │ │ ├── compress.go │ │ │ │ ├── decompress.go │ │ │ │ └── fse.go │ │ │ ├── gen.sh │ │ │ ├── huff0/ │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bitreader.go │ │ │ │ ├── bitwriter.go │ │ │ │ ├── compress.go │ │ │ │ ├── decompress.go │ │ │ │ ├── decompress_amd64.go │ │ │ │ ├── decompress_amd64.s │ │ │ │ ├── decompress_generic.go │ │ │ │ └── huff0.go │ │ │ ├── internal/ │ │ │ │ ├── cpuinfo/ │ │ │ │ │ ├── cpuinfo.go │ │ │ │ │ ├── cpuinfo_amd64.go │ │ │ │ │ └── cpuinfo_amd64.s │ │ │ │ ├── le/ │ │ │ │ │ ├── le.go │ │ │ │ │ ├── unsafe_disabled.go │ │ │ │ │ └── unsafe_enabled.go │ │ │ │ └── snapref/ │ │ │ │ ├── LICENSE │ │ │ │ ├── decode.go │ │ │ │ ├── decode_other.go │ │ │ │ ├── encode.go │ │ │ │ ├── encode_other.go │ │ │ │ └── snappy.go │ │ │ ├── s2sx.mod │ │ │ ├── s2sx.sum │ │ │ └── zstd/ │ │ │ ├── README.md │ │ │ ├── bitreader.go │ │ │ ├── bitwriter.go │ │ │ ├── blockdec.go │ │ │ ├── blockenc.go │ │ │ ├── blocktype_string.go │ │ │ ├── bytebuf.go │ │ │ ├── bytereader.go │ │ │ ├── decodeheader.go │ │ │ ├── decoder.go │ │ │ ├── decoder_options.go │ │ │ ├── dict.go │ │ │ ├── enc_base.go │ │ │ ├── enc_best.go │ │ │ ├── enc_better.go │ │ │ ├── enc_dfast.go │ │ │ ├── enc_fast.go │ │ │ ├── encoder.go │ │ │ ├── encoder_options.go │ │ │ ├── framedec.go │ │ │ ├── frameenc.go │ │ │ ├── fse_decoder.go │ │ │ ├── fse_decoder_amd64.go │ │ │ ├── fse_decoder_amd64.s │ │ │ ├── fse_decoder_generic.go │ │ │ ├── fse_encoder.go │ │ │ ├── fse_predefined.go │ │ │ ├── hash.go │ │ │ ├── history.go │ │ │ ├── internal/ │ │ │ │ └── xxhash/ │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── xxhash.go │ │ │ │ ├── xxhash_amd64.s │ │ │ │ ├── xxhash_arm64.s │ │ │ │ ├── xxhash_asm.go │ │ │ │ ├── xxhash_other.go │ │ │ │ └── xxhash_safe.go │ │ │ ├── matchlen_amd64.go │ │ │ ├── matchlen_amd64.s │ │ │ ├── matchlen_generic.go │ │ │ ├── seqdec.go │ │ │ ├── seqdec_amd64.go │ │ │ ├── seqdec_amd64.s │ │ │ ├── seqdec_generic.go │ │ │ ├── seqenc.go │ │ │ ├── simple_go124.go │ │ │ ├── snappy.go │ │ │ ├── zip.go │ │ │ └── zstd.go │ │ └── pgzip/ │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── GO_LICENSE │ │ ├── LICENSE │ │ ├── README.md │ │ ├── gunzip.go │ │ └── gzip.go │ ├── mattn/ │ │ ├── go-runewidth/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── benchstat.txt │ │ │ ├── new.txt │ │ │ ├── old.txt │ │ │ ├── runewidth.go │ │ │ ├── runewidth_appengine.go │ │ │ ├── runewidth_js.go │ │ │ ├── runewidth_posix.go │ │ │ ├── runewidth_table.go │ │ │ └── runewidth_windows.go │ │ ├── go-shellwords/ │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.test.sh │ │ │ ├── shellwords.go │ │ │ ├── util_posix.go │ │ │ └── util_windows.go │ │ └── go-sqlite3/ │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backup.go │ │ ├── callback.go │ │ ├── convert.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── sqlite3-binding.c │ │ ├── sqlite3-binding.h │ │ ├── sqlite3.go │ │ ├── sqlite3_context.go │ │ ├── sqlite3_func_crypt.go │ │ ├── sqlite3_go18.go │ │ ├── sqlite3_libsqlite3.go │ │ ├── sqlite3_load_extension.go │ │ ├── sqlite3_load_extension_omit.go │ │ ├── sqlite3_opt_allow_uri_authority.go │ │ ├── sqlite3_opt_app_armor.go │ │ ├── sqlite3_opt_column_metadata.go │ │ ├── sqlite3_opt_foreign_keys.go │ │ ├── sqlite3_opt_fts5.go │ │ ├── sqlite3_opt_icu.go │ │ ├── sqlite3_opt_introspect.go │ │ ├── sqlite3_opt_math_functions.go │ │ ├── sqlite3_opt_os_trace.go │ │ ├── sqlite3_opt_percentile.go │ │ ├── sqlite3_opt_preupdate.go │ │ ├── sqlite3_opt_preupdate_hook.go │ │ ├── sqlite3_opt_preupdate_omit.go │ │ ├── sqlite3_opt_secure_delete.go │ │ ├── sqlite3_opt_secure_delete_fast.go │ │ ├── sqlite3_opt_serialize.go │ │ ├── sqlite3_opt_serialize_omit.go │ │ ├── sqlite3_opt_stat4.go │ │ ├── sqlite3_opt_unlock_notify.c │ │ ├── sqlite3_opt_unlock_notify.go │ │ ├── sqlite3_opt_userauth.go │ │ ├── sqlite3_opt_userauth_omit.go │ │ ├── sqlite3_opt_vacuum_full.go │ │ ├── sqlite3_opt_vacuum_incr.go │ │ ├── sqlite3_opt_vtable.go │ │ ├── sqlite3_other.go │ │ ├── sqlite3_solaris.go │ │ ├── sqlite3_trace.go │ │ ├── sqlite3_type.go │ │ ├── sqlite3_usleep_windows.go │ │ ├── sqlite3_windows.go │ │ ├── sqlite3ext.h │ │ └── static_mock.go │ ├── miekg/ │ │ └── pkcs11/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile.release │ │ ├── README.md │ │ ├── error.go │ │ ├── params.go │ │ ├── pkcs11.go │ │ ├── pkcs11.h │ │ ├── pkcs11f.h │ │ ├── pkcs11go.h │ │ ├── pkcs11t.h │ │ ├── release.go │ │ ├── softhsm.conf │ │ ├── softhsm2.conf │ │ ├── types.go │ │ ├── vendor.go │ │ └── zconst.go │ ├── mistifyio/ │ │ └── go-zfs/ │ │ └── v4/ │ │ ├── .envrc │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .yamllint │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── Vagrantfile │ │ ├── error.go │ │ ├── lint.mk │ │ ├── rules.mk │ │ ├── shell.nix │ │ ├── utils.go │ │ ├── utils_notsolaris.go │ │ ├── utils_solaris.go │ │ ├── zfs.go │ │ └── zpool.go │ ├── moby/ │ │ ├── buildkit/ │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── frontend/ │ │ │ │ └── dockerfile/ │ │ │ │ ├── command/ │ │ │ │ │ └── command.go │ │ │ │ ├── parser/ │ │ │ │ │ ├── directives.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── line_parsers.go │ │ │ │ │ ├── parser.go │ │ │ │ │ └── split_command.go │ │ │ │ └── shell/ │ │ │ │ ├── envVarTest │ │ │ │ ├── equal_env_unix.go │ │ │ │ ├── equal_env_windows.go │ │ │ │ ├── lex.go │ │ │ │ └── wordsTest │ │ │ └── util/ │ │ │ └── stack/ │ │ │ ├── compress.go │ │ │ ├── stack.go │ │ │ ├── stack.pb.go │ │ │ ├── stack.proto │ │ │ └── stack_vtproto.pb.go │ │ ├── docker-image-spec/ │ │ │ ├── LICENSE │ │ │ └── specs-go/ │ │ │ └── v1/ │ │ │ └── image.go │ │ ├── go-archive/ │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── archive.go │ │ │ ├── archive_linux.go │ │ │ ├── archive_other.go │ │ │ ├── archive_unix.go │ │ │ ├── archive_windows.go │ │ │ ├── changes.go │ │ │ ├── changes_linux.go │ │ │ ├── changes_other.go │ │ │ ├── changes_unix.go │ │ │ ├── changes_windows.go │ │ │ ├── compression/ │ │ │ │ ├── compression.go │ │ │ │ └── compression_detect.go │ │ │ ├── copy.go │ │ │ ├── copy_unix.go │ │ │ ├── copy_windows.go │ │ │ ├── dev_freebsd.go │ │ │ ├── dev_unix.go │ │ │ ├── diff.go │ │ │ ├── diff_unix.go │ │ │ ├── diff_windows.go │ │ │ ├── path.go │ │ │ ├── path_unix.go │ │ │ ├── path_windows.go │ │ │ ├── tarheader/ │ │ │ │ ├── tarheader.go │ │ │ │ ├── tarheader_unix.go │ │ │ │ └── tarheader_windows.go │ │ │ ├── time.go │ │ │ ├── time_nonwindows.go │ │ │ ├── time_windows.go │ │ │ ├── whiteouts.go │ │ │ ├── wrap.go │ │ │ ├── xattr_supported.go │ │ │ ├── xattr_supported_linux.go │ │ │ ├── xattr_supported_unix.go │ │ │ └── xattr_unsupported.go │ │ ├── moby/ │ │ │ ├── api/ │ │ │ │ ├── LICENSE │ │ │ │ ├── pkg/ │ │ │ │ │ └── stdcopy/ │ │ │ │ │ └── stdcopy.go │ │ │ │ └── types/ │ │ │ │ ├── blkiodev/ │ │ │ │ │ └── blkio.go │ │ │ │ ├── build/ │ │ │ │ │ ├── build.go │ │ │ │ │ ├── cache.go │ │ │ │ │ └── disk_usage.go │ │ │ │ ├── checkpoint/ │ │ │ │ │ ├── create_request.go │ │ │ │ │ └── list.go │ │ │ │ ├── common/ │ │ │ │ │ ├── error_response.go │ │ │ │ │ ├── error_response_ext.go │ │ │ │ │ └── id_response.go │ │ │ │ ├── container/ │ │ │ │ │ ├── change_type.go │ │ │ │ │ ├── change_types.go │ │ │ │ │ ├── commit.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── container.go │ │ │ │ │ ├── create_request.go │ │ │ │ │ ├── create_response.go │ │ │ │ │ ├── disk_usage.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── exec.go │ │ │ │ │ ├── exec_create_request.go │ │ │ │ │ ├── exec_start_request.go │ │ │ │ │ ├── filesystem_change.go │ │ │ │ │ ├── health.go │ │ │ │ │ ├── hostconfig.go │ │ │ │ │ ├── hostconfig_unix.go │ │ │ │ │ ├── hostconfig_windows.go │ │ │ │ │ ├── network_settings.go │ │ │ │ │ ├── port_summary.go │ │ │ │ │ ├── state.go │ │ │ │ │ ├── stats.go │ │ │ │ │ ├── top_response.go │ │ │ │ │ ├── update_response.go │ │ │ │ │ ├── wait_exit_error.go │ │ │ │ │ ├── wait_response.go │ │ │ │ │ └── waitcondition.go │ │ │ │ ├── events/ │ │ │ │ │ └── events.go │ │ │ │ ├── image/ │ │ │ │ │ ├── build_identity.go │ │ │ │ │ ├── delete_response.go │ │ │ │ │ ├── disk_usage.go │ │ │ │ │ ├── history_response_item.go │ │ │ │ │ ├── identity.go │ │ │ │ │ ├── image.go │ │ │ │ │ ├── image_inspect.go │ │ │ │ │ ├── manifest.go │ │ │ │ │ ├── pull_identity.go │ │ │ │ │ ├── signature_identity.go │ │ │ │ │ ├── signature_timestamp.go │ │ │ │ │ ├── signer_identity.go │ │ │ │ │ └── summary.go │ │ │ │ ├── jsonstream/ │ │ │ │ │ ├── json_error.go │ │ │ │ │ ├── message.go │ │ │ │ │ └── progress.go │ │ │ │ ├── mount/ │ │ │ │ │ └── mount.go │ │ │ │ ├── network/ │ │ │ │ │ ├── config_reference.go │ │ │ │ │ ├── connect_request.go │ │ │ │ │ ├── create_response.go │ │ │ │ │ ├── disconnect_request.go │ │ │ │ │ ├── endpoint.go │ │ │ │ │ ├── endpoint_resource.go │ │ │ │ │ ├── hwaddr.go │ │ │ │ │ ├── inspect.go │ │ │ │ │ ├── ipam.go │ │ │ │ │ ├── ipam_status.go │ │ │ │ │ ├── network.go │ │ │ │ │ ├── network_types.go │ │ │ │ │ ├── peer_info.go │ │ │ │ │ ├── port.go │ │ │ │ │ ├── service_info.go │ │ │ │ │ ├── status.go │ │ │ │ │ ├── subnet_status.go │ │ │ │ │ ├── summary.go │ │ │ │ │ └── task.go │ │ │ │ ├── plugin/ │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── capability.go │ │ │ │ │ ├── device.go │ │ │ │ │ ├── env.go │ │ │ │ │ ├── mount.go │ │ │ │ │ ├── plugin.go │ │ │ │ │ └── plugin_responses.go │ │ │ │ ├── registry/ │ │ │ │ │ ├── auth_response.go │ │ │ │ │ ├── authconfig.go │ │ │ │ │ ├── registry.go │ │ │ │ │ └── search.go │ │ │ │ ├── storage/ │ │ │ │ │ ├── driver_data.go │ │ │ │ │ ├── root_f_s_storage.go │ │ │ │ │ ├── root_f_s_storage_snapshot.go │ │ │ │ │ └── storage.go │ │ │ │ ├── swarm/ │ │ │ │ │ ├── common.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── container.go │ │ │ │ │ ├── network.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── runtime.go │ │ │ │ │ ├── secret.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── service_create_response.go │ │ │ │ │ ├── service_update_response.go │ │ │ │ │ ├── swarm.go │ │ │ │ │ └── task.go │ │ │ │ ├── system/ │ │ │ │ │ ├── disk_usage.go │ │ │ │ │ ├── info.go │ │ │ │ │ ├── runtime.go │ │ │ │ │ └── version_response.go │ │ │ │ ├── types.go │ │ │ │ └── volume/ │ │ │ │ ├── cluster_volume.go │ │ │ │ ├── create_request.go │ │ │ │ ├── disk_usage.go │ │ │ │ ├── list_response.go │ │ │ │ ├── prune_report.go │ │ │ │ └── volume.go │ │ │ ├── client/ │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── auth.go │ │ │ │ ├── build_cancel.go │ │ │ │ ├── build_prune.go │ │ │ │ ├── checkpoint_create.go │ │ │ │ ├── checkpoint_list.go │ │ │ │ ├── checkpoint_remove.go │ │ │ │ ├── client.go │ │ │ │ ├── client_interfaces.go │ │ │ │ ├── client_options.go │ │ │ │ ├── client_responsehook.go │ │ │ │ ├── client_unix.go │ │ │ │ ├── client_windows.go │ │ │ │ ├── config_create.go │ │ │ │ ├── config_inspect.go │ │ │ │ ├── config_list.go │ │ │ │ ├── config_remove.go │ │ │ │ ├── config_update.go │ │ │ │ ├── container_attach.go │ │ │ │ ├── container_commit.go │ │ │ │ ├── container_copy.go │ │ │ │ ├── container_create.go │ │ │ │ ├── container_create_opts.go │ │ │ │ ├── container_diff.go │ │ │ │ ├── container_diff_opts.go │ │ │ │ ├── container_exec.go │ │ │ │ ├── container_export.go │ │ │ │ ├── container_inspect.go │ │ │ │ ├── container_kill.go │ │ │ │ ├── container_list.go │ │ │ │ ├── container_logs.go │ │ │ │ ├── container_pause.go │ │ │ │ ├── container_prune.go │ │ │ │ ├── container_remove.go │ │ │ │ ├── container_rename.go │ │ │ │ ├── container_resize.go │ │ │ │ ├── container_restart.go │ │ │ │ ├── container_start.go │ │ │ │ ├── container_stats.go │ │ │ │ ├── container_stop.go │ │ │ │ ├── container_top.go │ │ │ │ ├── container_unpause.go │ │ │ │ ├── container_update.go │ │ │ │ ├── container_wait.go │ │ │ │ ├── distribution_inspect.go │ │ │ │ ├── envvars.go │ │ │ │ ├── errors.go │ │ │ │ ├── filters.go │ │ │ │ ├── hijack.go │ │ │ │ ├── image_build.go │ │ │ │ ├── image_build_opts.go │ │ │ │ ├── image_history.go │ │ │ │ ├── image_history_opts.go │ │ │ │ ├── image_import.go │ │ │ │ ├── image_import_opts.go │ │ │ │ ├── image_inspect.go │ │ │ │ ├── image_inspect_opts.go │ │ │ │ ├── image_list.go │ │ │ │ ├── image_list_opts.go │ │ │ │ ├── image_load.go │ │ │ │ ├── image_load_opts.go │ │ │ │ ├── image_prune.go │ │ │ │ ├── image_pull.go │ │ │ │ ├── image_pull_opts.go │ │ │ │ ├── image_push.go │ │ │ │ ├── image_push_opts.go │ │ │ │ ├── image_remove.go │ │ │ │ ├── image_remove_opts.go │ │ │ │ ├── image_save.go │ │ │ │ ├── image_save_opts.go │ │ │ │ ├── image_search.go │ │ │ │ ├── image_search_opts.go │ │ │ │ ├── image_tag.go │ │ │ │ ├── internal/ │ │ │ │ │ ├── json-stream.go │ │ │ │ │ ├── jsonmessages.go │ │ │ │ │ └── timestamp/ │ │ │ │ │ └── timestamp.go │ │ │ │ ├── login.go │ │ │ │ ├── network_connect.go │ │ │ │ ├── network_create.go │ │ │ │ ├── network_disconnect.go │ │ │ │ ├── network_inspect.go │ │ │ │ ├── network_inspect_opts.go │ │ │ │ ├── network_list.go │ │ │ │ ├── network_list_opts.go │ │ │ │ ├── network_prune.go │ │ │ │ ├── network_remove.go │ │ │ │ ├── node_inspect.go │ │ │ │ ├── node_list.go │ │ │ │ ├── node_remove.go │ │ │ │ ├── node_update.go │ │ │ │ ├── ping.go │ │ │ │ ├── pkg/ │ │ │ │ │ ├── jsonmessage/ │ │ │ │ │ │ └── jsonmessage.go │ │ │ │ │ └── versions/ │ │ │ │ │ └── compare.go │ │ │ │ ├── plugin_create.go │ │ │ │ ├── plugin_disable.go │ │ │ │ ├── plugin_enable.go │ │ │ │ ├── plugin_inspect.go │ │ │ │ ├── plugin_install.go │ │ │ │ ├── plugin_list.go │ │ │ │ ├── plugin_push.go │ │ │ │ ├── plugin_remove.go │ │ │ │ ├── plugin_set.go │ │ │ │ ├── plugin_upgrade.go │ │ │ │ ├── request.go │ │ │ │ ├── secret_create.go │ │ │ │ ├── secret_inspect.go │ │ │ │ ├── secret_list.go │ │ │ │ ├── secret_remove.go │ │ │ │ ├── secret_update.go │ │ │ │ ├── service_create.go │ │ │ │ ├── service_inspect.go │ │ │ │ ├── service_list.go │ │ │ │ ├── service_logs.go │ │ │ │ ├── service_remove.go │ │ │ │ ├── service_update.go │ │ │ │ ├── swarm_get_unlock_key.go │ │ │ │ ├── swarm_init.go │ │ │ │ ├── swarm_inspect.go │ │ │ │ ├── swarm_join.go │ │ │ │ ├── swarm_leave.go │ │ │ │ ├── swarm_unlock.go │ │ │ │ ├── swarm_update.go │ │ │ │ ├── system_disk_usage.go │ │ │ │ ├── system_events.go │ │ │ │ ├── system_info.go │ │ │ │ ├── task_inspect.go │ │ │ │ ├── task_list.go │ │ │ │ ├── task_logs.go │ │ │ │ ├── utils.go │ │ │ │ ├── version.go │ │ │ │ ├── volume_create.go │ │ │ │ ├── volume_inspect.go │ │ │ │ ├── volume_list.go │ │ │ │ ├── volume_prune.go │ │ │ │ ├── volume_remove.go │ │ │ │ └── volume_update.go │ │ │ └── v2/ │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── pkg/ │ │ │ └── homedir/ │ │ │ ├── homedir.go │ │ │ ├── homedir_linux.go │ │ │ └── homedir_others.go │ │ ├── patternmatcher/ │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── patternmatcher.go │ │ └── sys/ │ │ ├── capability/ │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── capability.go │ │ │ ├── capability_linux.go │ │ │ ├── capability_noop.go │ │ │ ├── enum.go │ │ │ ├── enum_gen.go │ │ │ └── syscall_linux.go │ │ ├── mountinfo/ │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── mounted_linux.go │ │ │ ├── mounted_unix.go │ │ │ ├── mountinfo.go │ │ │ ├── mountinfo_bsd.go │ │ │ ├── mountinfo_filters.go │ │ │ ├── mountinfo_freebsdlike.go │ │ │ ├── mountinfo_linux.go │ │ │ ├── mountinfo_openbsd.go │ │ │ ├── mountinfo_unsupported.go │ │ │ └── mountinfo_windows.go │ │ ├── sequential/ │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── sequential_unix.go │ │ │ └── sequential_windows.go │ │ ├── user/ │ │ │ ├── LICENSE │ │ │ ├── idtools.go │ │ │ ├── idtools_unix.go │ │ │ ├── idtools_windows.go │ │ │ ├── lookup_unix.go │ │ │ ├── user.go │ │ │ └── user_fuzzer.go │ │ └── userns/ │ │ ├── LICENSE │ │ ├── userns.go │ │ ├── userns_linux.go │ │ ├── userns_linux_fuzzer.go │ │ └── userns_unsupported.go │ ├── modern-go/ │ │ └── concurrent/ │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── executor.go │ │ ├── go_above_19.go │ │ ├── go_below_19.go │ │ ├── log.go │ │ ├── test.sh │ │ └── unbounded_executor.go │ ├── opencontainers/ │ │ ├── cgroups/ │ │ │ ├── .golangci-extra.yml │ │ │ ├── .golangci.yml │ │ │ ├── CODEOWNERS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── GOVERNANCE.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── MAINTAINERS_GUIDE.md │ │ │ ├── README.md │ │ │ ├── RELEASES.md │ │ │ ├── cgroups.go │ │ │ ├── config_blkio_device.go │ │ │ ├── config_hugepages.go │ │ │ ├── config_ifprio_map.go │ │ │ ├── config_linux.go │ │ │ ├── config_rdma.go │ │ │ ├── config_unsupported.go │ │ │ ├── devices/ │ │ │ │ └── config/ │ │ │ │ ├── device.go │ │ │ │ └── mknod_unix.go │ │ │ ├── file.go │ │ │ ├── fs2/ │ │ │ │ ├── cpu.go │ │ │ │ ├── cpuset.go │ │ │ │ ├── create.go │ │ │ │ ├── defaultpath.go │ │ │ │ ├── freezer.go │ │ │ │ ├── fs2.go │ │ │ │ ├── hugetlb.go │ │ │ │ ├── io.go │ │ │ │ ├── memory.go │ │ │ │ ├── misc.go │ │ │ │ ├── pids.go │ │ │ │ └── psi.go │ │ │ ├── fscommon/ │ │ │ │ ├── rdma.go │ │ │ │ └── utils.go │ │ │ ├── getallpids.go │ │ │ ├── internal/ │ │ │ │ └── path/ │ │ │ │ └── path.go │ │ │ ├── stats.go │ │ │ ├── utils.go │ │ │ └── v1_utils.go │ │ ├── go-digest/ │ │ │ ├── .mailmap │ │ │ ├── .pullapprove.yml │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── LICENSE.docs │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── algorithm.go │ │ │ ├── digest.go │ │ │ ├── digester.go │ │ │ ├── doc.go │ │ │ └── verifiers.go │ │ ├── image-spec/ │ │ │ ├── LICENSE │ │ │ └── specs-go/ │ │ │ ├── v1/ │ │ │ │ ├── annotations.go │ │ │ │ ├── config.go │ │ │ │ ├── descriptor.go │ │ │ │ ├── index.go │ │ │ │ ├── layout.go │ │ │ │ ├── manifest.go │ │ │ │ └── mediatype.go │ │ │ ├── version.go │ │ │ └── versioned.go │ │ ├── runc/ │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── internal/ │ │ │ │ ├── linux/ │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── eintr.go │ │ │ │ │ └── linux.go │ │ │ │ └── pathrs/ │ │ │ │ ├── doc.go │ │ │ │ ├── mkdirall.go │ │ │ │ ├── mkdirall_pathrslite.go │ │ │ │ ├── path.go │ │ │ │ ├── procfs_pathrslite.go │ │ │ │ ├── retry.go │ │ │ │ └── root_pathrslite.go │ │ │ └── libcontainer/ │ │ │ ├── apparmor/ │ │ │ │ ├── apparmor.go │ │ │ │ ├── apparmor_linux.go │ │ │ │ └── apparmor_unsupported.go │ │ │ └── devices/ │ │ │ ├── device_deprecated.go │ │ │ └── device_unix.go │ │ ├── runtime-spec/ │ │ │ ├── LICENSE │ │ │ └── specs-go/ │ │ │ ├── config.go │ │ │ ├── state.go │ │ │ └── version.go │ │ ├── runtime-tools/ │ │ │ ├── LICENSE │ │ │ ├── generate/ │ │ │ │ ├── config.go │ │ │ │ ├── generate.go │ │ │ │ └── seccomp/ │ │ │ │ ├── consts.go │ │ │ │ ├── parse_action.go │ │ │ │ ├── parse_architecture.go │ │ │ │ ├── parse_arguments.go │ │ │ │ ├── parse_remove.go │ │ │ │ ├── seccomp_default.go │ │ │ │ ├── seccomp_default_linux.go │ │ │ │ ├── seccomp_default_unsupported.go │ │ │ │ └── syscall_compare.go │ │ │ └── validate/ │ │ │ └── capabilities/ │ │ │ ├── lastcap.go │ │ │ └── validate.go │ │ └── selinux/ │ │ ├── LICENSE │ │ ├── go-selinux/ │ │ │ ├── doc.go │ │ │ ├── label/ │ │ │ │ ├── label.go │ │ │ │ ├── label_linux.go │ │ │ │ └── label_stub.go │ │ │ ├── selinux.go │ │ │ ├── selinux_linux.go │ │ │ ├── selinux_stub.go │ │ │ └── xattrs_linux.go │ │ └── pkg/ │ │ └── pwalkdir/ │ │ ├── README.md │ │ └── pwalkdir.go │ ├── openshift/ │ │ └── imagebuilder/ │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── OWNERS │ │ ├── README.md │ │ ├── builder.go │ │ ├── constants.go │ │ ├── dispatchers.go │ │ ├── doc.go │ │ ├── dockerclient/ │ │ │ ├── archive.go │ │ │ ├── client.go │ │ │ ├── copyinfo.go │ │ │ └── directory.go │ │ ├── dockerfile/ │ │ │ ├── NOTICE │ │ │ ├── command/ │ │ │ │ └── command.go │ │ │ └── parser/ │ │ │ ├── line_parsers.go │ │ │ ├── parser.go │ │ │ └── split_command.go │ │ ├── evaluator.go │ │ ├── imagebuilder.spec │ │ ├── imageprogress/ │ │ │ ├── progress.go │ │ │ ├── pull.go │ │ │ └── push.go │ │ ├── internal/ │ │ │ └── env.go │ │ ├── internals.go │ │ ├── shell_parser.go │ │ ├── signal/ │ │ │ ├── README.md │ │ │ ├── signal.go │ │ │ └── signals.go │ │ └── strslice/ │ │ └── strslice.go │ ├── pkg/ │ │ └── errors/ │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── errors.go │ │ ├── go113.go │ │ └── stack.go │ ├── planetscale/ │ │ └── vtprotobuf/ │ │ ├── LICENSE │ │ └── protohelpers/ │ │ └── protohelpers.go │ ├── pmezard/ │ │ └── go-difflib/ │ │ ├── LICENSE │ │ └── difflib/ │ │ └── difflib.go │ ├── proglottis/ │ │ └── gpgme/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── data.go │ │ ├── go_gpgme.c │ │ ├── go_gpgme.h │ │ ├── gpgme.go │ │ ├── unset_agent_info.go │ │ └── unset_agent_info_windows.go │ ├── seccomp/ │ │ └── libseccomp-golang/ │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CHANGELOG │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── seccomp.go │ │ └── seccomp_internal.go │ ├── secure-systems-lab/ │ │ └── go-securesystemslib/ │ │ ├── LICENSE │ │ └── encrypted/ │ │ └── encrypted.go │ ├── sigstore/ │ │ ├── fulcio/ │ │ │ ├── COPYRIGHT.txt │ │ │ ├── LICENSE │ │ │ └── pkg/ │ │ │ └── certificate/ │ │ │ ├── doc.go │ │ │ └── extensions.go │ │ ├── protobuf-specs/ │ │ │ ├── COPYRIGHT.txt │ │ │ ├── LICENSE │ │ │ └── gen/ │ │ │ └── pb-go/ │ │ │ └── common/ │ │ │ └── v1/ │ │ │ └── sigstore_common.pb.go │ │ └── sigstore/ │ │ ├── COPYRIGHT.txt │ │ ├── LICENSE │ │ └── pkg/ │ │ ├── cryptoutils/ │ │ │ ├── certificate.go │ │ │ ├── doc.go │ │ │ ├── generic.go │ │ │ ├── password.go │ │ │ ├── privatekey.go │ │ │ ├── publickey.go │ │ │ ├── safestring.go │ │ │ └── sans.go │ │ └── signature/ │ │ ├── algorithm_registry.go │ │ ├── doc.go │ │ ├── ecdsa.go │ │ ├── ed25519.go │ │ ├── ed25519ph.go │ │ ├── message.go │ │ ├── options/ │ │ │ ├── context.go │ │ │ ├── digest.go │ │ │ ├── doc.go │ │ │ ├── keyversion.go │ │ │ ├── loadoptions.go │ │ │ ├── noop.go │ │ │ ├── rand.go │ │ │ ├── remoteverification.go │ │ │ ├── rpcauth.go │ │ │ └── signeropts.go │ │ ├── options.go │ │ ├── payload/ │ │ │ ├── doc.go │ │ │ └── payload.go │ │ ├── publickey.go │ │ ├── rsapkcs1v15.go │ │ ├── rsapss.go │ │ ├── signer.go │ │ ├── signerverifier.go │ │ ├── util.go │ │ └── verifier.go │ ├── smallstep/ │ │ └── pkcs7/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── ber.go │ │ ├── decrypt.go │ │ ├── encrypt.go │ │ ├── internal/ │ │ │ └── legacy/ │ │ │ └── x509/ │ │ │ ├── debug.go │ │ │ ├── doc.go │ │ │ ├── oid.go │ │ │ ├── parser.go │ │ │ ├── pkcs1.go │ │ │ ├── verify.go │ │ │ └── x509.go │ │ ├── pkcs7.go │ │ ├── sign.go │ │ └── verify.go │ ├── spf13/ │ │ ├── cobra/ │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .mailmap │ │ │ ├── CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.txt │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── active_help.go │ │ │ ├── args.go │ │ │ ├── bash_completions.go │ │ │ ├── bash_completionsV2.go │ │ │ ├── cobra.go │ │ │ ├── command.go │ │ │ ├── command_notwin.go │ │ │ ├── command_win.go │ │ │ ├── completions.go │ │ │ ├── fish_completions.go │ │ │ ├── flag_groups.go │ │ │ ├── powershell_completions.go │ │ │ ├── shell_completions.go │ │ │ └── zsh_completions.go │ │ └── pflag/ │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bool.go │ │ ├── bool_func.go │ │ ├── bool_slice.go │ │ ├── bytes.go │ │ ├── count.go │ │ ├── duration.go │ │ ├── duration_slice.go │ │ ├── errors.go │ │ ├── flag.go │ │ ├── float32.go │ │ ├── float32_slice.go │ │ ├── float64.go │ │ ├── float64_slice.go │ │ ├── func.go │ │ ├── golangflag.go │ │ ├── int.go │ │ ├── int16.go │ │ ├── int32.go │ │ ├── int32_slice.go │ │ ├── int64.go │ │ ├── int64_slice.go │ │ ├── int8.go │ │ ├── int_slice.go │ │ ├── ip.go │ │ ├── ip_slice.go │ │ ├── ipmask.go │ │ ├── ipnet.go │ │ ├── ipnet_slice.go │ │ ├── string.go │ │ ├── string_array.go │ │ ├── string_slice.go │ │ ├── string_to_int.go │ │ ├── string_to_int64.go │ │ ├── string_to_string.go │ │ ├── text.go │ │ ├── time.go │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ ├── uint8.go │ │ └── uint_slice.go │ ├── stefanberger/ │ │ └── go-pkcs11uri/ │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ └── pkcs11uri.go │ ├── stretchr/ │ │ └── testify/ │ │ ├── LICENSE │ │ ├── assert/ │ │ │ ├── assertion_compare.go │ │ │ ├── assertion_format.go │ │ │ ├── assertion_format.go.tmpl │ │ │ ├── assertion_forward.go │ │ │ ├── assertion_forward.go.tmpl │ │ │ ├── assertion_order.go │ │ │ ├── assertions.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── forward_assertions.go │ │ │ ├── http_assertions.go │ │ │ └── yaml/ │ │ │ ├── yaml_custom.go │ │ │ ├── yaml_default.go │ │ │ └── yaml_fail.go │ │ └── require/ │ │ ├── doc.go │ │ ├── forward_requirements.go │ │ ├── require.go │ │ ├── require.go.tmpl │ │ ├── require_forward.go │ │ ├── require_forward.go.tmpl │ │ └── requirements.go │ ├── sylabs/ │ │ └── sif/ │ │ └── v2/ │ │ ├── LICENSE.md │ │ └── pkg/ │ │ └── sif/ │ │ ├── add.go │ │ ├── arch.go │ │ ├── buffer.go │ │ ├── create.go │ │ ├── delete.go │ │ ├── descriptor.go │ │ ├── descriptor_input.go │ │ ├── load.go │ │ ├── select.go │ │ ├── set.go │ │ └── sif.go │ ├── tchap/ │ │ └── go-patricia/ │ │ └── v2/ │ │ ├── AUTHORS │ │ ├── LICENSE │ │ └── patricia/ │ │ ├── children.go │ │ └── patricia.go │ ├── ulikunitz/ │ │ └── xz/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── TODO.md │ │ ├── bits.go │ │ ├── crc.go │ │ ├── format.go │ │ ├── fox-check-none.xz │ │ ├── fox.xz │ │ ├── internal/ │ │ │ ├── hash/ │ │ │ │ ├── cyclic_poly.go │ │ │ │ ├── doc.go │ │ │ │ ├── rabin_karp.go │ │ │ │ └── roller.go │ │ │ └── xlog/ │ │ │ └── xlog.go │ │ ├── lzma/ │ │ │ ├── bintree.go │ │ │ ├── bitops.go │ │ │ ├── breader.go │ │ │ ├── buffer.go │ │ │ ├── bytewriter.go │ │ │ ├── decoder.go │ │ │ ├── decoderdict.go │ │ │ ├── directcodec.go │ │ │ ├── distcodec.go │ │ │ ├── encoder.go │ │ │ ├── encoderdict.go │ │ │ ├── fox.lzma │ │ │ ├── hashtable.go │ │ │ ├── header.go │ │ │ ├── header2.go │ │ │ ├── lengthcodec.go │ │ │ ├── literalcodec.go │ │ │ ├── matchalgorithm.go │ │ │ ├── operation.go │ │ │ ├── prob.go │ │ │ ├── properties.go │ │ │ ├── rangecodec.go │ │ │ ├── reader.go │ │ │ ├── reader2.go │ │ │ ├── state.go │ │ │ ├── treecodecs.go │ │ │ ├── writer.go │ │ │ └── writer2.go │ │ ├── lzmafilter.go │ │ ├── make-docs │ │ ├── none-check.go │ │ ├── reader.go │ │ └── writer.go │ ├── vbatts/ │ │ └── tar-split/ │ │ ├── LICENSE │ │ ├── archive/ │ │ │ └── tar/ │ │ │ ├── common.go │ │ │ ├── format.go │ │ │ ├── reader.go │ │ │ ├── stat_actime1.go │ │ │ ├── stat_actime2.go │ │ │ ├── stat_unix.go │ │ │ ├── strconv.go │ │ │ └── writer.go │ │ └── tar/ │ │ ├── asm/ │ │ │ ├── README.md │ │ │ ├── assemble.go │ │ │ ├── disassemble.go │ │ │ ├── doc.go │ │ │ └── iterate.go │ │ └── storage/ │ │ ├── doc.go │ │ ├── entry.go │ │ ├── getter.go │ │ └── packer.go │ └── vbauerster/ │ └── mpb/ │ └── v8/ │ ├── .gitignore │ ├── CONTRIBUTING │ ├── README.md │ ├── UNLICENSE │ ├── bar.go │ ├── bar_filler.go │ ├── bar_filler_bar.go │ ├── bar_filler_nop.go │ ├── bar_filler_spinner.go │ ├── bar_heap.go │ ├── bar_option.go │ ├── container_option.go │ ├── cwriter/ │ │ ├── doc.go │ │ ├── util_bsd.go │ │ ├── util_linux.go │ │ ├── util_solaris.go │ │ ├── util_zos.go │ │ ├── writer.go │ │ ├── writer_posix.go │ │ └── writer_windows.go │ ├── decor/ │ │ ├── any.go │ │ ├── counters.go │ │ ├── decorator.go │ │ ├── doc.go │ │ ├── elapsed.go │ │ ├── eta.go │ │ ├── meta.go │ │ ├── moving_average.go │ │ ├── name.go │ │ ├── on_abort.go │ │ ├── on_abort_or_on_complete.go │ │ ├── on_complete.go │ │ ├── on_complete_or_on_abort.go │ │ ├── on_condition.go │ │ ├── percentage.go │ │ ├── size_type.go │ │ ├── sizeb1000_string.go │ │ ├── sizeb1024_string.go │ │ ├── speed.go │ │ └── spinner.go │ ├── doc.go │ ├── heap_manager.go │ ├── internal/ │ │ ├── percentage.go │ │ └── width.go │ ├── progress.go │ ├── proxyreader.go │ └── proxywriter.go ├── go.etcd.io/ │ └── bbolt/ │ ├── .gitignore │ ├── .go-version │ ├── LICENSE │ ├── Makefile │ ├── OWNERS │ ├── README.md │ ├── bolt_aix.go │ ├── bolt_android.go │ ├── bolt_linux.go │ ├── bolt_openbsd.go │ ├── bolt_solaris.go │ ├── bolt_unix.go │ ├── bolt_windows.go │ ├── boltsync_unix.go │ ├── bucket.go │ ├── compact.go │ ├── cursor.go │ ├── db.go │ ├── doc.go │ ├── errors/ │ │ └── errors.go │ ├── errors.go │ ├── internal/ │ │ ├── common/ │ │ │ ├── bolt_386.go │ │ │ ├── bolt_amd64.go │ │ │ ├── bolt_arm.go │ │ │ ├── bolt_arm64.go │ │ │ ├── bolt_loong64.go │ │ │ ├── bolt_mips64x.go │ │ │ ├── bolt_mipsx.go │ │ │ ├── bolt_ppc.go │ │ │ ├── bolt_ppc64.go │ │ │ ├── bolt_ppc64le.go │ │ │ ├── bolt_riscv64.go │ │ │ ├── bolt_s390x.go │ │ │ ├── bucket.go │ │ │ ├── inode.go │ │ │ ├── meta.go │ │ │ ├── page.go │ │ │ ├── types.go │ │ │ ├── unsafe.go │ │ │ ├── utils.go │ │ │ └── verify.go │ │ └── freelist/ │ │ ├── array.go │ │ ├── freelist.go │ │ ├── hashmap.go │ │ └── shared.go │ ├── logger.go │ ├── mlock_unix.go │ ├── mlock_windows.go │ ├── node.go │ ├── tx.go │ └── tx_check.go ├── go.opentelemetry.io/ │ ├── auto/ │ │ └── sdk/ │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── VERSIONING.md │ │ ├── doc.go │ │ ├── internal/ │ │ │ └── telemetry/ │ │ │ ├── attr.go │ │ │ ├── doc.go │ │ │ ├── id.go │ │ │ ├── number.go │ │ │ ├── resource.go │ │ │ ├── scope.go │ │ │ ├── span.go │ │ │ ├── status.go │ │ │ ├── traces.go │ │ │ └── value.go │ │ ├── limit.go │ │ ├── span.go │ │ ├── tracer.go │ │ └── tracer_provider.go │ ├── contrib/ │ │ └── instrumentation/ │ │ └── net/ │ │ └── http/ │ │ └── otelhttp/ │ │ ├── LICENSE │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── handler.go │ │ ├── internal/ │ │ │ ├── request/ │ │ │ │ ├── body_wrapper.go │ │ │ │ ├── gen.go │ │ │ │ └── resp_writer_wrapper.go │ │ │ └── semconv/ │ │ │ ├── client.go │ │ │ ├── gen.go │ │ │ ├── server.go │ │ │ └── util.go │ │ ├── labeler.go │ │ ├── start_time_context.go │ │ ├── transport.go │ │ └── version.go │ └── otel/ │ ├── .clomonitor.yml │ ├── .codespellignore │ ├── .codespellrc │ ├── .gitattributes │ ├── .gitignore │ ├── .golangci.yml │ ├── .lycheeignore │ ├── .markdownlint.yaml │ ├── CHANGELOG.md │ ├── CODEOWNERS │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── RELEASING.md │ ├── SECURITY-INSIGHTS.yml │ ├── VERSIONING.md │ ├── attribute/ │ │ ├── README.md │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── filter.go │ │ ├── hash.go │ │ ├── internal/ │ │ │ ├── attribute.go │ │ │ └── xxhash/ │ │ │ └── xxhash.go │ │ ├── iterator.go │ │ ├── key.go │ │ ├── kv.go │ │ ├── rawhelpers.go │ │ ├── set.go │ │ ├── type_string.go │ │ └── value.go │ ├── baggage/ │ │ ├── README.md │ │ ├── baggage.go │ │ ├── context.go │ │ └── doc.go │ ├── codes/ │ │ ├── README.md │ │ ├── codes.go │ │ └── doc.go │ ├── dependencies.Dockerfile │ ├── doc.go │ ├── error_handler.go │ ├── handler.go │ ├── internal/ │ │ ├── baggage/ │ │ │ ├── baggage.go │ │ │ └── context.go │ │ └── global/ │ │ ├── handler.go │ │ ├── instruments.go │ │ ├── internal_logging.go │ │ ├── meter.go │ │ ├── propagator.go │ │ ├── state.go │ │ └── trace.go │ ├── internal_logging.go │ ├── metric/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── asyncfloat64.go │ │ ├── asyncint64.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── embedded/ │ │ │ ├── README.md │ │ │ └── embedded.go │ │ ├── instrument.go │ │ ├── meter.go │ │ ├── noop/ │ │ │ ├── README.md │ │ │ └── noop.go │ │ ├── syncfloat64.go │ │ └── syncint64.go │ ├── metric.go │ ├── propagation/ │ │ ├── README.md │ │ ├── baggage.go │ │ ├── doc.go │ │ ├── propagation.go │ │ └── trace_context.go │ ├── propagation.go │ ├── renovate.json │ ├── requirements.txt │ ├── semconv/ │ │ ├── v1.37.0/ │ │ │ ├── MIGRATION.md │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── error_type.go │ │ │ ├── exception.go │ │ │ └── schema.go │ │ └── v1.39.0/ │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── attribute_group.go │ │ ├── doc.go │ │ ├── error_type.go │ │ ├── exception.go │ │ ├── httpconv/ │ │ │ └── metric.go │ │ └── schema.go │ ├── trace/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── auto.go │ │ ├── config.go │ │ ├── context.go │ │ ├── doc.go │ │ ├── embedded/ │ │ │ ├── README.md │ │ │ └── embedded.go │ │ ├── hex.go │ │ ├── internal/ │ │ │ └── telemetry/ │ │ │ ├── attr.go │ │ │ ├── doc.go │ │ │ ├── id.go │ │ │ ├── number.go │ │ │ ├── resource.go │ │ │ ├── scope.go │ │ │ ├── span.go │ │ │ ├── status.go │ │ │ ├── traces.go │ │ │ └── value.go │ │ ├── nonrecording.go │ │ ├── noop/ │ │ │ ├── README.md │ │ │ └── noop.go │ │ ├── noop.go │ │ ├── provider.go │ │ ├── span.go │ │ ├── trace.go │ │ ├── tracer.go │ │ └── tracestate.go │ ├── trace.go │ ├── verify_released_changelog.sh │ ├── version.go │ └── versions.yaml ├── go.podman.io/ │ ├── common/ │ │ ├── LICENSE │ │ ├── internal/ │ │ │ ├── attributedstring/ │ │ │ │ └── slice.go │ │ │ └── deepcopy.go │ │ ├── libimage/ │ │ │ ├── copier.go │ │ │ ├── define/ │ │ │ │ ├── manifests.go │ │ │ │ ├── platform.go │ │ │ │ └── search.go │ │ │ ├── disk_usage.go │ │ │ ├── events.go │ │ │ ├── filter/ │ │ │ │ └── filter.go │ │ │ ├── filters.go │ │ │ ├── history.go │ │ │ ├── image.go │ │ │ ├── image_config.go │ │ │ ├── image_tree.go │ │ │ ├── import.go │ │ │ ├── inspect.go │ │ │ ├── layer_tree.go │ │ │ ├── load.go │ │ │ ├── manifest_list.go │ │ │ ├── manifests/ │ │ │ │ ├── copy.go │ │ │ │ └── manifests.go │ │ │ ├── normalize.go │ │ │ ├── oci.go │ │ │ ├── platform/ │ │ │ │ └── platform.go │ │ │ ├── platform.go │ │ │ ├── pull.go │ │ │ ├── push.go │ │ │ ├── runtime.go │ │ │ ├── save.go │ │ │ ├── search.go │ │ │ └── types.go │ │ ├── libnetwork/ │ │ │ ├── etchosts/ │ │ │ │ ├── hosts.go │ │ │ │ ├── ip.go │ │ │ │ └── util.go │ │ │ ├── internal/ │ │ │ │ ├── rootlessnetns/ │ │ │ │ │ ├── netns_freebsd.go │ │ │ │ │ └── netns_linux.go │ │ │ │ └── util/ │ │ │ │ ├── bridge.go │ │ │ │ ├── create.go │ │ │ │ ├── interface.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── ip.go │ │ │ │ ├── parse.go │ │ │ │ ├── util.go │ │ │ │ └── validate.go │ │ │ ├── netavark/ │ │ │ │ ├── config.go │ │ │ │ ├── const.go │ │ │ │ ├── exec.go │ │ │ │ ├── ipam.go │ │ │ │ ├── network.go │ │ │ │ └── run.go │ │ │ ├── network/ │ │ │ │ ├── interface.go │ │ │ │ ├── interface_freebsd.go │ │ │ │ └── interface_linux.go │ │ │ ├── pasta/ │ │ │ │ ├── pasta_linux.go │ │ │ │ └── types.go │ │ │ ├── resolvconf/ │ │ │ │ ├── resolv.go │ │ │ │ └── resolvconf.go │ │ │ ├── slirp4netns/ │ │ │ │ ├── const.go │ │ │ │ ├── const_linux.go │ │ │ │ └── slirp4netns.go │ │ │ ├── types/ │ │ │ │ ├── const.go │ │ │ │ ├── define.go │ │ │ │ └── network.go │ │ │ └── util/ │ │ │ ├── filters.go │ │ │ ├── ip.go │ │ │ └── ip_calc.go │ │ ├── pkg/ │ │ │ ├── apparmor/ │ │ │ │ ├── apparmor.go │ │ │ │ ├── apparmor_linux.go │ │ │ │ ├── apparmor_linux_template.go │ │ │ │ ├── apparmor_unsupported.go │ │ │ │ └── internal/ │ │ │ │ └── supported/ │ │ │ │ └── supported.go │ │ │ ├── auth/ │ │ │ │ ├── auth.go │ │ │ │ └── cli.go │ │ │ ├── capabilities/ │ │ │ │ └── capabilities.go │ │ │ ├── cgroups/ │ │ │ │ ├── blkio_linux.go │ │ │ │ ├── cgroups_linux.go │ │ │ │ ├── cgroups_unsupported.go │ │ │ │ ├── cpu_linux.go │ │ │ │ ├── memory_linux.go │ │ │ │ ├── pids_linux.go │ │ │ │ ├── systemd_linux.go │ │ │ │ └── utils_linux.go │ │ │ ├── chown/ │ │ │ │ ├── chown.go │ │ │ │ ├── chown_unix.go │ │ │ │ └── chown_windows.go │ │ │ ├── completion/ │ │ │ │ └── completion.go │ │ │ ├── config/ │ │ │ │ ├── config.go │ │ │ │ ├── config_bsd.go │ │ │ │ ├── config_darwin.go │ │ │ │ ├── config_linux.go │ │ │ │ ├── config_local.go │ │ │ │ ├── config_remote.go │ │ │ │ ├── config_unix.go │ │ │ │ ├── config_unsupported.go │ │ │ │ ├── config_windows.go │ │ │ │ ├── connections.go │ │ │ │ ├── containers.conf │ │ │ │ ├── containers.conf-freebsd │ │ │ │ ├── db_backend.go │ │ │ │ ├── default.go │ │ │ │ ├── default_bsd.go │ │ │ │ ├── default_common.go │ │ │ │ ├── default_darwin.go │ │ │ │ ├── default_linux.go │ │ │ │ ├── default_unix_notdarwin.go │ │ │ │ ├── default_unsupported.go │ │ │ │ ├── default_windows.go │ │ │ │ ├── modules.go │ │ │ │ ├── new.go │ │ │ │ ├── nosystemd.go │ │ │ │ ├── pod_exit_policy.go │ │ │ │ ├── pull_policy.go │ │ │ │ └── systemd.go │ │ │ ├── download/ │ │ │ │ └── download.go │ │ │ ├── filters/ │ │ │ │ └── filters.go │ │ │ ├── formats/ │ │ │ │ ├── formats.go │ │ │ │ └── templates.go │ │ │ ├── hooks/ │ │ │ │ ├── 0.1.0/ │ │ │ │ │ └── hook.go │ │ │ │ ├── 1.0.0/ │ │ │ │ │ ├── hook.go │ │ │ │ │ └── when.go │ │ │ │ ├── README.md │ │ │ │ ├── exec/ │ │ │ │ │ ├── exec.go │ │ │ │ │ └── runtimeconfigfilter.go │ │ │ │ ├── hooks.go │ │ │ │ ├── monitor.go │ │ │ │ ├── read.go │ │ │ │ └── version.go │ │ │ ├── machine/ │ │ │ │ └── machine.go │ │ │ ├── manifests/ │ │ │ │ ├── errors.go │ │ │ │ └── manifests.go │ │ │ ├── netns/ │ │ │ │ └── netns_linux.go │ │ │ ├── parse/ │ │ │ │ ├── parse.go │ │ │ │ └── parse_unix.go │ │ │ ├── password/ │ │ │ │ ├── password_supported.go │ │ │ │ └── password_windows.go │ │ │ ├── retry/ │ │ │ │ ├── retry.go │ │ │ │ ├── retry_linux.go │ │ │ │ └── retry_unsupported.go │ │ │ ├── rootlessport/ │ │ │ │ └── rootlessport_linux.go │ │ │ ├── seccomp/ │ │ │ │ ├── conversion.go │ │ │ │ ├── default_linux.go │ │ │ │ ├── errno_list.go │ │ │ │ ├── filter_linux.go │ │ │ │ ├── seccomp.json │ │ │ │ ├── seccomp_linux.go │ │ │ │ ├── seccomp_unsupported.go │ │ │ │ ├── supported.go │ │ │ │ ├── types.go │ │ │ │ └── validate_linux.go │ │ │ ├── servicereaper/ │ │ │ │ └── service.go │ │ │ ├── signal/ │ │ │ │ ├── signal_common.go │ │ │ │ ├── signal_linux.go │ │ │ │ ├── signal_linux_mipsx.go │ │ │ │ └── signal_unsupported.go │ │ │ ├── subscriptions/ │ │ │ │ ├── mounts.conf │ │ │ │ └── subscriptions.go │ │ │ ├── supplemented/ │ │ │ │ ├── errors.go │ │ │ │ └── supplemented.go │ │ │ ├── systemd/ │ │ │ │ ├── systemd_linux.go │ │ │ │ └── systemd_unsupported.go │ │ │ ├── timetype/ │ │ │ │ └── timestamp.go │ │ │ ├── umask/ │ │ │ │ ├── umask.go │ │ │ │ ├── umask_unix.go │ │ │ │ └── umask_unsupported.go │ │ │ ├── util/ │ │ │ │ └── util.go │ │ │ └── version/ │ │ │ └── version.go │ │ └── version/ │ │ └── version.go │ ├── image/ │ │ └── v5/ │ │ ├── LICENSE │ │ ├── copy/ │ │ │ ├── blob.go │ │ │ ├── compression.go │ │ │ ├── copy.go │ │ │ ├── digesting_reader.go │ │ │ ├── encryption.go │ │ │ ├── manifest.go │ │ │ ├── multiple.go │ │ │ ├── progress_bars.go │ │ │ ├── progress_channel.go │ │ │ ├── sign.go │ │ │ └── single.go │ │ ├── directory/ │ │ │ ├── directory_dest.go │ │ │ ├── directory_src.go │ │ │ ├── directory_transport.go │ │ │ ├── explicitfilepath/ │ │ │ │ └── path.go │ │ │ └── version.go │ │ ├── docker/ │ │ │ ├── archive/ │ │ │ │ ├── dest.go │ │ │ │ ├── reader.go │ │ │ │ ├── src.go │ │ │ │ ├── transport.go │ │ │ │ └── writer.go │ │ │ ├── body_reader.go │ │ │ ├── cache.go │ │ │ ├── daemon/ │ │ │ │ ├── client.go │ │ │ │ ├── daemon_dest.go │ │ │ │ ├── daemon_src.go │ │ │ │ └── daemon_transport.go │ │ │ ├── distribution_error.go │ │ │ ├── docker_client.go │ │ │ ├── docker_image.go │ │ │ ├── docker_image_dest.go │ │ │ ├── docker_image_src.go │ │ │ ├── docker_transport.go │ │ │ ├── errors.go │ │ │ ├── internal/ │ │ │ │ └── tarfile/ │ │ │ │ ├── dest.go │ │ │ │ ├── reader.go │ │ │ │ ├── src.go │ │ │ │ ├── types.go │ │ │ │ └── writer.go │ │ │ ├── paths_common.go │ │ │ ├── paths_freebsd.go │ │ │ ├── policyconfiguration/ │ │ │ │ └── naming.go │ │ │ ├── reference/ │ │ │ │ ├── README.md │ │ │ │ ├── helpers.go │ │ │ │ ├── normalize.go │ │ │ │ ├── reference.go │ │ │ │ ├── regexp-additions.go │ │ │ │ └── regexp.go │ │ │ ├── registries_d.go │ │ │ └── wwwauthenticate.go │ │ ├── image/ │ │ │ ├── docker_schema2.go │ │ │ ├── sourced.go │ │ │ └── unparsed.go │ │ ├── internal/ │ │ │ ├── blobinfocache/ │ │ │ │ ├── blobinfocache.go │ │ │ │ └── types.go │ │ │ ├── digests/ │ │ │ │ └── digests.go │ │ │ ├── image/ │ │ │ │ ├── digest_validation.go │ │ │ │ ├── docker_list.go │ │ │ │ ├── docker_schema1.go │ │ │ │ ├── docker_schema2.go │ │ │ │ ├── manifest.go │ │ │ │ ├── memory.go │ │ │ │ ├── oci.go │ │ │ │ ├── oci_index.go │ │ │ │ ├── sourced.go │ │ │ │ └── unparsed.go │ │ │ ├── imagedestination/ │ │ │ │ ├── impl/ │ │ │ │ │ ├── compat.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ └── properties.go │ │ │ │ ├── stubs/ │ │ │ │ │ ├── original_oci_config.go │ │ │ │ │ ├── put_blob_partial.go │ │ │ │ │ ├── signatures.go │ │ │ │ │ └── stubs.go │ │ │ │ └── wrapper.go │ │ │ ├── imagesource/ │ │ │ │ ├── impl/ │ │ │ │ │ ├── compat.go │ │ │ │ │ ├── layer_infos.go │ │ │ │ │ ├── properties.go │ │ │ │ │ └── signatures.go │ │ │ │ ├── stubs/ │ │ │ │ │ ├── get_blob_at.go │ │ │ │ │ └── stubs.go │ │ │ │ └── wrapper.go │ │ │ ├── iolimits/ │ │ │ │ └── iolimits.go │ │ │ ├── manifest/ │ │ │ │ ├── common.go │ │ │ │ ├── docker_schema2.go │ │ │ │ ├── docker_schema2_list.go │ │ │ │ ├── errors.go │ │ │ │ ├── list.go │ │ │ │ ├── manifest.go │ │ │ │ └── oci_index.go │ │ │ ├── multierr/ │ │ │ │ └── multierr.go │ │ │ ├── pkg/ │ │ │ │ └── platform/ │ │ │ │ └── platform_matcher.go │ │ │ ├── private/ │ │ │ │ └── private.go │ │ │ ├── putblobdigest/ │ │ │ │ └── put_blob_digest.go │ │ │ ├── rootless/ │ │ │ │ └── rootless.go │ │ │ ├── set/ │ │ │ │ └── set.go │ │ │ ├── signature/ │ │ │ │ ├── signature.go │ │ │ │ ├── sigstore.go │ │ │ │ └── simple.go │ │ │ ├── signer/ │ │ │ │ └── signer.go │ │ │ ├── streamdigest/ │ │ │ │ └── stream_digest.go │ │ │ ├── tmpdir/ │ │ │ │ └── tmpdir.go │ │ │ ├── unparsedimage/ │ │ │ │ └── wrapper.go │ │ │ ├── uploadreader/ │ │ │ │ └── upload_reader.go │ │ │ └── useragent/ │ │ │ └── useragent.go │ │ ├── manifest/ │ │ │ ├── common.go │ │ │ ├── docker_schema1.go │ │ │ ├── docker_schema2.go │ │ │ ├── docker_schema2_list.go │ │ │ ├── list.go │ │ │ ├── manifest.go │ │ │ ├── oci.go │ │ │ └── oci_index.go │ │ ├── oci/ │ │ │ ├── archive/ │ │ │ │ ├── oci_dest.go │ │ │ │ ├── oci_src.go │ │ │ │ └── oci_transport.go │ │ │ ├── internal/ │ │ │ │ └── oci_util.go │ │ │ └── layout/ │ │ │ ├── oci_delete.go │ │ │ ├── oci_dest.go │ │ │ ├── oci_src.go │ │ │ ├── oci_transport.go │ │ │ └── reader.go │ │ ├── openshift/ │ │ │ ├── openshift-copies.go │ │ │ ├── openshift.go │ │ │ ├── openshift_dest.go │ │ │ ├── openshift_src.go │ │ │ └── openshift_transport.go │ │ ├── pkg/ │ │ │ ├── blobcache/ │ │ │ │ ├── blobcache.go │ │ │ │ ├── dest.go │ │ │ │ └── src.go │ │ │ ├── blobinfocache/ │ │ │ │ ├── default.go │ │ │ │ ├── internal/ │ │ │ │ │ └── prioritize/ │ │ │ │ │ └── prioritize.go │ │ │ │ ├── memory/ │ │ │ │ │ └── memory.go │ │ │ │ ├── none/ │ │ │ │ │ └── none.go │ │ │ │ └── sqlite/ │ │ │ │ └── sqlite.go │ │ │ ├── compression/ │ │ │ │ ├── compression.go │ │ │ │ ├── internal/ │ │ │ │ │ └── types.go │ │ │ │ ├── types/ │ │ │ │ │ └── types.go │ │ │ │ └── zstd.go │ │ │ ├── docker/ │ │ │ │ └── config/ │ │ │ │ └── config.go │ │ │ ├── shortnames/ │ │ │ │ └── shortnames.go │ │ │ ├── strslice/ │ │ │ │ ├── README.md │ │ │ │ └── strslice.go │ │ │ ├── sysregistriesv2/ │ │ │ │ ├── paths_common.go │ │ │ │ ├── paths_freebsd.go │ │ │ │ ├── shortnames.go │ │ │ │ └── system_registries_v2.go │ │ │ └── tlsclientconfig/ │ │ │ └── tlsclientconfig.go │ │ ├── sif/ │ │ │ ├── load.go │ │ │ ├── src.go │ │ │ └── transport.go │ │ ├── signature/ │ │ │ ├── docker.go │ │ │ ├── fulcio_cert.go │ │ │ ├── internal/ │ │ │ │ ├── errors.go │ │ │ │ ├── json.go │ │ │ │ ├── rekor_api_types.go │ │ │ │ ├── rekor_set.go │ │ │ │ ├── sequoia/ │ │ │ │ │ ├── gosequoia.c │ │ │ │ │ ├── gosequoia.h │ │ │ │ │ ├── gosequoiafuncs.h │ │ │ │ │ ├── sequoia.go │ │ │ │ │ └── sequoia.h │ │ │ │ └── sigstore_payload.go │ │ │ ├── mechanism.go │ │ │ ├── mechanism_gpgme.go │ │ │ ├── mechanism_gpgme_only.go │ │ │ ├── mechanism_openpgp.go │ │ │ ├── mechanism_sequoia.go │ │ │ ├── pki_cert.go │ │ │ ├── policy_config.go │ │ │ ├── policy_config_sigstore.go │ │ │ ├── policy_eval.go │ │ │ ├── policy_eval_baselayer.go │ │ │ ├── policy_eval_signedby.go │ │ │ ├── policy_eval_sigstore.go │ │ │ ├── policy_eval_simple.go │ │ │ ├── policy_paths_common.go │ │ │ ├── policy_paths_freebsd.go │ │ │ ├── policy_reference_match.go │ │ │ ├── policy_types.go │ │ │ ├── signer/ │ │ │ │ └── signer.go │ │ │ ├── sigstore/ │ │ │ │ ├── copied.go │ │ │ │ ├── generate.go │ │ │ │ ├── internal/ │ │ │ │ │ └── signer.go │ │ │ │ └── signer.go │ │ │ ├── simple.go │ │ │ └── simplesigning/ │ │ │ └── signer.go │ │ ├── storage/ │ │ │ ├── storage_dest.go │ │ │ ├── storage_image.go │ │ │ ├── storage_reference.go │ │ │ ├── storage_src.go │ │ │ └── storage_transport.go │ │ ├── tarball/ │ │ │ ├── doc.go │ │ │ ├── tarball_reference.go │ │ │ ├── tarball_src.go │ │ │ └── tarball_transport.go │ │ ├── transports/ │ │ │ ├── alltransports/ │ │ │ │ ├── alltransports.go │ │ │ │ ├── docker_daemon.go │ │ │ │ ├── docker_daemon_stub.go │ │ │ │ ├── storage.go │ │ │ │ └── storage_stub.go │ │ │ ├── stub.go │ │ │ └── transports.go │ │ ├── types/ │ │ │ └── types.go │ │ └── version/ │ │ └── version.go │ └── storage/ │ ├── .dockerignore │ ├── .gitignore │ ├── .golangci.yml │ ├── .mailmap │ ├── AUTHORS │ ├── LICENSE │ ├── Makefile │ ├── NOTICE │ ├── OWNERS │ ├── README.md │ ├── VERSION │ ├── check.go │ ├── containers.go │ ├── deprecated.go │ ├── drivers/ │ │ ├── btrfs/ │ │ │ ├── btrfs.go │ │ │ ├── dummy_unsupported.go │ │ │ └── version.go │ │ ├── chown.go │ │ ├── chown_darwin.go │ │ ├── chown_unix.go │ │ ├── chown_windows.go │ │ ├── chroot_unix.go │ │ ├── chroot_windows.go │ │ ├── copy/ │ │ │ ├── copy_linux.go │ │ │ └── copy_unsupported.go │ │ ├── counter.go │ │ ├── driver.go │ │ ├── driver_darwin.go │ │ ├── driver_freebsd.go │ │ ├── driver_linux.go │ │ ├── driver_solaris.go │ │ ├── driver_unsupported.go │ │ ├── fsdiff.go │ │ ├── jsoniter.go │ │ ├── overlay/ │ │ │ ├── check.go │ │ │ ├── check_116.go │ │ │ ├── composefs.go │ │ │ ├── jsoniter.go │ │ │ ├── mount.go │ │ │ ├── overlay.go │ │ │ ├── overlay_disk_quota.go │ │ │ ├── overlay_disk_quota_unsupported.go │ │ │ ├── overlay_unsupported.go │ │ │ └── randomid.go │ │ ├── overlayutils/ │ │ │ └── overlayutils.go │ │ ├── quota/ │ │ │ ├── projectquota.go │ │ │ ├── projectquota_supported.go │ │ │ └── projectquota_unsupported.go │ │ ├── register/ │ │ │ ├── register_btrfs.go │ │ │ ├── register_overlay.go │ │ │ ├── register_vfs.go │ │ │ └── register_zfs.go │ │ ├── vfs/ │ │ │ ├── copy_linux.go │ │ │ ├── copy_unsupported.go │ │ │ └── driver.go │ │ └── zfs/ │ │ ├── MAINTAINERS │ │ ├── zfs.go │ │ ├── zfs_freebsd.go │ │ ├── zfs_linux.go │ │ └── zfs_unsupported.go │ ├── errors.go │ ├── idset.go │ ├── images.go │ ├── internal/ │ │ ├── dedup/ │ │ │ ├── dedup.go │ │ │ ├── dedup_linux.go │ │ │ └── dedup_unsupported.go │ │ ├── rawfilelock/ │ │ │ ├── rawfilelock.go │ │ │ ├── rawfilelock_unix.go │ │ │ └── rawfilelock_windows.go │ │ ├── staging_lockfile/ │ │ │ └── staging_lockfile.go │ │ └── tempdir/ │ │ └── tempdir.go │ ├── jsoniter.go │ ├── layers.go │ ├── lockfile_compat.go │ ├── pkg/ │ │ ├── archive/ │ │ │ ├── README.md │ │ │ ├── archive.go │ │ │ ├── archive_110.go │ │ │ ├── archive_19.go │ │ │ ├── archive_bsd.go │ │ │ ├── archive_linux.go │ │ │ ├── archive_other.go │ │ │ ├── archive_unix.go │ │ │ ├── archive_windows.go │ │ │ ├── archive_zstd.go │ │ │ ├── changes.go │ │ │ ├── changes_linux.go │ │ │ ├── changes_other.go │ │ │ ├── changes_unix.go │ │ │ ├── changes_windows.go │ │ │ ├── copy.go │ │ │ ├── copy_unix.go │ │ │ ├── copy_windows.go │ │ │ ├── diff.go │ │ │ ├── fflags_bsd.go │ │ │ ├── fflags_unsupported.go │ │ │ ├── filter.go │ │ │ ├── time_linux.go │ │ │ ├── time_unsupported.go │ │ │ ├── whiteouts.go │ │ │ └── wrap.go │ │ ├── chrootarchive/ │ │ │ ├── archive.go │ │ │ ├── archive_darwin.go │ │ │ ├── archive_unix.go │ │ │ ├── archive_windows.go │ │ │ ├── chroot_linux.go │ │ │ ├── chroot_unix.go │ │ │ ├── diff.go │ │ │ ├── diff_darwin.go │ │ │ ├── diff_unix.go │ │ │ ├── diff_windows.go │ │ │ ├── init_unix.go │ │ │ └── jsoniter.go │ │ ├── chunked/ │ │ │ ├── bloom_filter_linux.go │ │ │ ├── cache_linux.go │ │ │ ├── compression.go │ │ │ ├── compression_linux.go │ │ │ ├── compressor/ │ │ │ │ ├── compressor.go │ │ │ │ └── rollsum.go │ │ │ ├── dump/ │ │ │ │ └── dump.go │ │ │ ├── filesystem_linux.go │ │ │ ├── internal/ │ │ │ │ ├── minimal/ │ │ │ │ │ └── compression.go │ │ │ │ └── path/ │ │ │ │ └── path.go │ │ │ ├── storage.go │ │ │ ├── storage_linux.go │ │ │ ├── storage_unsupported.go │ │ │ └── toc/ │ │ │ └── toc.go │ │ ├── config/ │ │ │ └── config.go │ │ ├── configfile/ │ │ │ ├── doc.go │ │ │ ├── parse.go │ │ │ ├── path.go │ │ │ ├── path_freebsd.go │ │ │ ├── path_unix.go │ │ │ └── path_windows.go │ │ ├── directory/ │ │ │ ├── directory.go │ │ │ ├── directory_unix.go │ │ │ └── directory_windows.go │ │ ├── fileutils/ │ │ │ ├── exists_freebsd.go │ │ │ ├── exists_unix.go │ │ │ ├── exists_windows.go │ │ │ ├── fileutils.go │ │ │ ├── fileutils_darwin.go │ │ │ ├── fileutils_solaris.go │ │ │ ├── fileutils_unix.go │ │ │ ├── fileutils_windows.go │ │ │ ├── reflink_linux.go │ │ │ └── reflink_unsupported.go │ │ ├── fsutils/ │ │ │ └── fsutils_linux.go │ │ ├── fsverity/ │ │ │ ├── fsverity_linux.go │ │ │ └── fsverity_unsupported.go │ │ ├── homedir/ │ │ │ ├── homedir.go │ │ │ ├── homedir_unix.go │ │ │ └── homedir_windows.go │ │ ├── idmap/ │ │ │ ├── idmapped_utils.go │ │ │ └── idmapped_utils_unsupported.go │ │ ├── idtools/ │ │ │ ├── idtools.go │ │ │ ├── idtools_supported.go │ │ │ ├── idtools_unix.go │ │ │ ├── idtools_unsupported.go │ │ │ ├── idtools_windows.go │ │ │ ├── parser.go │ │ │ ├── usergroupadd_linux.go │ │ │ ├── usergroupadd_unsupported.go │ │ │ └── utils_unix.go │ │ ├── ioutils/ │ │ │ ├── buffer.go │ │ │ ├── bytespipe.go │ │ │ ├── fswriters.go │ │ │ ├── fswriters_linux.go │ │ │ ├── fswriters_other.go │ │ │ ├── readers.go │ │ │ ├── temp_unix.go │ │ │ ├── temp_windows.go │ │ │ ├── writeflusher.go │ │ │ └── writers.go │ │ ├── lockfile/ │ │ │ ├── lastwrite.go │ │ │ ├── lockfile.go │ │ │ ├── lockfile_unix.go │ │ │ └── lockfile_windows.go │ │ ├── longpath/ │ │ │ └── longpath.go │ │ ├── loopback/ │ │ │ ├── attach_loopback.go │ │ │ ├── ioctl.go │ │ │ ├── loop_wrapper.go │ │ │ ├── loopback.go │ │ │ └── loopback_unsupported.go │ │ ├── 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_linux.go │ │ │ ├── sharedsubtree_linux.go │ │ │ ├── unmount_unix.go │ │ │ └── unmount_unsupported.go │ │ ├── parsers/ │ │ │ └── parsers.go │ │ ├── pools/ │ │ │ └── pools.go │ │ ├── promise/ │ │ │ └── promise.go │ │ ├── reexec/ │ │ │ ├── README.md │ │ │ ├── command_freebsd.go │ │ │ ├── command_linux.go │ │ │ ├── command_unix.go │ │ │ ├── command_unsupported.go │ │ │ ├── command_windows.go │ │ │ └── reexec.go │ │ ├── regexp/ │ │ │ ├── regexp.go │ │ │ ├── regexp_dontprecompile.go │ │ │ └── regexp_precompile.go │ │ ├── stringid/ │ │ │ ├── README.md │ │ │ └── stringid.go │ │ ├── stringutils/ │ │ │ ├── README.md │ │ │ └── stringutils.go │ │ ├── system/ │ │ │ ├── chmod.go │ │ │ ├── chtimes.go │ │ │ ├── chtimes_unix.go │ │ │ ├── chtimes_windows.go │ │ │ ├── errors.go │ │ │ ├── exitcode.go │ │ │ ├── extattr_freebsd.go │ │ │ ├── extattr_unsupported.go │ │ │ ├── init.go │ │ │ ├── init_windows.go │ │ │ ├── lchflags_bsd.go │ │ │ ├── lchown.go │ │ │ ├── lcow_unix.go │ │ │ ├── lcow_windows.go │ │ │ ├── lstat_unix.go │ │ │ ├── lstat_windows.go │ │ │ ├── meminfo.go │ │ │ ├── meminfo_freebsd.go │ │ │ ├── meminfo_linux.go │ │ │ ├── meminfo_solaris.go │ │ │ ├── meminfo_unsupported.go │ │ │ ├── meminfo_windows.go │ │ │ ├── mknod.go │ │ │ ├── mknod_freebsd.go │ │ │ ├── mknod_windows.go │ │ │ ├── path.go │ │ │ ├── path_unix.go │ │ │ ├── path_windows.go │ │ │ ├── process_unix.go │ │ │ ├── rm.go │ │ │ ├── rm_common.go │ │ │ ├── rm_freebsd.go │ │ │ ├── stat_common.go │ │ │ ├── stat_darwin.go │ │ │ ├── stat_freebsd.go │ │ │ ├── stat_linux.go │ │ │ ├── stat_netbsd.go │ │ │ ├── stat_openbsd.go │ │ │ ├── stat_solaris.go │ │ │ ├── stat_unix.go │ │ │ ├── stat_windows.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_windows.go │ │ │ ├── umask.go │ │ │ ├── umask_windows.go │ │ │ ├── utimes_freebsd.go │ │ │ ├── utimes_linux.go │ │ │ ├── utimes_unsupported.go │ │ │ ├── xattrs_darwin.go │ │ │ ├── xattrs_freebsd.go │ │ │ ├── xattrs_linux.go │ │ │ └── xattrs_unsupported.go │ │ ├── tarlog/ │ │ │ └── tarlogger.go │ │ ├── truncindex/ │ │ │ └── truncindex.go │ │ └── unshare/ │ │ ├── getenv_linux_cgo.go │ │ ├── getenv_linux_nocgo.go │ │ ├── unshare.c │ │ ├── unshare.go │ │ ├── unshare_cgo.go │ │ ├── unshare_darwin.go │ │ ├── unshare_freebsd.c │ │ ├── unshare_freebsd.go │ │ ├── unshare_gccgo.go │ │ ├── unshare_linux.go │ │ ├── unshare_unsupported.go │ │ └── unshare_unsupported_cgo.go │ ├── storage.conf │ ├── storage.conf-freebsd │ ├── store.go │ ├── types/ │ │ ├── default_override_test.conf │ │ ├── errors.go │ │ ├── idmappings.go │ │ ├── options.go │ │ ├── options_bsd.go │ │ ├── options_darwin.go │ │ ├── options_linux.go │ │ ├── options_windows.go │ │ ├── storage_broken.conf │ │ ├── storage_test.conf │ │ └── utils.go │ ├── userns.go │ ├── userns_unsupported.go │ └── utils.go ├── go.yaml.in/ │ └── yaml/ │ └── v2/ │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── golang.org/ │ └── x/ │ ├── crypto/ │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── argon2/ │ │ │ ├── argon2.go │ │ │ ├── blake2b.go │ │ │ ├── blamka_amd64.go │ │ │ ├── blamka_amd64.s │ │ │ ├── blamka_generic.go │ │ │ └── blamka_ref.go │ │ ├── bcrypt/ │ │ │ ├── base64.go │ │ │ └── bcrypt.go │ │ ├── blake2b/ │ │ │ ├── blake2b.go │ │ │ ├── blake2bAVX2_amd64.go │ │ │ ├── blake2bAVX2_amd64.s │ │ │ ├── blake2b_amd64.s │ │ │ ├── blake2b_generic.go │ │ │ ├── blake2b_ref.go │ │ │ ├── blake2x.go │ │ │ ├── go125.go │ │ │ └── register.go │ │ ├── blowfish/ │ │ │ ├── block.go │ │ │ ├── cipher.go │ │ │ └── const.go │ │ ├── cast5/ │ │ │ └── cast5.go │ │ ├── chacha20/ │ │ │ ├── chacha_arm64.go │ │ │ ├── chacha_arm64.s │ │ │ ├── chacha_generic.go │ │ │ ├── chacha_noasm.go │ │ │ ├── chacha_ppc64x.go │ │ │ ├── chacha_ppc64x.s │ │ │ ├── chacha_s390x.go │ │ │ ├── chacha_s390x.s │ │ │ └── xor.go │ │ ├── cryptobyte/ │ │ │ ├── asn1/ │ │ │ │ └── asn1.go │ │ │ ├── asn1.go │ │ │ ├── builder.go │ │ │ └── string.go │ │ ├── curve25519/ │ │ │ └── curve25519.go │ │ ├── internal/ │ │ │ ├── alias/ │ │ │ │ ├── alias.go │ │ │ │ └── alias_purego.go │ │ │ └── poly1305/ │ │ │ ├── mac_noasm.go │ │ │ ├── poly1305.go │ │ │ ├── sum_amd64.s │ │ │ ├── sum_asm.go │ │ │ ├── sum_generic.go │ │ │ ├── sum_loong64.s │ │ │ ├── sum_ppc64x.s │ │ │ ├── sum_s390x.go │ │ │ └── sum_s390x.s │ │ ├── nacl/ │ │ │ └── secretbox/ │ │ │ └── secretbox.go │ │ ├── openpgp/ │ │ │ ├── armor/ │ │ │ │ ├── armor.go │ │ │ │ └── encode.go │ │ │ ├── canonical_text.go │ │ │ ├── elgamal/ │ │ │ │ └── elgamal.go │ │ │ ├── errors/ │ │ │ │ └── errors.go │ │ │ ├── keys.go │ │ │ ├── packet/ │ │ │ │ ├── compressed.go │ │ │ │ ├── config.go │ │ │ │ ├── encrypted_key.go │ │ │ │ ├── literal.go │ │ │ │ ├── ocfb.go │ │ │ │ ├── one_pass_signature.go │ │ │ │ ├── opaque.go │ │ │ │ ├── packet.go │ │ │ │ ├── private_key.go │ │ │ │ ├── public_key.go │ │ │ │ ├── public_key_v3.go │ │ │ │ ├── reader.go │ │ │ │ ├── signature.go │ │ │ │ ├── signature_v3.go │ │ │ │ ├── symmetric_key_encrypted.go │ │ │ │ ├── symmetrically_encrypted.go │ │ │ │ ├── userattribute.go │ │ │ │ └── userid.go │ │ │ ├── read.go │ │ │ ├── s2k/ │ │ │ │ └── s2k.go │ │ │ └── write.go │ │ ├── pbkdf2/ │ │ │ └── pbkdf2.go │ │ ├── ripemd160/ │ │ │ ├── ripemd160.go │ │ │ └── ripemd160block.go │ │ ├── salsa20/ │ │ │ └── salsa/ │ │ │ ├── hsalsa20.go │ │ │ ├── salsa208.go │ │ │ ├── salsa20_amd64.go │ │ │ ├── salsa20_amd64.s │ │ │ ├── salsa20_noasm.go │ │ │ └── salsa20_ref.go │ │ ├── scrypt/ │ │ │ └── scrypt.go │ │ ├── ssh/ │ │ │ ├── agent/ │ │ │ │ ├── client.go │ │ │ │ ├── forward.go │ │ │ │ ├── keyring.go │ │ │ │ └── server.go │ │ │ ├── buffer.go │ │ │ ├── certs.go │ │ │ ├── channel.go │ │ │ ├── cipher.go │ │ │ ├── client.go │ │ │ ├── client_auth.go │ │ │ ├── common.go │ │ │ ├── connection.go │ │ │ ├── doc.go │ │ │ ├── handshake.go │ │ │ ├── internal/ │ │ │ │ └── bcrypt_pbkdf/ │ │ │ │ └── bcrypt_pbkdf.go │ │ │ ├── kex.go │ │ │ ├── keys.go │ │ │ ├── mac.go │ │ │ ├── messages.go │ │ │ ├── mlkem.go │ │ │ ├── mux.go │ │ │ ├── server.go │ │ │ ├── session.go │ │ │ ├── ssh_gss.go │ │ │ ├── streamlocal.go │ │ │ ├── tcpip.go │ │ │ └── transport.go │ │ ├── twofish/ │ │ │ └── twofish.go │ │ └── xts/ │ │ └── xts.go │ ├── mod/ │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── semver/ │ │ └── semver.go │ ├── net/ │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── http/ │ │ │ └── httpguts/ │ │ │ ├── guts.go │ │ │ └── httplex.go │ │ ├── http2/ │ │ │ ├── .gitignore │ │ │ ├── ascii.go │ │ │ ├── ciphers.go │ │ │ ├── client_conn_pool.go │ │ │ ├── client_priority_go126.go │ │ │ ├── client_priority_go127.go │ │ │ ├── config.go │ │ │ ├── config_go125.go │ │ │ ├── config_go126.go │ │ │ ├── databuffer.go │ │ │ ├── errors.go │ │ │ ├── flow.go │ │ │ ├── frame.go │ │ │ ├── gotrack.go │ │ │ ├── hpack/ │ │ │ │ ├── encode.go │ │ │ │ ├── hpack.go │ │ │ │ ├── huffman.go │ │ │ │ ├── static_table.go │ │ │ │ └── tables.go │ │ │ ├── http2.go │ │ │ ├── pipe.go │ │ │ ├── server.go │ │ │ ├── transport.go │ │ │ ├── unencrypted.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ ├── writesched_priority_rfc7540.go │ │ │ ├── writesched_priority_rfc9218.go │ │ │ ├── writesched_random.go │ │ │ └── writesched_roundrobin.go │ │ ├── idna/ │ │ │ ├── go118.go │ │ │ ├── idna10.0.0.go │ │ │ ├── idna9.0.0.go │ │ │ ├── pre_go118.go │ │ │ ├── punycode.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── trie.go │ │ │ ├── trie12.0.0.go │ │ │ ├── trie13.0.0.go │ │ │ └── trieval.go │ │ ├── internal/ │ │ │ ├── httpcommon/ │ │ │ │ ├── ascii.go │ │ │ │ ├── headermap.go │ │ │ │ └── request.go │ │ │ ├── httpsfv/ │ │ │ │ └── httpsfv.go │ │ │ └── timeseries/ │ │ │ └── timeseries.go │ │ └── trace/ │ │ ├── events.go │ │ ├── histogram.go │ │ └── trace.go │ ├── sync/ │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── errgroup/ │ │ │ └── errgroup.go │ │ └── semaphore/ │ │ └── semaphore.go │ ├── sys/ │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── cpu/ │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── asm_darwin_arm64_gc.s │ │ │ ├── asm_darwin_x86_gc.s │ │ │ ├── byteorder.go │ │ │ ├── cpu.go │ │ │ ├── cpu_aix.go │ │ │ ├── cpu_arm.go │ │ │ ├── cpu_arm64.go │ │ │ ├── cpu_arm64.s │ │ │ ├── cpu_darwin_arm64.go │ │ │ ├── cpu_darwin_arm64_other.go │ │ │ ├── cpu_darwin_x86.go │ │ │ ├── cpu_gc_arm64.go │ │ │ ├── cpu_gc_s390x.go │ │ │ ├── cpu_gc_x86.go │ │ │ ├── cpu_gc_x86.s │ │ │ ├── cpu_gccgo_arm64.go │ │ │ ├── cpu_gccgo_s390x.go │ │ │ ├── cpu_gccgo_x86.c │ │ │ ├── cpu_gccgo_x86.go │ │ │ ├── cpu_linux.go │ │ │ ├── cpu_linux_arm.go │ │ │ ├── cpu_linux_arm64.go │ │ │ ├── cpu_linux_loong64.go │ │ │ ├── cpu_linux_mips64x.go │ │ │ ├── cpu_linux_noinit.go │ │ │ ├── cpu_linux_ppc64x.go │ │ │ ├── cpu_linux_riscv64.go │ │ │ ├── cpu_linux_s390x.go │ │ │ ├── cpu_loong64.go │ │ │ ├── cpu_loong64.s │ │ │ ├── cpu_mips64x.go │ │ │ ├── cpu_mipsx.go │ │ │ ├── cpu_netbsd_arm64.go │ │ │ ├── cpu_openbsd_arm64.go │ │ │ ├── cpu_openbsd_arm64.s │ │ │ ├── cpu_other_arm.go │ │ │ ├── cpu_other_arm64.go │ │ │ ├── cpu_other_mips64x.go │ │ │ ├── cpu_other_ppc64x.go │ │ │ ├── cpu_other_riscv64.go │ │ │ ├── cpu_other_x86.go │ │ │ ├── cpu_ppc64x.go │ │ │ ├── cpu_riscv64.go │ │ │ ├── cpu_s390x.go │ │ │ ├── cpu_s390x.s │ │ │ ├── cpu_wasm.go │ │ │ ├── cpu_windows_arm64.go │ │ │ ├── cpu_x86.go │ │ │ ├── cpu_zos.go │ │ │ ├── cpu_zos_s390x.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── hwcap_linux.go │ │ │ ├── parse.go │ │ │ ├── proc_cpuinfo_linux.go │ │ │ ├── runtime_auxv.go │ │ │ ├── runtime_auxv_go121.go │ │ │ ├── syscall_aix_gccgo.go │ │ │ ├── syscall_aix_ppc64_gc.go │ │ │ ├── syscall_darwin_arm64_gc.go │ │ │ └── syscall_darwin_x86_gc.go │ │ ├── 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 │ │ │ ├── mksysnum_plan9.sh │ │ │ ├── pwd_plan9.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_plan9.go │ │ │ ├── zsyscall_plan9_386.go │ │ │ ├── zsyscall_plan9_amd64.go │ │ │ ├── zsyscall_plan9_arm.go │ │ │ └── zsysnum_plan9.go │ │ ├── unix/ │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── affinity_linux.go │ │ │ ├── aliases.go │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── asm_bsd_386.s │ │ │ ├── asm_bsd_amd64.s │ │ │ ├── asm_bsd_arm.s │ │ │ ├── asm_bsd_arm64.s │ │ │ ├── asm_bsd_ppc64.s │ │ │ ├── asm_bsd_riscv64.s │ │ │ ├── asm_linux_386.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_arm64.s │ │ │ ├── asm_linux_loong64.s │ │ │ ├── asm_linux_mips64x.s │ │ │ ├── asm_linux_mipsx.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_linux_riscv64.s │ │ │ ├── asm_linux_s390x.s │ │ │ ├── asm_openbsd_mips64.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── asm_zos_s390x.s │ │ │ ├── auxv.go │ │ │ ├── auxv_unsupported.go │ │ │ ├── bluetooth_linux.go │ │ │ ├── bpxsvc_zos.go │ │ │ ├── bpxsvc_zos.s │ │ │ ├── cap_freebsd.go │ │ │ ├── constants.go │ │ │ ├── dev_aix_ppc.go │ │ │ ├── dev_aix_ppc64.go │ │ │ ├── dev_darwin.go │ │ │ ├── dev_dragonfly.go │ │ │ ├── dev_freebsd.go │ │ │ ├── dev_linux.go │ │ │ ├── dev_netbsd.go │ │ │ ├── dev_openbsd.go │ │ │ ├── dev_zos.go │ │ │ ├── dirent.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── env_unix.go │ │ │ ├── fcntl.go │ │ │ ├── fcntl_darwin.go │ │ │ ├── fcntl_linux_32bit.go │ │ │ ├── fdset.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── ifreq_linux.go │ │ │ ├── ioctl_linux.go │ │ │ ├── ioctl_signed.go │ │ │ ├── ioctl_unsigned.go │ │ │ ├── ioctl_zos.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mmap_nomremap.go │ │ │ ├── mremap.go │ │ │ ├── pagesize_unix.go │ │ │ ├── pledge_openbsd.go │ │ │ ├── ptrace_darwin.go │ │ │ ├── ptrace_ios.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── readdirent_getdents.go │ │ │ ├── readdirent_getdirentries.go │ │ │ ├── sockcmsg_dragonfly.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── sockcmsg_unix_other.go │ │ │ ├── sockcmsg_zos.go │ │ │ ├── symaddr_zos_s390x.s │ │ │ ├── syscall.go │ │ │ ├── syscall_aix.go │ │ │ ├── syscall_aix_ppc.go │ │ │ ├── syscall_aix_ppc64.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_darwin.go │ │ │ ├── syscall_darwin_amd64.go │ │ │ ├── syscall_darwin_arm64.go │ │ │ ├── syscall_darwin_libSystem.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_arm64.go │ │ │ ├── syscall_freebsd_riscv64.go │ │ │ ├── syscall_hurd.go │ │ │ ├── syscall_hurd_386.go │ │ │ ├── syscall_illumos.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_alarm.go │ │ │ ├── syscall_linux_amd64.go │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── syscall_linux_arm64.go │ │ │ ├── syscall_linux_gc.go │ │ │ ├── syscall_linux_gc_386.go │ │ │ ├── syscall_linux_gc_arm.go │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ ├── syscall_linux_loong64.go │ │ │ ├── syscall_linux_mips64x.go │ │ │ ├── syscall_linux_mipsx.go │ │ │ ├── syscall_linux_ppc.go │ │ │ ├── syscall_linux_ppc64x.go │ │ │ ├── syscall_linux_riscv64.go │ │ │ ├── syscall_linux_s390x.go │ │ │ ├── syscall_linux_sparc64.go │ │ │ ├── syscall_netbsd.go │ │ │ ├── syscall_netbsd_386.go │ │ │ ├── syscall_netbsd_amd64.go │ │ │ ├── syscall_netbsd_arm.go │ │ │ ├── syscall_netbsd_arm64.go │ │ │ ├── syscall_openbsd.go │ │ │ ├── syscall_openbsd_386.go │ │ │ ├── syscall_openbsd_amd64.go │ │ │ ├── syscall_openbsd_arm.go │ │ │ ├── syscall_openbsd_arm64.go │ │ │ ├── syscall_openbsd_libc.go │ │ │ ├── syscall_openbsd_mips64.go │ │ │ ├── syscall_openbsd_ppc64.go │ │ │ ├── syscall_openbsd_riscv64.go │ │ │ ├── syscall_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_unix_gc.go │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ ├── syscall_zos_s390x.go │ │ │ ├── sysvshm_linux.go │ │ │ ├── sysvshm_unix.go │ │ │ ├── sysvshm_unix_other.go │ │ │ ├── timestruct.go │ │ │ ├── unveil_openbsd.go │ │ │ ├── vgetrandom_linux.go │ │ │ ├── vgetrandom_unsupported.go │ │ │ ├── xattr_bsd.go │ │ │ ├── zerrors_aix_ppc.go │ │ │ ├── zerrors_aix_ppc64.go │ │ │ ├── zerrors_darwin_amd64.go │ │ │ ├── zerrors_darwin_arm64.go │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ ├── zerrors_freebsd_386.go │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ ├── zerrors_freebsd_arm.go │ │ │ ├── zerrors_freebsd_arm64.go │ │ │ ├── zerrors_freebsd_riscv64.go │ │ │ ├── zerrors_linux.go │ │ │ ├── zerrors_linux_386.go │ │ │ ├── zerrors_linux_amd64.go │ │ │ ├── zerrors_linux_arm.go │ │ │ ├── zerrors_linux_arm64.go │ │ │ ├── zerrors_linux_loong64.go │ │ │ ├── zerrors_linux_mips.go │ │ │ ├── zerrors_linux_mips64.go │ │ │ ├── zerrors_linux_mips64le.go │ │ │ ├── zerrors_linux_mipsle.go │ │ │ ├── zerrors_linux_ppc.go │ │ │ ├── zerrors_linux_ppc64.go │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ ├── zerrors_linux_riscv64.go │ │ │ ├── zerrors_linux_s390x.go │ │ │ ├── zerrors_linux_sparc64.go │ │ │ ├── zerrors_netbsd_386.go │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ ├── zerrors_netbsd_arm.go │ │ │ ├── zerrors_netbsd_arm64.go │ │ │ ├── zerrors_openbsd_386.go │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ ├── zerrors_openbsd_arm.go │ │ │ ├── zerrors_openbsd_arm64.go │ │ │ ├── zerrors_openbsd_mips64.go │ │ │ ├── zerrors_openbsd_ppc64.go │ │ │ ├── zerrors_openbsd_riscv64.go │ │ │ ├── zerrors_solaris_amd64.go │ │ │ ├── zerrors_zos_s390x.go │ │ │ ├── zptrace_armnn_linux.go │ │ │ ├── zptrace_linux_arm64.go │ │ │ ├── zptrace_mipsnn_linux.go │ │ │ ├── zptrace_mipsnnle_linux.go │ │ │ ├── zptrace_x86_linux.go │ │ │ ├── zsymaddr_zos_s390x.s │ │ │ ├── zsyscall_aix_ppc.go │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_amd64.s │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ ├── zsyscall_darwin_arm64.s │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ ├── zsyscall_freebsd_386.go │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ ├── zsyscall_freebsd_arm64.go │ │ │ ├── zsyscall_freebsd_riscv64.go │ │ │ ├── zsyscall_illumos_amd64.go │ │ │ ├── zsyscall_linux.go │ │ │ ├── zsyscall_linux_386.go │ │ │ ├── zsyscall_linux_amd64.go │ │ │ ├── zsyscall_linux_arm.go │ │ │ ├── zsyscall_linux_arm64.go │ │ │ ├── zsyscall_linux_loong64.go │ │ │ ├── zsyscall_linux_mips.go │ │ │ ├── zsyscall_linux_mips64.go │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ ├── zsyscall_linux_ppc.go │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ ├── zsyscall_linux_riscv64.go │ │ │ ├── zsyscall_linux_s390x.go │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ ├── zsyscall_netbsd_386.go │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ ├── zsyscall_netbsd_arm64.go │ │ │ ├── zsyscall_openbsd_386.go │ │ │ ├── zsyscall_openbsd_386.s │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ ├── zsyscall_openbsd_amd64.s │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ ├── zsyscall_openbsd_arm.s │ │ │ ├── zsyscall_openbsd_arm64.go │ │ │ ├── zsyscall_openbsd_arm64.s │ │ │ ├── zsyscall_openbsd_mips64.go │ │ │ ├── zsyscall_openbsd_mips64.s │ │ │ ├── zsyscall_openbsd_ppc64.go │ │ │ ├── zsyscall_openbsd_ppc64.s │ │ │ ├── zsyscall_openbsd_riscv64.go │ │ │ ├── zsyscall_openbsd_riscv64.s │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ ├── zsyscall_zos_s390x.go │ │ │ ├── zsysctl_openbsd_386.go │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ ├── zsysctl_openbsd_arm64.go │ │ │ ├── zsysctl_openbsd_mips64.go │ │ │ ├── zsysctl_openbsd_ppc64.go │ │ │ ├── zsysctl_openbsd_riscv64.go │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ ├── zsysnum_freebsd_386.go │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ ├── zsysnum_freebsd_arm64.go │ │ │ ├── zsysnum_freebsd_riscv64.go │ │ │ ├── zsysnum_linux_386.go │ │ │ ├── zsysnum_linux_amd64.go │ │ │ ├── zsysnum_linux_arm.go │ │ │ ├── zsysnum_linux_arm64.go │ │ │ ├── zsysnum_linux_loong64.go │ │ │ ├── zsysnum_linux_mips.go │ │ │ ├── zsysnum_linux_mips64.go │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ ├── zsysnum_linux_ppc.go │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ ├── zsysnum_linux_riscv64.go │ │ │ ├── zsysnum_linux_s390x.go │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ ├── zsysnum_netbsd_386.go │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ ├── zsysnum_netbsd_arm64.go │ │ │ ├── zsysnum_openbsd_386.go │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ ├── zsysnum_openbsd_arm64.go │ │ │ ├── zsysnum_openbsd_mips64.go │ │ │ ├── zsysnum_openbsd_ppc64.go │ │ │ ├── zsysnum_openbsd_riscv64.go │ │ │ ├── zsysnum_zos_s390x.go │ │ │ ├── ztypes_aix_ppc.go │ │ │ ├── ztypes_aix_ppc64.go │ │ │ ├── ztypes_darwin_amd64.go │ │ │ ├── ztypes_darwin_arm64.go │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ ├── ztypes_freebsd_386.go │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ ├── ztypes_freebsd_arm.go │ │ │ ├── ztypes_freebsd_arm64.go │ │ │ ├── ztypes_freebsd_riscv64.go │ │ │ ├── ztypes_linux.go │ │ │ ├── ztypes_linux_386.go │ │ │ ├── ztypes_linux_amd64.go │ │ │ ├── ztypes_linux_arm.go │ │ │ ├── ztypes_linux_arm64.go │ │ │ ├── ztypes_linux_loong64.go │ │ │ ├── ztypes_linux_mips.go │ │ │ ├── ztypes_linux_mips64.go │ │ │ ├── ztypes_linux_mips64le.go │ │ │ ├── ztypes_linux_mipsle.go │ │ │ ├── ztypes_linux_ppc.go │ │ │ ├── ztypes_linux_ppc64.go │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ ├── ztypes_linux_riscv64.go │ │ │ ├── ztypes_linux_s390x.go │ │ │ ├── ztypes_linux_sparc64.go │ │ │ ├── ztypes_netbsd_386.go │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ ├── ztypes_netbsd_arm.go │ │ │ ├── ztypes_netbsd_arm64.go │ │ │ ├── ztypes_openbsd_386.go │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ ├── ztypes_openbsd_arm.go │ │ │ ├── ztypes_openbsd_arm64.go │ │ │ ├── ztypes_openbsd_mips64.go │ │ │ ├── ztypes_openbsd_ppc64.go │ │ │ ├── ztypes_openbsd_riscv64.go │ │ │ ├── ztypes_solaris_amd64.go │ │ │ └── ztypes_zos_s390x.go │ │ └── windows/ │ │ ├── aliases.go │ │ ├── dll_windows.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mkerrors.bash │ │ ├── mkknownfolderids.bash │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── setupapi_windows.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── types_windows_arm.go │ │ ├── types_windows_arm64.go │ │ ├── zerrors_windows.go │ │ ├── zknownfolderids_windows.go │ │ └── zsyscall_windows.go │ ├── term/ │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── codereview.cfg │ │ ├── term.go │ │ ├── term_plan9.go │ │ ├── term_unix.go │ │ ├── term_unix_bsd.go │ │ ├── term_unix_other.go │ │ ├── term_unsupported.go │ │ ├── term_windows.go │ │ └── terminal.go │ └── text/ │ ├── LICENSE │ ├── PATENTS │ ├── secure/ │ │ └── bidirule/ │ │ └── bidirule.go │ ├── transform/ │ │ └── transform.go │ └── unicode/ │ ├── bidi/ │ │ ├── bidi.go │ │ ├── bracket.go │ │ ├── core.go │ │ ├── prop.go │ │ ├── tables15.0.0.go │ │ ├── tables17.0.0.go │ │ └── trieval.go │ └── norm/ │ ├── composition.go │ ├── forminfo.go │ ├── input.go │ ├── iter.go │ ├── normalize.go │ ├── readwriter.go │ ├── tables15.0.0.go │ ├── tables17.0.0.go │ ├── transform.go │ └── trie.go ├── google.golang.org/ │ ├── genproto/ │ │ └── googleapis/ │ │ ├── api/ │ │ │ ├── LICENSE │ │ │ ├── annotations/ │ │ │ │ ├── annotations.pb.go │ │ │ │ ├── client.pb.go │ │ │ │ ├── field_behavior.pb.go │ │ │ │ ├── field_info.pb.go │ │ │ │ ├── http.pb.go │ │ │ │ ├── resource.pb.go │ │ │ │ └── routing.pb.go │ │ │ └── launch_stage.pb.go │ │ └── rpc/ │ │ ├── LICENSE │ │ └── status/ │ │ └── status.pb.go │ ├── grpc/ │ │ ├── AUTHORS │ │ ├── CODE-OF-CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── GOVERNANCE.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── NOTICE.txt │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── attributes/ │ │ │ └── attributes.go │ │ ├── backoff/ │ │ │ └── backoff.go │ │ ├── backoff.go │ │ ├── balancer/ │ │ │ ├── balancer.go │ │ │ ├── base/ │ │ │ │ ├── balancer.go │ │ │ │ └── base.go │ │ │ ├── conn_state_evaluator.go │ │ │ ├── endpointsharding/ │ │ │ │ └── endpointsharding.go │ │ │ ├── grpclb/ │ │ │ │ └── state/ │ │ │ │ └── state.go │ │ │ ├── pickfirst/ │ │ │ │ ├── internal/ │ │ │ │ │ └── internal.go │ │ │ │ └── pickfirst.go │ │ │ ├── roundrobin/ │ │ │ │ └── roundrobin.go │ │ │ └── subconn.go │ │ ├── balancer_wrapper.go │ │ ├── binarylog/ │ │ │ └── grpc_binarylog_v1/ │ │ │ └── binarylog.pb.go │ │ ├── call.go │ │ ├── channelz/ │ │ │ └── channelz.go │ │ ├── clientconn.go │ │ ├── codec.go │ │ ├── codes/ │ │ │ ├── code_string.go │ │ │ └── codes.go │ │ ├── connectivity/ │ │ │ └── connectivity.go │ │ ├── credentials/ │ │ │ ├── credentials.go │ │ │ ├── insecure/ │ │ │ │ └── insecure.go │ │ │ └── tls.go │ │ ├── dialoptions.go │ │ ├── doc.go │ │ ├── encoding/ │ │ │ ├── encoding.go │ │ │ ├── encoding_v2.go │ │ │ ├── internal/ │ │ │ │ └── internal.go │ │ │ └── proto/ │ │ │ └── proto.go │ │ ├── experimental/ │ │ │ └── stats/ │ │ │ ├── metricregistry.go │ │ │ └── metrics.go │ │ ├── grpclog/ │ │ │ ├── component.go │ │ │ ├── grpclog.go │ │ │ ├── internal/ │ │ │ │ ├── grpclog.go │ │ │ │ ├── logger.go │ │ │ │ └── loggerv2.go │ │ │ ├── logger.go │ │ │ └── loggerv2.go │ │ ├── interceptor.go │ │ ├── internal/ │ │ │ ├── backoff/ │ │ │ │ └── backoff.go │ │ │ ├── balancer/ │ │ │ │ ├── gracefulswitch/ │ │ │ │ │ ├── config.go │ │ │ │ │ └── gracefulswitch.go │ │ │ │ └── weight/ │ │ │ │ └── weight.go │ │ │ ├── balancerload/ │ │ │ │ └── load.go │ │ │ ├── binarylog/ │ │ │ │ ├── binarylog.go │ │ │ │ ├── binarylog_testutil.go │ │ │ │ ├── env_config.go │ │ │ │ ├── method_logger.go │ │ │ │ └── sink.go │ │ │ ├── buffer/ │ │ │ │ └── unbounded.go │ │ │ ├── channelz/ │ │ │ │ ├── channel.go │ │ │ │ ├── channelmap.go │ │ │ │ ├── funcs.go │ │ │ │ ├── logging.go │ │ │ │ ├── server.go │ │ │ │ ├── socket.go │ │ │ │ ├── subchannel.go │ │ │ │ ├── syscall_linux.go │ │ │ │ ├── syscall_nonlinux.go │ │ │ │ └── trace.go │ │ │ ├── credentials/ │ │ │ │ ├── credentials.go │ │ │ │ ├── spiffe.go │ │ │ │ ├── syscallconn.go │ │ │ │ └── util.go │ │ │ ├── envconfig/ │ │ │ │ ├── envconfig.go │ │ │ │ ├── observability.go │ │ │ │ └── xds.go │ │ │ ├── experimental.go │ │ │ ├── grpclog/ │ │ │ │ └── prefix_logger.go │ │ │ ├── grpcsync/ │ │ │ │ ├── callback_serializer.go │ │ │ │ ├── event.go │ │ │ │ └── pubsub.go │ │ │ ├── grpcutil/ │ │ │ │ ├── compressor.go │ │ │ │ ├── encode_duration.go │ │ │ │ ├── grpcutil.go │ │ │ │ ├── metadata.go │ │ │ │ ├── method.go │ │ │ │ └── regex.go │ │ │ ├── idle/ │ │ │ │ └── idle.go │ │ │ ├── internal.go │ │ │ ├── metadata/ │ │ │ │ └── metadata.go │ │ │ ├── pretty/ │ │ │ │ └── pretty.go │ │ │ ├── proxyattributes/ │ │ │ │ └── proxyattributes.go │ │ │ ├── resolver/ │ │ │ │ ├── config_selector.go │ │ │ │ ├── delegatingresolver/ │ │ │ │ │ └── delegatingresolver.go │ │ │ │ ├── dns/ │ │ │ │ │ ├── dns_resolver.go │ │ │ │ │ └── internal/ │ │ │ │ │ └── internal.go │ │ │ │ ├── passthrough/ │ │ │ │ │ └── passthrough.go │ │ │ │ └── unix/ │ │ │ │ └── unix.go │ │ │ ├── serviceconfig/ │ │ │ │ ├── duration.go │ │ │ │ └── serviceconfig.go │ │ │ ├── stats/ │ │ │ │ ├── labels.go │ │ │ │ ├── metrics_recorder_list.go │ │ │ │ └── stats.go │ │ │ ├── status/ │ │ │ │ └── status.go │ │ │ ├── syscall/ │ │ │ │ ├── syscall_linux.go │ │ │ │ └── syscall_nonlinux.go │ │ │ ├── tcp_keepalive_others.go │ │ │ ├── tcp_keepalive_unix.go │ │ │ ├── tcp_keepalive_windows.go │ │ │ └── transport/ │ │ │ ├── bdp_estimator.go │ │ │ ├── client_stream.go │ │ │ ├── controlbuf.go │ │ │ ├── defaults.go │ │ │ ├── flowcontrol.go │ │ │ ├── handler_server.go │ │ │ ├── http2_client.go │ │ │ ├── http2_server.go │ │ │ ├── http_util.go │ │ │ ├── logging.go │ │ │ ├── networktype/ │ │ │ │ └── networktype.go │ │ │ ├── proxy.go │ │ │ ├── server_stream.go │ │ │ └── transport.go │ │ ├── keepalive/ │ │ │ └── keepalive.go │ │ ├── mem/ │ │ │ ├── buffer_pool.go │ │ │ ├── buffer_slice.go │ │ │ └── buffers.go │ │ ├── metadata/ │ │ │ └── metadata.go │ │ ├── peer/ │ │ │ └── peer.go │ │ ├── picker_wrapper.go │ │ ├── preloader.go │ │ ├── reflection/ │ │ │ ├── README.md │ │ │ ├── adapt.go │ │ │ ├── grpc_reflection_v1/ │ │ │ │ ├── reflection.pb.go │ │ │ │ └── reflection_grpc.pb.go │ │ │ ├── grpc_reflection_v1alpha/ │ │ │ │ ├── reflection.pb.go │ │ │ │ └── reflection_grpc.pb.go │ │ │ ├── internal/ │ │ │ │ └── internal.go │ │ │ └── serverreflection.go │ │ ├── resolver/ │ │ │ ├── dns/ │ │ │ │ └── dns_resolver.go │ │ │ ├── map.go │ │ │ └── resolver.go │ │ ├── resolver_wrapper.go │ │ ├── rpc_util.go │ │ ├── server.go │ │ ├── service_config.go │ │ ├── serviceconfig/ │ │ │ └── serviceconfig.go │ │ ├── stats/ │ │ │ ├── handlers.go │ │ │ ├── metrics.go │ │ │ └── stats.go │ │ ├── status/ │ │ │ └── status.go │ │ ├── stream.go │ │ ├── stream_interfaces.go │ │ ├── tap/ │ │ │ └── tap.go │ │ ├── trace.go │ │ ├── trace_notrace.go │ │ ├── trace_withtrace.go │ │ └── version.go │ └── protobuf/ │ ├── LICENSE │ ├── PATENTS │ ├── encoding/ │ │ ├── protojson/ │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ └── well_known_types.go │ │ ├── prototext/ │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ └── encode.go │ │ └── protowire/ │ │ └── wire.go │ ├── internal/ │ │ ├── descfmt/ │ │ │ └── stringer.go │ │ ├── descopts/ │ │ │ └── options.go │ │ ├── detrand/ │ │ │ └── rand.go │ │ ├── editiondefaults/ │ │ │ ├── defaults.go │ │ │ └── editions_defaults.binpb │ │ ├── editionssupport/ │ │ │ └── editions.go │ │ ├── encoding/ │ │ │ ├── defval/ │ │ │ │ └── default.go │ │ │ ├── json/ │ │ │ │ ├── decode.go │ │ │ │ ├── decode_number.go │ │ │ │ ├── decode_string.go │ │ │ │ ├── decode_token.go │ │ │ │ └── encode.go │ │ │ ├── messageset/ │ │ │ │ └── messageset.go │ │ │ ├── tag/ │ │ │ │ └── tag.go │ │ │ └── text/ │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ ├── doc.go │ │ │ └── encode.go │ │ ├── errors/ │ │ │ └── errors.go │ │ ├── filedesc/ │ │ │ ├── build.go │ │ │ ├── desc.go │ │ │ ├── desc_init.go │ │ │ ├── desc_lazy.go │ │ │ ├── desc_list.go │ │ │ ├── desc_list_gen.go │ │ │ ├── editions.go │ │ │ ├── placeholder.go │ │ │ └── presence.go │ │ ├── filetype/ │ │ │ └── build.go │ │ ├── flags/ │ │ │ ├── flags.go │ │ │ ├── proto_legacy_disable.go │ │ │ └── proto_legacy_enable.go │ │ ├── genid/ │ │ │ ├── any_gen.go │ │ │ ├── api_gen.go │ │ │ ├── descriptor_gen.go │ │ │ ├── doc.go │ │ │ ├── duration_gen.go │ │ │ ├── empty_gen.go │ │ │ ├── field_mask_gen.go │ │ │ ├── go_features_gen.go │ │ │ ├── goname.go │ │ │ ├── map_entry.go │ │ │ ├── name.go │ │ │ ├── source_context_gen.go │ │ │ ├── struct_gen.go │ │ │ ├── timestamp_gen.go │ │ │ ├── type_gen.go │ │ │ ├── wrappers.go │ │ │ └── wrappers_gen.go │ │ ├── impl/ │ │ │ ├── api_export.go │ │ │ ├── api_export_opaque.go │ │ │ ├── bitmap.go │ │ │ ├── bitmap_race.go │ │ │ ├── checkinit.go │ │ │ ├── codec_extension.go │ │ │ ├── codec_field.go │ │ │ ├── codec_field_opaque.go │ │ │ ├── codec_gen.go │ │ │ ├── codec_map.go │ │ │ ├── codec_message.go │ │ │ ├── codec_message_opaque.go │ │ │ ├── codec_messageset.go │ │ │ ├── codec_tables.go │ │ │ ├── codec_unsafe.go │ │ │ ├── convert.go │ │ │ ├── convert_list.go │ │ │ ├── convert_map.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── enum.go │ │ │ ├── equal.go │ │ │ ├── extension.go │ │ │ ├── lazy.go │ │ │ ├── legacy_enum.go │ │ │ ├── legacy_export.go │ │ │ ├── legacy_extension.go │ │ │ ├── legacy_file.go │ │ │ ├── legacy_message.go │ │ │ ├── merge.go │ │ │ ├── merge_gen.go │ │ │ ├── message.go │ │ │ ├── message_opaque.go │ │ │ ├── message_opaque_gen.go │ │ │ ├── message_reflect.go │ │ │ ├── message_reflect_field.go │ │ │ ├── message_reflect_field_gen.go │ │ │ ├── message_reflect_gen.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── pointer_unsafe_opaque.go │ │ │ ├── presence.go │ │ │ └── validate.go │ │ ├── order/ │ │ │ ├── order.go │ │ │ └── range.go │ │ ├── pragma/ │ │ │ └── pragma.go │ │ ├── protolazy/ │ │ │ ├── bufferreader.go │ │ │ ├── lazy.go │ │ │ └── pointer_unsafe.go │ │ ├── set/ │ │ │ └── ints.go │ │ ├── strs/ │ │ │ ├── strings.go │ │ │ └── strings_unsafe.go │ │ └── version/ │ │ └── version.go │ ├── proto/ │ │ ├── checkinit.go │ │ ├── decode.go │ │ ├── decode_gen.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── encode_gen.go │ │ ├── equal.go │ │ ├── extension.go │ │ ├── merge.go │ │ ├── messageset.go │ │ ├── proto.go │ │ ├── proto_methods.go │ │ ├── proto_reflect.go │ │ ├── reset.go │ │ ├── size.go │ │ ├── size_gen.go │ │ ├── wrapperopaque.go │ │ └── wrappers.go │ ├── protoadapt/ │ │ └── convert.go │ ├── reflect/ │ │ ├── protodesc/ │ │ │ ├── desc.go │ │ │ ├── desc_init.go │ │ │ ├── desc_resolve.go │ │ │ ├── desc_validate.go │ │ │ ├── editions.go │ │ │ └── proto.go │ │ ├── protoreflect/ │ │ │ ├── methods.go │ │ │ ├── proto.go │ │ │ ├── source.go │ │ │ ├── source_gen.go │ │ │ ├── type.go │ │ │ ├── value.go │ │ │ ├── value_equal.go │ │ │ ├── value_union.go │ │ │ └── value_unsafe.go │ │ └── protoregistry/ │ │ └── registry.go │ ├── runtime/ │ │ ├── protoiface/ │ │ │ ├── legacy.go │ │ │ └── methods.go │ │ └── protoimpl/ │ │ ├── impl.go │ │ └── version.go │ └── types/ │ ├── descriptorpb/ │ │ └── descriptor.pb.go │ ├── gofeaturespb/ │ │ └── go_features.pb.go │ └── known/ │ ├── anypb/ │ │ └── any.pb.go │ ├── durationpb/ │ │ └── duration.pb.go │ └── timestamppb/ │ └── timestamp.pb.go ├── gopkg.in/ │ └── yaml.v3/ │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── k8s.io/ │ └── klog/ │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── RELEASE.md │ ├── SECURITY_CONTACTS │ ├── code-of-conduct.md │ ├── klog.go │ └── klog_file.go ├── modules.txt ├── sigs.k8s.io/ │ └── yaml/ │ ├── .gitignore │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── RELEASE.md │ ├── SECURITY_CONTACTS │ ├── code-of-conduct.md │ ├── fields.go │ └── yaml.go └── tags.cncf.io/ └── container-device-interface/ ├── LICENSE ├── internal/ │ └── validation/ │ ├── k8s/ │ │ ├── objectmeta.go │ │ └── validation.go │ └── validate.go ├── pkg/ │ ├── cdi/ │ │ ├── annotations.go │ │ ├── cache.go │ │ ├── container-edits.go │ │ ├── container-edits_unix.go │ │ ├── container-edits_windows.go │ │ ├── default-cache.go │ │ ├── device.go │ │ ├── doc.go │ │ ├── oci.go │ │ ├── spec-dirs.go │ │ ├── spec.go │ │ ├── spec_linux.go │ │ └── spec_other.go │ └── parser/ │ └── parser.go └── specs-go/ ├── LICENSE ├── config.go └── version.go