├── .cirrus.yml ├── .codespelldict ├── .codespellrc ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── renovate.json5 └── workflows │ ├── auto-close-issues.yml │ ├── auto-close-prs.yml │ └── validate.yml ├── .gitignore ├── .golangci-extra.yml ├── .golangci.yml ├── .packit.yaml ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTING_GO.md ├── CONTRIBUTING_RUST.md ├── LICENSE ├── Makefile ├── OWNERS ├── README.md ├── SECURITY.md ├── cmd └── seccomp │ └── generate.go ├── contrib └── redhat │ ├── registry.access.redhat.com.yaml │ └── registry.redhat.io.yaml ├── docs ├── Containerfile.5.md ├── Makefile ├── containerignore.5.md ├── containers-mounts.conf.5.md ├── containers.conf.5.md └── links │ └── .containerignore.5 ├── go.mod ├── go.sum ├── hack └── tree_status.sh ├── internal ├── attributedstring │ ├── slice.go │ └── slice_test.go └── deepcopy.go ├── libimage ├── copier.go ├── corrupted_test.go ├── define │ ├── manifests.go │ ├── platform.go │ └── search.go ├── disk_usage.go ├── disk_usage_test.go ├── events.go ├── filter │ └── filter.go ├── filters.go ├── filters_test.go ├── history.go ├── history_test.go ├── image.go ├── image_config.go ├── image_test.go ├── image_tree.go ├── import.go ├── import_test.go ├── inspect.go ├── layer_tree.go ├── load.go ├── load_test.go ├── manifest_list.go ├── manifest_list_test.go ├── manifests │ ├── copy.go │ ├── manifests.go │ └── manifests_test.go ├── normalize.go ├── normalize_test.go ├── oci.go ├── platform.go ├── platform │ ├── platform.go │ └── platform_test.go ├── pull.go ├── pull_test.go ├── push.go ├── push_test.go ├── remove_test.go ├── runtime.go ├── runtime_test.go ├── save.go ├── save_test.go ├── search.go ├── testdata │ ├── buildkit-docker.tar │ ├── buildkit-oci.tar │ ├── containers.conf │ ├── docker-name-only.tar.xz │ ├── docker-registry-name.tar.xz │ ├── docker-two-images.tar.xz │ ├── docker-two-names.tar.xz │ ├── docker-unnamed.tar.xz │ ├── exported-container.tar │ ├── oci-name-only.tar.gz │ ├── oci-non-docker-name.tar.gz │ ├── oci-registry-name.tar.gz │ ├── oci-unnamed.tar.gz │ ├── registries.conf │ └── scratch-dir-5pec!@L │ │ ├── 5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef │ │ ├── 61e17f84d763cc086d43c67dcf4cdbd69f9224c74e961c53b589b70499eac443 │ │ ├── manifest.json │ │ └── version └── types.go ├── libnetwork ├── cni │ ├── README.md │ ├── cni_conversion.go │ ├── cni_exec.go │ ├── cni_suite_test.go │ ├── cni_types.go │ ├── config.go │ ├── config_freebsd.go │ ├── config_linux.go │ ├── config_test.go │ ├── network.go │ ├── run.go │ ├── run_freebsd.go │ ├── run_linux.go │ ├── run_test.go │ └── testfiles │ │ ├── invalid │ │ ├── broken.conflist │ │ ├── invalid_gateway.conflist │ │ ├── invalidname.conflist │ │ ├── noname.conflist │ │ ├── noplugin.conflist │ │ ├── samename1.conflist │ │ └── samename2.conflist │ │ └── valid │ │ ├── 87-podman.conflist │ │ ├── bridge.conflist │ │ ├── dualstack.conflist │ │ ├── internal.conflist │ │ ├── ipam-empty.conflist │ │ ├── ipam-none.conflist │ │ ├── ipam-static.conflist │ │ ├── isolate.conflist │ │ ├── label.conflist │ │ ├── macvlan.conflist │ │ ├── macvlan_mtu.conflist │ │ ├── mtu.conflist │ │ └── vlan.conflist ├── etchosts │ ├── hosts.go │ ├── hosts_test.go │ ├── ip.go │ └── util.go ├── internal │ ├── rootlessnetns │ │ ├── netns.go │ │ ├── netns_freebsd.go │ │ ├── netns_linux.go │ │ └── netns_linux_test.go │ └── util │ │ ├── bridge.go │ │ ├── create.go │ │ ├── interface.go │ │ ├── interfaces.go │ │ ├── ip.go │ │ ├── ip_test.go │ │ ├── parse.go │ │ ├── parse_test.go │ │ ├── util.go │ │ ├── util_test.go │ │ └── validate.go ├── netavark │ ├── config.go │ ├── config_test.go │ ├── const.go │ ├── exec.go │ ├── ipam.go │ ├── ipam_test.go │ ├── netavark_suite_test.go │ ├── network.go │ ├── plugin_test.go │ ├── run.go │ ├── run_test.go │ ├── testfiles │ │ ├── invalid │ │ │ ├── broken.json │ │ │ ├── invalid name.json │ │ │ ├── invalid_gateway.json │ │ │ ├── name_mismatch.json │ │ │ └── wrongID.json │ │ └── valid │ │ │ ├── bridge.json │ │ │ ├── dualstack.json │ │ │ ├── internal.json │ │ │ ├── label.json │ │ │ ├── metric.json │ │ │ ├── mtu.json │ │ │ ├── podman.json │ │ │ ├── vlan.json │ │ │ └── vrf.json │ └── testplugin │ │ └── main.go ├── network │ ├── interface.go │ ├── interface_cni.go │ ├── interface_cni_unsupported.go │ ├── interface_freebsd.go │ └── interface_linux.go ├── pasta │ ├── pasta_linux.go │ ├── pasta_linux_test.go │ └── types.go ├── resolvconf │ ├── resolv.go │ ├── resolv_test.go │ └── resolvconf.go ├── slirp4netns │ ├── const.go │ └── slirp4netns.go ├── types │ ├── const.go │ ├── define.go │ ├── network.go │ └── network_test.go └── util │ ├── filters.go │ ├── filters_test.go │ ├── ip.go │ ├── ip_calc.go │ └── ip_test.go ├── logos ├── bootc-logo-full-vert.png ├── buildah-logo-full-vert.png ├── containers-full-horiz.png ├── containers.png ├── crun-logo-full-vert.png ├── logo_circle_bootc.png ├── logo_circle_buildah.png ├── logo_circle_crun.png ├── logo_circle_podman.png ├── logo_circle_podmandesktop.png ├── logo_circle_ramalama.png ├── logo_circle_skopeo.png ├── logo_circle_youki.png ├── podman-desktop-logo.png ├── podman-logo-full-vert.png ├── skopeo-logo-full-vert.png └── youki-logo-full-vert.png ├── pkg ├── apparmor │ ├── apparmor.go │ ├── apparmor_linux.go │ ├── apparmor_linux_template.go │ ├── apparmor_linux_test.go │ ├── apparmor_unsupported.go │ └── internal │ │ └── supported │ │ ├── supported.go │ │ ├── supported_test.go │ │ └── supportedfakes │ │ └── fake_verifier_impl.go ├── auth │ ├── auth.go │ ├── auth_test.go │ ├── cli.go │ └── cli_test.go ├── capabilities │ ├── capabilities.go │ └── capabilities_test.go ├── cgroups │ ├── blkio_linux.go │ ├── cgroups_linux.go │ ├── cgroups_linux_test.go │ ├── cgroups_unsupported.go │ ├── cpu_linux.go │ ├── cpuset_linux.go │ ├── memory_linux.go │ ├── pids_linux.go │ ├── systemd_linux.go │ ├── testdata │ │ ├── cgroup.empty │ │ ├── cgroup.other │ │ └── cgroup.root │ ├── utils_linux.go │ └── utils_linux_test.go ├── cgroupv2 │ ├── cgroups_linux.go │ └── cgroups_unsupported.go ├── chown │ ├── chown.go │ ├── chown_test.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_local_test.go │ ├── config_remote.go │ ├── config_remote_test.go │ ├── config_suite_test.go │ ├── config_test.go │ ├── config_unix.go │ ├── config_unsupported.go │ ├── config_windows.go │ ├── connections.go │ ├── connections_test.go │ ├── containers.conf │ ├── containers.conf-freebsd │ ├── db_backend.go │ ├── db_backend_test.go │ ├── default.go │ ├── default_bsd.go │ ├── default_common.go │ ├── default_darwin.go │ ├── default_linux.go │ ├── default_linux_test.go │ ├── default_test.go │ ├── default_unsupported.go │ ├── default_windows.go │ ├── default_windows_test.go │ ├── modules.go │ ├── modules_test.go │ ├── new.go │ ├── nosystemd.go │ ├── pod_exit_policy.go │ ├── pod_exit_policy_test.go │ ├── pull_policy.go │ ├── search_order_test.go │ ├── systemd.go │ └── testdata │ │ ├── containers_broken.conf │ │ ├── containers_comment.conf │ │ ├── containers_default.conf │ │ ├── containers_invalid.conf │ │ ├── containers_override.conf │ │ ├── containers_override2.conf │ │ └── modules │ │ ├── etc │ │ └── containers │ │ │ └── containers.conf.modules │ │ │ ├── first.conf │ │ │ ├── fourth.conf │ │ │ ├── second.conf │ │ │ ├── sub │ │ │ └── etc-only.conf │ │ │ └── third.conf │ │ ├── home │ │ └── .config │ │ │ └── containers │ │ │ └── containers.conf.modules │ │ │ ├── first.conf │ │ │ ├── second.conf │ │ │ ├── sub │ │ │ └── first.conf │ │ │ └── third.conf │ │ ├── override.conf │ │ └── usr │ │ └── share │ │ └── containers │ │ └── containers.conf.modules │ │ ├── fifth.conf │ │ ├── first.conf │ │ ├── second.conf │ │ ├── sub │ │ ├── first.conf │ │ └── share-only.conf │ │ └── third.conf ├── configmaps │ ├── configmaps.go │ ├── configmaps_test.go │ ├── configmapsdb.go │ └── filedriver │ │ ├── filedriver.go │ │ └── filedriver_test.go ├── crutils │ └── checkpoint_restore_utils.go ├── detach │ └── copy.go ├── download │ └── download.go ├── filters │ ├── filters.go │ └── filters_test.go ├── flag │ ├── flag.go │ └── flag_test.go ├── formats │ ├── formats.go │ ├── formats_test.go │ └── templates.go ├── hooks │ ├── 0.1.0 │ │ ├── hook.go │ │ └── hook_test.go │ ├── 1.0.0 │ │ ├── hook.go │ │ ├── hook_test.go │ │ ├── when.go │ │ └── when_test.go │ ├── README.md │ ├── docs │ │ ├── .gitignore │ │ └── oci-hooks.5.md │ ├── exec │ │ ├── exec.go │ │ ├── exec_test.go │ │ ├── runtimeconfigfilter.go │ │ └── runtimeconfigfilter_test.go │ ├── hooks.go │ ├── hooks_test.go │ ├── monitor.go │ ├── monitor_test.go │ ├── read.go │ ├── read_test.go │ └── version.go ├── machine │ ├── machine.go │ ├── machine_suite_test.go │ ├── machine_test.go │ └── testdata │ │ ├── applehv-machine │ │ ├── empty-machine │ │ ├── hyperv-machine │ │ ├── qemu-machine │ │ └── wsl-machine ├── manifests │ ├── errors.go │ ├── manifests.go │ ├── manifests_test.go │ └── testdata │ │ ├── artifacts │ │ ├── blobs-only │ │ │ ├── blobs │ │ │ │ └── sha256 │ │ │ │ │ ├── 44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a │ │ │ │ │ ├── 955c64f8b99468e911dfda299dfcdd284deae5b1f7201f484aa068fcd0f1e12b │ │ │ │ │ └── bcb1ab2c0c297b51d1a600b93d2084fd45c91cd90fa156c6056e61e79399f4ad │ │ │ ├── index.json │ │ │ └── oci-layout │ │ ├── config-only │ │ │ ├── blobs │ │ │ │ └── sha256 │ │ │ │ │ ├── 44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a │ │ │ │ │ ├── 6d7d653eb3d798d450b05d807ed290d8445714492effd243028b70238aec8aa2 │ │ │ │ │ └── dc8ab52a31e3b88154b692c409188c53b7c2204b7d076ed220d5b25d8971e132 │ │ │ ├── index.json │ │ │ └── oci-layout │ │ ├── index │ │ │ ├── blobs │ │ │ │ └── sha256 │ │ │ │ │ ├── 11a1bc9fb43d6791f7f881a0375f88e83b10ea1c040a8d6d986cf799bb56e981 │ │ │ │ │ ├── 25cb16f769a2248cde5556529b88e3cdff322dbe5c71e40cfb24030221e88b06 │ │ │ │ │ ├── 541b3e9daa09b20bf85fa273e5cbd3e80185aa4ec298e765db87742b70138a53 │ │ │ │ │ ├── 74c31168f466d846e0e0cf46fc8c14e0c516500558166654fce7555682b1cba6 │ │ │ │ │ └── e6304a473c65ecd0ccffbd2f5925a8f51c44b11f59b66cfcc055e4bb911b8fa0 │ │ │ ├── index.json │ │ │ └── oci-layout │ │ └── no-blobs │ │ │ ├── blobs │ │ │ └── sha256 │ │ │ │ ├── 44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a │ │ │ │ └── 46ad038ecba6ec027182c782e4dd321f807641b27478b63a9f8eb5186f3d0bb1 │ │ │ ├── index.json │ │ │ └── oci-layout │ │ ├── fedora-minimal.schema2.json │ │ ├── fedora.index.json │ │ ├── fedora.list.json │ │ └── fedora.schema2.json ├── netns │ └── netns_linux.go ├── parse │ ├── parse.go │ ├── parse_test.go │ └── parse_unix.go ├── password │ ├── password_supported.go │ └── password_windows.go ├── report │ ├── camelcase │ │ ├── LICENSE.md │ │ ├── README.md │ │ └── camelcase.go │ ├── doc.go │ ├── formatter.go │ ├── formatter_test.go │ ├── template.go │ ├── template_test.go │ ├── validate.go │ ├── validate_test.go │ ├── writer.go │ └── writer_test.go ├── resize │ └── resize.go ├── retry │ ├── retry.go │ ├── retry_linux.go │ └── retry_unsupported.go ├── rootlessport │ └── rootlessport_linux.go ├── seccomp │ ├── conversion.go │ ├── conversion_test.go │ ├── default_linux.go │ ├── errno_list.go │ ├── filter.go │ ├── filter_test.go │ ├── fixtures │ │ └── example.json │ ├── generate.go │ ├── seccomp.json │ ├── seccomp_linux.go │ ├── seccomp_test.go │ ├── seccomp_unsupported.go │ ├── supported.go │ ├── types.go │ ├── validate.go │ └── validate_test.go ├── secrets │ ├── define │ │ └── secrets.go │ ├── filedriver │ │ ├── filedriver.go │ │ └── filedriver_test.go │ ├── passdriver │ │ ├── passdriver.go │ │ └── passdriver_test.go │ ├── secrets.go │ ├── secrets_test.go │ ├── secretsdb.go │ └── shelldriver │ │ ├── shelldriver.go │ │ └── shelldriver_test.go ├── servicereaper │ └── service.go ├── signal │ ├── signal_common.go │ ├── signal_linux.go │ ├── signal_linux_mipsx.go │ └── signal_unsupported.go ├── ssh │ ├── connection_golang.go │ ├── connection_native.go │ ├── ssh.go │ ├── ssh_test.go │ ├── types.go │ ├── utils.go │ └── utils_test.go ├── strongunits │ ├── config.go │ └── config_test.go ├── subscriptions │ ├── mounts.conf │ ├── subscriptions.go │ └── subscriptions_test.go ├── supplemented │ ├── errors.go │ ├── supplemented.go │ └── supplemented_test.go ├── sysctl │ ├── sysctl.go │ └── sysctl_test.go ├── sysinfo │ ├── README.md │ ├── numcpu.go │ ├── numcpu_linux.go │ ├── numcpu_other.go │ ├── numcpu_windows.go │ ├── sysinfo.go │ ├── sysinfo_linux.go │ ├── sysinfo_linux_test.go │ ├── sysinfo_solaris.go │ ├── sysinfo_test.go │ ├── sysinfo_unix.go │ └── sysinfo_windows.go ├── systemd │ ├── systemd_linux.go │ └── systemd_unsupported.go ├── timetype │ ├── timestamp.go │ └── timestamp_test.go ├── timezone │ ├── timezone.go │ ├── timezone_linux.go │ ├── timezone_unix.go │ └── timezone_windows.go ├── umask │ ├── umask.go │ ├── umask_test.go │ ├── umask_unix.go │ └── umask_unsupported.go ├── util │ └── util.go └── version │ └── version.go ├── rpm ├── containers-common.spec ├── update-config-files.sh └── update-lib-versions.sh ├── tests ├── policy.json └── registries.conf ├── tools ├── rebuild_quay_ctr_images.sh └── validate_seccomp.sh ├── vendor ├── 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 │ ├── 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 │ ├── Masterminds │ │ └── semver │ │ │ └── v3 │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── collection.go │ │ │ ├── constraints.go │ │ │ ├── doc.go │ │ │ └── version.go │ ├── Microsoft │ │ ├── go-winio │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODEOWNERS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── backup.go │ │ │ ├── backuptar │ │ │ │ ├── doc.go │ │ │ │ ├── strconv.go │ │ │ │ └── tar.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 │ │ │ ├── vhd │ │ │ │ ├── vhd.go │ │ │ │ └── zvhd_windows.go │ │ │ └── zsyscall_windows.go │ │ └── hcsshim │ │ │ ├── .clang-format │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODEOWNERS │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── Makefile.bootfiles │ │ │ ├── Protobuild.toml │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── computestorage │ │ │ ├── attach.go │ │ │ ├── destroy.go │ │ │ ├── detach.go │ │ │ ├── export.go │ │ │ ├── format.go │ │ │ ├── helpers.go │ │ │ ├── import.go │ │ │ ├── initialize.go │ │ │ ├── mount.go │ │ │ ├── setup.go │ │ │ ├── storage.go │ │ │ └── zsyscall_windows.go │ │ │ ├── container.go │ │ │ ├── errors.go │ │ │ ├── hcsshim.go │ │ │ ├── hnsaccelnet.go │ │ │ ├── hnsendpoint.go │ │ │ ├── hnsglobals.go │ │ │ ├── hnsnetwork.go │ │ │ ├── hnspolicy.go │ │ │ ├── hnspolicylist.go │ │ │ ├── hnssupport.go │ │ │ ├── interface.go │ │ │ ├── internal │ │ │ ├── cow │ │ │ │ └── cow.go │ │ │ ├── hcs │ │ │ │ ├── callback.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── process.go │ │ │ │ ├── schema1 │ │ │ │ │ └── schema1.go │ │ │ │ ├── schema2 │ │ │ │ │ ├── attachment.go │ │ │ │ │ ├── battery.go │ │ │ │ │ ├── cache_query_stats_response.go │ │ │ │ │ ├── chipset.go │ │ │ │ │ ├── cimfs.go │ │ │ │ │ ├── close_handle.go │ │ │ │ │ ├── com_port.go │ │ │ │ │ ├── compute_system.go │ │ │ │ │ ├── configuration.go │ │ │ │ │ ├── console_size.go │ │ │ │ │ ├── container.go │ │ │ │ │ ├── container_credential_guard_add_instance_request.go │ │ │ │ │ ├── container_credential_guard_hv_socket_service_config.go │ │ │ │ │ ├── container_credential_guard_instance.go │ │ │ │ │ ├── container_credential_guard_modify_operation.go │ │ │ │ │ ├── container_credential_guard_operation_request.go │ │ │ │ │ ├── container_credential_guard_remove_instance_request.go │ │ │ │ │ ├── container_credential_guard_state.go │ │ │ │ │ ├── container_credential_guard_system_info.go │ │ │ │ │ ├── container_memory_information.go │ │ │ │ │ ├── cpu_group.go │ │ │ │ │ ├── cpu_group_affinity.go │ │ │ │ │ ├── cpu_group_config.go │ │ │ │ │ ├── cpu_group_configurations.go │ │ │ │ │ ├── cpu_group_operations.go │ │ │ │ │ ├── cpu_group_property.go │ │ │ │ │ ├── create_group_operation.go │ │ │ │ │ ├── debug_options.go │ │ │ │ │ ├── delete_group_operation.go │ │ │ │ │ ├── device.go │ │ │ │ │ ├── devices.go │ │ │ │ │ ├── enhanced_mode_video.go │ │ │ │ │ ├── firmware.go │ │ │ │ │ ├── flexible_io_device.go │ │ │ │ │ ├── guest_connection.go │ │ │ │ │ ├── guest_connection_info.go │ │ │ │ │ ├── guest_crash_reporting.go │ │ │ │ │ ├── guest_os.go │ │ │ │ │ ├── guest_state.go │ │ │ │ │ ├── host_processor_modify_request.go │ │ │ │ │ ├── hosted_system.go │ │ │ │ │ ├── hv_socket.go │ │ │ │ │ ├── hv_socket_2.go │ │ │ │ │ ├── hv_socket_address.go │ │ │ │ │ ├── hv_socket_service_config.go │ │ │ │ │ ├── hv_socket_system_config.go │ │ │ │ │ ├── interrupt_moderation_mode.go │ │ │ │ │ ├── iov_settings.go │ │ │ │ │ ├── isolation_settings.go │ │ │ │ │ ├── keyboard.go │ │ │ │ │ ├── layer.go │ │ │ │ │ ├── linux_kernel_direct.go │ │ │ │ │ ├── logical_processor.go │ │ │ │ │ ├── mapped_directory.go │ │ │ │ │ ├── mapped_pipe.go │ │ │ │ │ ├── memory.go │ │ │ │ │ ├── memory_backing_type.go │ │ │ │ │ ├── memory_information_for_vm.go │ │ │ │ │ ├── memory_stats.go │ │ │ │ │ ├── model_container_definition_device.go │ │ │ │ │ ├── model_device_category.go │ │ │ │ │ ├── model_device_extension.go │ │ │ │ │ ├── model_device_instance.go │ │ │ │ │ ├── model_device_namespace.go │ │ │ │ │ ├── model_interface_class.go │ │ │ │ │ ├── model_namespace.go │ │ │ │ │ ├── model_object_directory.go │ │ │ │ │ ├── model_object_namespace.go │ │ │ │ │ ├── model_object_symlink.go │ │ │ │ │ ├── modification_request.go │ │ │ │ │ ├── modify_setting_request.go │ │ │ │ │ ├── mouse.go │ │ │ │ │ ├── network_adapter.go │ │ │ │ │ ├── networking.go │ │ │ │ │ ├── numa.go │ │ │ │ │ ├── numa_node.go │ │ │ │ │ ├── numa_node_memory.go │ │ │ │ │ ├── numa_node_processor.go │ │ │ │ │ ├── numa_processors.go │ │ │ │ │ ├── numa_setting.go │ │ │ │ │ ├── pause_notification.go │ │ │ │ │ ├── pause_options.go │ │ │ │ │ ├── plan9.go │ │ │ │ │ ├── plan9_share.go │ │ │ │ │ ├── process_details.go │ │ │ │ │ ├── process_modify_request.go │ │ │ │ │ ├── process_parameters.go │ │ │ │ │ ├── process_status.go │ │ │ │ │ ├── processor.go │ │ │ │ │ ├── processor_stats.go │ │ │ │ │ ├── processor_topology.go │ │ │ │ │ ├── properties.go │ │ │ │ │ ├── property_query.go │ │ │ │ │ ├── property_type.go │ │ │ │ │ ├── rdp_connection_options.go │ │ │ │ │ ├── registry_changes.go │ │ │ │ │ ├── registry_hive.go │ │ │ │ │ ├── registry_key.go │ │ │ │ │ ├── registry_value.go │ │ │ │ │ ├── registry_value_type.go │ │ │ │ │ ├── restore_state.go │ │ │ │ │ ├── save_options.go │ │ │ │ │ ├── scsi.go │ │ │ │ │ ├── security_settings.go │ │ │ │ │ ├── service_properties.go │ │ │ │ │ ├── shared_memory_configuration.go │ │ │ │ │ ├── shared_memory_region.go │ │ │ │ │ ├── shared_memory_region_info.go │ │ │ │ │ ├── silo_properties.go │ │ │ │ │ ├── statistics.go │ │ │ │ │ ├── storage.go │ │ │ │ │ ├── storage_qo_s.go │ │ │ │ │ ├── storage_stats.go │ │ │ │ │ ├── system_time.go │ │ │ │ │ ├── time_zone_information.go │ │ │ │ │ ├── topology.go │ │ │ │ │ ├── uefi.go │ │ │ │ │ ├── uefi_boot_entry.go │ │ │ │ │ ├── version.go │ │ │ │ │ ├── video_monitor.go │ │ │ │ │ ├── virtual_machine.go │ │ │ │ │ ├── virtual_machine_memory.go │ │ │ │ │ ├── virtual_machine_processor.go │ │ │ │ │ ├── virtual_node_info.go │ │ │ │ │ ├── virtual_p_mem_controller.go │ │ │ │ │ ├── virtual_p_mem_device.go │ │ │ │ │ ├── virtual_p_mem_mapping.go │ │ │ │ │ ├── virtual_pci_device.go │ │ │ │ │ ├── virtual_pci_function.go │ │ │ │ │ ├── virtual_slit_type.go │ │ │ │ │ ├── virtual_smb.go │ │ │ │ │ ├── virtual_smb_share.go │ │ │ │ │ ├── virtual_smb_share_options.go │ │ │ │ │ ├── vm_memory.go │ │ │ │ │ ├── vm_processor_limits.go │ │ │ │ │ └── windows_crash_reporting.go │ │ │ │ ├── service.go │ │ │ │ ├── system.go │ │ │ │ ├── utils.go │ │ │ │ └── waithelper.go │ │ │ ├── hcserror │ │ │ │ ├── doc.go │ │ │ │ └── hcserror.go │ │ │ ├── hns │ │ │ │ ├── doc.go │ │ │ │ ├── hns.go │ │ │ │ ├── hnsaccelnet.go │ │ │ │ ├── hnsendpoint.go │ │ │ │ ├── hnsfuncs.go │ │ │ │ ├── hnsglobals.go │ │ │ │ ├── hnsnetwork.go │ │ │ │ ├── hnspolicy.go │ │ │ │ ├── hnspolicylist.go │ │ │ │ ├── hnssupport.go │ │ │ │ ├── namespace.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── interop │ │ │ │ ├── doc.go │ │ │ │ ├── interop.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── jobobject │ │ │ │ ├── doc.go │ │ │ │ ├── iocp.go │ │ │ │ ├── jobobject.go │ │ │ │ └── limits.go │ │ │ ├── log │ │ │ │ ├── context.go │ │ │ │ ├── format.go │ │ │ │ ├── hook.go │ │ │ │ ├── nopformatter.go │ │ │ │ └── scrub.go │ │ │ ├── logfields │ │ │ │ └── fields.go │ │ │ ├── longpath │ │ │ │ └── longpath.go │ │ │ ├── memory │ │ │ │ ├── pool.go │ │ │ │ └── types.go │ │ │ ├── mergemaps │ │ │ │ └── merge.go │ │ │ ├── oc │ │ │ │ ├── errors.go │ │ │ │ ├── exporter.go │ │ │ │ └── span.go │ │ │ ├── protocol │ │ │ │ └── guestrequest │ │ │ │ │ └── types.go │ │ │ ├── queue │ │ │ │ └── mq.go │ │ │ ├── safefile │ │ │ │ ├── do.go │ │ │ │ └── safeopen.go │ │ │ ├── security │ │ │ │ ├── grantvmgroupaccess.go │ │ │ │ ├── syscall_windows.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── timeout │ │ │ │ └── timeout.go │ │ │ ├── vmcompute │ │ │ │ ├── doc.go │ │ │ │ ├── vmcompute.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── wclayer │ │ │ │ ├── activatelayer.go │ │ │ │ ├── baselayerreader.go │ │ │ │ ├── baselayerwriter.go │ │ │ │ ├── converttobaselayer.go │ │ │ │ ├── createlayer.go │ │ │ │ ├── createscratchlayer.go │ │ │ │ ├── deactivatelayer.go │ │ │ │ ├── destroylayer.go │ │ │ │ ├── doc.go │ │ │ │ ├── expandscratchsize.go │ │ │ │ ├── exportlayer.go │ │ │ │ ├── getlayermountpath.go │ │ │ │ ├── getsharedbaseimages.go │ │ │ │ ├── grantvmaccess.go │ │ │ │ ├── importlayer.go │ │ │ │ ├── layerexists.go │ │ │ │ ├── layerid.go │ │ │ │ ├── layerutils.go │ │ │ │ ├── legacy.go │ │ │ │ ├── nametoguid.go │ │ │ │ ├── preparelayer.go │ │ │ │ ├── processimage.go │ │ │ │ ├── unpreparelayer.go │ │ │ │ ├── wclayer.go │ │ │ │ └── zsyscall_windows.go │ │ │ └── winapi │ │ │ │ ├── bindflt.go │ │ │ │ ├── cimfs.go │ │ │ │ ├── console.go │ │ │ │ ├── devices.go │ │ │ │ ├── doc.go │ │ │ │ ├── elevation.go │ │ │ │ ├── errors.go │ │ │ │ ├── filesystem.go │ │ │ │ ├── jobobject.go │ │ │ │ ├── logon.go │ │ │ │ ├── memory.go │ │ │ │ ├── net.go │ │ │ │ ├── offlinereg.go │ │ │ │ ├── path.go │ │ │ │ ├── process.go │ │ │ │ ├── processor.go │ │ │ │ ├── system.go │ │ │ │ ├── thread.go │ │ │ │ ├── user.go │ │ │ │ ├── utils.go │ │ │ │ ├── winapi.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── layer.go │ │ │ ├── osversion │ │ │ ├── osversion_windows.go │ │ │ ├── platform_compat_windows.go │ │ │ └── windowsbuilds.go │ │ │ ├── process.go │ │ │ └── zsyscall_windows.go │ ├── VividCortex │ │ └── ewma │ │ │ ├── .gitignore │ │ │ ├── .whitesource │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── codecov.yml │ │ │ └── ewma.go │ ├── acarl005 │ │ └── stripansi │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── stripansi.go │ ├── checkpoint-restore │ │ ├── checkpointctl │ │ │ ├── LICENSE │ │ │ └── lib │ │ │ │ ├── annotations.go │ │ │ │ └── metadata.go │ │ └── go-criu │ │ │ └── v7 │ │ │ ├── LICENSE │ │ │ └── stats │ │ │ ├── stats.pb.go │ │ │ ├── stats.proto │ │ │ ├── types.go │ │ │ └── utils.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 │ ├── containerd │ │ ├── cgroups │ │ │ └── v3 │ │ │ │ ├── LICENSE │ │ │ │ └── cgroup1 │ │ │ │ └── stats │ │ │ │ ├── doc.go │ │ │ │ ├── metrics.pb.go │ │ │ │ ├── metrics.pb.txt │ │ │ │ └── metrics.proto │ │ ├── errdefs │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── errors.go │ │ │ ├── pkg │ │ │ │ ├── LICENSE │ │ │ │ ├── errgrpc │ │ │ │ │ └── grpc.go │ │ │ │ ├── errhttp │ │ │ │ │ └── http.go │ │ │ │ └── internal │ │ │ │ │ ├── cause │ │ │ │ │ └── cause.go │ │ │ │ │ └── types │ │ │ │ │ └── collapsible.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_compat_windows.go │ │ │ ├── platforms.go │ │ │ ├── platforms_other.go │ │ │ └── platforms_windows.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 │ ├── containernetworking │ │ ├── cni │ │ │ ├── LICENSE │ │ │ ├── libcni │ │ │ │ ├── api.go │ │ │ │ └── conf.go │ │ │ └── pkg │ │ │ │ ├── invoke │ │ │ │ ├── args.go │ │ │ │ ├── delegate.go │ │ │ │ ├── exec.go │ │ │ │ ├── find.go │ │ │ │ ├── os_unix.go │ │ │ │ ├── os_windows.go │ │ │ │ └── raw_exec.go │ │ │ │ ├── types │ │ │ │ ├── 100 │ │ │ │ │ └── types.go │ │ │ │ ├── 020 │ │ │ │ │ └── types.go │ │ │ │ ├── 040 │ │ │ │ │ └── types.go │ │ │ │ ├── args.go │ │ │ │ ├── create │ │ │ │ │ └── create.go │ │ │ │ ├── internal │ │ │ │ │ ├── convert.go │ │ │ │ │ └── create.go │ │ │ │ └── types.go │ │ │ │ ├── utils │ │ │ │ └── utils.go │ │ │ │ └── version │ │ │ │ ├── conf.go │ │ │ │ ├── plugin.go │ │ │ │ ├── reconcile.go │ │ │ │ └── version.go │ │ └── plugins │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ └── ns │ │ │ ├── README.md │ │ │ └── ns_linux.go │ ├── containers │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── image │ │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ │ └── sigstore_payload.go │ │ │ │ ├── mechanism.go │ │ │ │ ├── mechanism_gpgme.go │ │ │ │ ├── mechanism_openpgp.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 │ │ ├── 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 │ │ ├── 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 │ │ │ ├── crypto │ │ │ │ └── pkcs11 │ │ │ │ │ ├── common.go │ │ │ │ │ ├── pkcs11helpers.go │ │ │ │ │ ├── pkcs11helpers_nocgo.go │ │ │ │ │ └── utils.go │ │ │ ├── encryption.go │ │ │ ├── gpg.go │ │ │ ├── gpgvault.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 │ │ └── storage │ │ │ ├── .cirrus.yml │ │ │ ├── .codespellrc │ │ │ ├── .dockerignore │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .mailmap │ │ │ ├── AUTHORS │ │ │ ├── CODE-OF-CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── NOTICE │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── VERSION │ │ │ ├── check.go │ │ │ ├── containers.go │ │ │ ├── deprecated.go │ │ │ ├── drivers │ │ │ ├── aufs │ │ │ │ ├── aufs.go │ │ │ │ ├── dirs.go │ │ │ │ ├── mount.go │ │ │ │ └── mount_linux.go │ │ │ ├── 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 │ │ │ ├── driver_windows.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_aufs.go │ │ │ │ ├── register_btrfs.go │ │ │ │ ├── register_overlay.go │ │ │ │ ├── register_vfs.go │ │ │ │ ├── register_windows.go │ │ │ │ └── register_zfs.go │ │ │ ├── template.go │ │ │ ├── vfs │ │ │ │ ├── copy_linux.go │ │ │ │ ├── copy_unsupported.go │ │ │ │ └── driver.go │ │ │ ├── windows │ │ │ │ ├── jsoniter_windows.go │ │ │ │ └── windows.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 │ │ │ ├── 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 │ │ │ ├── locker │ │ │ │ ├── README.md │ │ │ │ └── locker.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 │ ├── 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 │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── VERSION │ │ │ ├── doc.go │ │ │ ├── gocompat_errors_go120.go │ │ │ ├── gocompat_errors_unsupported.go │ │ │ ├── gocompat_generics_go121.go │ │ │ ├── gocompat_generics_unsupported.go │ │ │ ├── join.go │ │ │ ├── lookup_linux.go │ │ │ ├── mkdir_linux.go │ │ │ ├── open_linux.go │ │ │ ├── openat2_linux.go │ │ │ ├── openat_linux.go │ │ │ ├── procfs_linux.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-logo.png │ │ │ └── gotree.go │ ├── distribution │ │ └── reference │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODE-OF-CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── GOVERNANCE.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── distribution-logo.svg │ │ │ ├── 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-credential-helpers │ │ │ ├── LICENSE │ │ │ ├── client │ │ │ │ ├── client.go │ │ │ │ └── command.go │ │ │ └── credentials │ │ │ │ ├── credentials.go │ │ │ │ ├── error.go │ │ │ │ ├── helper.go │ │ │ │ └── version.go │ │ ├── docker │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── api │ │ │ │ ├── README.md │ │ │ │ ├── common.go │ │ │ │ ├── swagger-gen.yaml │ │ │ │ ├── swagger.yaml │ │ │ │ └── types │ │ │ │ │ ├── blkiodev │ │ │ │ │ └── blkio.go │ │ │ │ │ ├── build │ │ │ │ │ ├── build.go │ │ │ │ │ ├── cache.go │ │ │ │ │ └── disk_usage.go │ │ │ │ │ ├── checkpoint │ │ │ │ │ ├── list.go │ │ │ │ │ └── options.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── common │ │ │ │ │ └── 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 │ │ │ │ │ ├── filesystem_change.go │ │ │ │ │ ├── health.go │ │ │ │ │ ├── hostconfig.go │ │ │ │ │ ├── hostconfig_unix.go │ │ │ │ │ ├── hostconfig_windows.go │ │ │ │ │ ├── network_settings.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── port.go │ │ │ │ │ ├── state.go │ │ │ │ │ ├── stats.go │ │ │ │ │ ├── top_response.go │ │ │ │ │ ├── update_response.go │ │ │ │ │ ├── wait_exit_error.go │ │ │ │ │ ├── wait_response.go │ │ │ │ │ └── waitcondition.go │ │ │ │ │ ├── error_response.go │ │ │ │ │ ├── error_response_ext.go │ │ │ │ │ ├── events │ │ │ │ │ └── events.go │ │ │ │ │ ├── filters │ │ │ │ │ ├── errors.go │ │ │ │ │ └── parse.go │ │ │ │ │ ├── image │ │ │ │ │ ├── delete_response.go │ │ │ │ │ ├── disk_usage.go │ │ │ │ │ ├── image.go │ │ │ │ │ ├── image_history.go │ │ │ │ │ ├── image_inspect.go │ │ │ │ │ ├── manifest.go │ │ │ │ │ ├── opts.go │ │ │ │ │ └── summary.go │ │ │ │ │ ├── mount │ │ │ │ │ └── mount.go │ │ │ │ │ ├── network │ │ │ │ │ ├── create_response.go │ │ │ │ │ ├── endpoint.go │ │ │ │ │ ├── ipam.go │ │ │ │ │ └── network.go │ │ │ │ │ ├── plugin.go │ │ │ │ │ ├── plugin_device.go │ │ │ │ │ ├── plugin_env.go │ │ │ │ │ ├── plugin_interface_type.go │ │ │ │ │ ├── plugin_mount.go │ │ │ │ │ ├── plugin_responses.go │ │ │ │ │ ├── registry │ │ │ │ │ ├── authconfig.go │ │ │ │ │ ├── authenticate.go │ │ │ │ │ ├── registry.go │ │ │ │ │ └── search.go │ │ │ │ │ ├── storage │ │ │ │ │ └── driver_data.go │ │ │ │ │ ├── strslice │ │ │ │ │ └── strslice.go │ │ │ │ │ ├── swarm │ │ │ │ │ ├── common.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── container.go │ │ │ │ │ ├── network.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── runtime.go │ │ │ │ │ ├── runtime │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ ├── plugin.pb.go │ │ │ │ │ │ └── plugin.proto │ │ │ │ │ ├── secret.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── service_create_response.go │ │ │ │ │ ├── service_update_response.go │ │ │ │ │ ├── swarm.go │ │ │ │ │ └── task.go │ │ │ │ │ ├── system │ │ │ │ │ ├── disk_usage.go │ │ │ │ │ ├── info.go │ │ │ │ │ ├── runtime.go │ │ │ │ │ └── security_opts.go │ │ │ │ │ ├── time │ │ │ │ │ └── timestamp.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_deprecated.go │ │ │ │ │ ├── versions │ │ │ │ │ └── compare.go │ │ │ │ │ └── volume │ │ │ │ │ ├── cluster_volume.go │ │ │ │ │ ├── create_options.go │ │ │ │ │ ├── disk_usage.go │ │ │ │ │ ├── list_response.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── volume.go │ │ │ │ │ └── volume_update.go │ │ │ ├── client │ │ │ │ ├── README.md │ │ │ │ ├── build_cancel.go │ │ │ │ ├── build_prune.go │ │ │ │ ├── checkpoint.go │ │ │ │ ├── checkpoint_create.go │ │ │ │ ├── checkpoint_delete.go │ │ │ │ ├── checkpoint_list.go │ │ │ │ ├── client.go │ │ │ │ ├── client_deprecated.go │ │ │ │ ├── client_interfaces.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_diff.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 │ │ │ │ ├── disk_usage.go │ │ │ │ ├── distribution_inspect.go │ │ │ │ ├── envvars.go │ │ │ │ ├── errors.go │ │ │ │ ├── events.go │ │ │ │ ├── hijack.go │ │ │ │ ├── image_build.go │ │ │ │ ├── image_create.go │ │ │ │ ├── image_history.go │ │ │ │ ├── image_history_opts.go │ │ │ │ ├── image_import.go │ │ │ │ ├── image_inspect.go │ │ │ │ ├── image_inspect_opts.go │ │ │ │ ├── image_list.go │ │ │ │ ├── image_load.go │ │ │ │ ├── image_load_opts.go │ │ │ │ ├── image_prune.go │ │ │ │ ├── image_pull.go │ │ │ │ ├── image_push.go │ │ │ │ ├── image_remove.go │ │ │ │ ├── image_save.go │ │ │ │ ├── image_save_opts.go │ │ │ │ ├── image_search.go │ │ │ │ ├── image_tag.go │ │ │ │ ├── info.go │ │ │ │ ├── login.go │ │ │ │ ├── network_connect.go │ │ │ │ ├── network_create.go │ │ │ │ ├── network_disconnect.go │ │ │ │ ├── network_inspect.go │ │ │ │ ├── network_list.go │ │ │ │ ├── network_prune.go │ │ │ │ ├── network_remove.go │ │ │ │ ├── node_inspect.go │ │ │ │ ├── node_list.go │ │ │ │ ├── node_remove.go │ │ │ │ ├── node_update.go │ │ │ │ ├── options.go │ │ │ │ ├── ping.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 │ │ │ │ ├── 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 │ │ │ └── internal │ │ │ │ ├── lazyregexp │ │ │ │ └── lazyregexp.go │ │ │ │ └── multierror │ │ │ │ └── multierror.go │ │ ├── go-connections │ │ │ ├── LICENSE │ │ │ ├── nat │ │ │ │ ├── nat.go │ │ │ │ ├── parse.go │ │ │ │ └── sort.go │ │ │ ├── sockets │ │ │ │ ├── README.md │ │ │ │ ├── inmem_socket.go │ │ │ │ ├── proxy.go │ │ │ │ ├── sockets.go │ │ │ │ ├── sockets_unix.go │ │ │ │ ├── sockets_windows.go │ │ │ │ ├── tcp_socket.go │ │ │ │ └── unix_socket.go │ │ │ └── tlsconfig │ │ │ │ ├── certpool.go │ │ │ │ ├── config.go │ │ │ │ └── config_client_ciphers.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 │ ├── go-jose │ │ └── go-jose │ │ │ └── v4 │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── 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 │ ├── go-task │ │ └── slim-sprig │ │ │ └── v3 │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── Taskfile.yml │ │ │ ├── crypto.go │ │ │ ├── date.go │ │ │ ├── defaults.go │ │ │ ├── dict.go │ │ │ ├── doc.go │ │ │ ├── functions.go │ │ │ ├── list.go │ │ │ ├── network.go │ │ │ ├── numeric.go │ │ │ ├── reflect.go │ │ │ ├── regex.go │ │ │ ├── strings.go │ │ │ └── url.go │ ├── godbus │ │ └── dbus │ │ │ └── v5 │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── auth.go │ │ │ ├── auth_anonymous.go │ │ │ ├── auth_external.go │ │ │ ├── auth_sha1.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 │ │ │ ├── homedir.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 │ │ ├── groupcache │ │ │ ├── LICENSE │ │ │ └── lru │ │ │ │ └── lru.go │ │ └── 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-cmp │ │ │ ├── LICENSE │ │ │ └── cmp │ │ │ │ ├── compare.go │ │ │ │ ├── export.go │ │ │ │ ├── internal │ │ │ │ ├── diff │ │ │ │ │ ├── debug_disable.go │ │ │ │ │ ├── debug_enable.go │ │ │ │ │ └── diff.go │ │ │ │ ├── flags │ │ │ │ │ └── flags.go │ │ │ │ ├── function │ │ │ │ │ └── func.go │ │ │ │ └── value │ │ │ │ │ ├── name.go │ │ │ │ │ ├── pointer.go │ │ │ │ │ └── sort.go │ │ │ │ ├── options.go │ │ │ │ ├── path.go │ │ │ │ ├── report.go │ │ │ │ ├── report_compare.go │ │ │ │ ├── report_references.go │ │ │ │ ├── report_reflect.go │ │ │ │ ├── report_slices.go │ │ │ │ ├── report_text.go │ │ │ │ └── report_value.go │ │ ├── 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 │ │ ├── pprof │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ └── profile │ │ │ │ ├── encode.go │ │ │ │ ├── filter.go │ │ │ │ ├── index.go │ │ │ │ ├── legacy_java_profile.go │ │ │ │ ├── legacy_profile.go │ │ │ │ ├── merge.go │ │ │ │ ├── profile.go │ │ │ │ ├── proto.go │ │ │ │ └── prune.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 │ ├── json-iterator │ │ └── go │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── adapter.go │ │ │ ├── any.go │ │ │ ├── any_array.go │ │ │ ├── any_bool.go │ │ │ ├── any_float.go │ │ │ ├── any_int32.go │ │ │ ├── any_int64.go │ │ │ ├── any_invalid.go │ │ │ ├── any_nil.go │ │ │ ├── any_number.go │ │ │ ├── any_object.go │ │ │ ├── any_str.go │ │ │ ├── any_uint32.go │ │ │ ├── any_uint64.go │ │ │ ├── build.sh │ │ │ ├── config.go │ │ │ ├── fuzzy_mode_convert_table.md │ │ │ ├── iter.go │ │ │ ├── iter_array.go │ │ │ ├── iter_float.go │ │ │ ├── iter_int.go │ │ │ ├── iter_object.go │ │ │ ├── iter_skip.go │ │ │ ├── iter_skip_sloppy.go │ │ │ ├── iter_skip_strict.go │ │ │ ├── iter_str.go │ │ │ ├── jsoniter.go │ │ │ ├── pool.go │ │ │ ├── reflect.go │ │ │ ├── reflect_array.go │ │ │ ├── reflect_dynamic.go │ │ │ ├── reflect_extension.go │ │ │ ├── reflect_json_number.go │ │ │ ├── reflect_json_raw_message.go │ │ │ ├── reflect_map.go │ │ │ ├── reflect_marshaler.go │ │ │ ├── reflect_native.go │ │ │ ├── reflect_optional.go │ │ │ ├── reflect_slice.go │ │ │ ├── reflect_struct_decoder.go │ │ │ ├── reflect_struct_encoder.go │ │ │ ├── stream.go │ │ │ ├── stream_float.go │ │ │ ├── stream_int.go │ │ │ ├── stream_str.go │ │ │ └── test.sh │ ├── 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 │ │ │ │ ├── snappy.go │ │ │ │ ├── zip.go │ │ │ │ └── zstd.go │ │ └── pgzip │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── GO_LICENSE │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── gunzip.go │ │ │ └── gzip.go │ ├── kr │ │ └── fs │ │ │ ├── LICENSE │ │ │ ├── Readme │ │ │ ├── filesystem.go │ │ │ └── walk.go │ ├── letsencrypt │ │ └── boulder │ │ │ ├── LICENSE.txt │ │ │ ├── core │ │ │ ├── challenges.go │ │ │ ├── interfaces.go │ │ │ ├── objects.go │ │ │ └── util.go │ │ │ ├── goodkey │ │ │ ├── blocked.go │ │ │ ├── good_key.go │ │ │ └── weak.go │ │ │ ├── identifier │ │ │ └── identifier.go │ │ │ ├── probs │ │ │ └── probs.go │ │ │ ├── revocation │ │ │ └── reasons.go │ │ │ └── strictyaml │ │ │ └── yaml.go │ ├── manifoldco │ │ └── promptui │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE.md │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── codes.go │ │ │ ├── cursor.go │ │ │ ├── keycodes.go │ │ │ ├── keycodes_other.go │ │ │ ├── keycodes_windows.go │ │ │ ├── list │ │ │ └── list.go │ │ │ ├── prompt.go │ │ │ ├── promptui.go │ │ │ ├── screenbuf │ │ │ └── screenbuf.go │ │ │ ├── select.go │ │ │ ├── styles.go │ │ │ └── styles_windows.go │ ├── mattn │ │ ├── go-runewidth │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── runewidth.go │ │ │ ├── runewidth_appengine.go │ │ │ ├── runewidth_js.go │ │ │ ├── runewidth_posix.go │ │ │ ├── runewidth_table.go │ │ │ └── runewidth_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_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 │ │ │ ├── hsm.db │ │ │ ├── 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 │ │ │ └── v3 │ │ │ ├── .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 │ │ ├── docker-image-spec │ │ │ ├── LICENSE │ │ │ └── specs-go │ │ │ │ └── v1 │ │ │ │ └── image.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 │ │ │ ├── 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 │ │ └── reflect2 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go_above_118.go │ │ │ ├── go_above_19.go │ │ │ ├── go_below_118.go │ │ │ ├── reflect2.go │ │ │ ├── reflect2_amd64.s │ │ │ ├── reflect2_kind.go │ │ │ ├── relfect2_386.s │ │ │ ├── relfect2_amd64p32.s │ │ │ ├── relfect2_arm.s │ │ │ ├── relfect2_arm64.s │ │ │ ├── relfect2_mips64x.s │ │ │ ├── relfect2_mipsx.s │ │ │ ├── relfect2_ppc64x.s │ │ │ ├── relfect2_s390x.s │ │ │ ├── safe_field.go │ │ │ ├── safe_map.go │ │ │ ├── safe_slice.go │ │ │ ├── safe_struct.go │ │ │ ├── safe_type.go │ │ │ ├── type_map.go │ │ │ ├── unsafe_array.go │ │ │ ├── unsafe_eface.go │ │ │ ├── unsafe_field.go │ │ │ ├── unsafe_iface.go │ │ │ ├── unsafe_link.go │ │ │ ├── unsafe_map.go │ │ │ ├── unsafe_ptr.go │ │ │ ├── unsafe_slice.go │ │ │ ├── unsafe_struct.go │ │ │ └── unsafe_type.go │ ├── onsi │ │ ├── ginkgo │ │ │ └── v2 │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── RELEASING.md │ │ │ │ ├── config │ │ │ │ └── deprecated.go │ │ │ │ ├── core_dsl.go │ │ │ │ ├── decorator_dsl.go │ │ │ │ ├── deprecated_dsl.go │ │ │ │ ├── formatter │ │ │ │ ├── colorable_others.go │ │ │ │ ├── colorable_windows.go │ │ │ │ └── formatter.go │ │ │ │ ├── ginkgo │ │ │ │ ├── build │ │ │ │ │ └── build_command.go │ │ │ │ ├── command │ │ │ │ │ ├── abort.go │ │ │ │ │ ├── command.go │ │ │ │ │ └── program.go │ │ │ │ ├── generators │ │ │ │ │ ├── boostrap_templates.go │ │ │ │ │ ├── bootstrap_command.go │ │ │ │ │ ├── generate_command.go │ │ │ │ │ ├── generate_templates.go │ │ │ │ │ └── generators_common.go │ │ │ │ ├── internal │ │ │ │ │ ├── compile.go │ │ │ │ │ ├── gocovmerge.go │ │ │ │ │ ├── profiles_and_reports.go │ │ │ │ │ ├── run.go │ │ │ │ │ ├── test_suite.go │ │ │ │ │ ├── utils.go │ │ │ │ │ └── verify_version.go │ │ │ │ ├── labels │ │ │ │ │ └── labels_command.go │ │ │ │ ├── main.go │ │ │ │ ├── outline │ │ │ │ │ ├── ginkgo.go │ │ │ │ │ ├── import.go │ │ │ │ │ ├── outline.go │ │ │ │ │ └── outline_command.go │ │ │ │ ├── run │ │ │ │ │ └── run_command.go │ │ │ │ ├── unfocus │ │ │ │ │ └── unfocus_command.go │ │ │ │ └── watch │ │ │ │ │ ├── delta.go │ │ │ │ │ ├── delta_tracker.go │ │ │ │ │ ├── dependencies.go │ │ │ │ │ ├── package_hash.go │ │ │ │ │ ├── package_hashes.go │ │ │ │ │ ├── suite.go │ │ │ │ │ └── watch_command.go │ │ │ │ ├── ginkgo_cli_dependencies.go │ │ │ │ ├── ginkgo_t_dsl.go │ │ │ │ ├── internal │ │ │ │ ├── around_node.go │ │ │ │ ├── counter.go │ │ │ │ ├── failer.go │ │ │ │ ├── focus.go │ │ │ │ ├── global │ │ │ │ │ └── init.go │ │ │ │ ├── group.go │ │ │ │ ├── interrupt_handler │ │ │ │ │ ├── interrupt_handler.go │ │ │ │ │ ├── sigquit_swallower_unix.go │ │ │ │ │ └── sigquit_swallower_windows.go │ │ │ │ ├── node.go │ │ │ │ ├── ordering.go │ │ │ │ ├── output_interceptor.go │ │ │ │ ├── output_interceptor_unix.go │ │ │ │ ├── output_interceptor_wasm.go │ │ │ │ ├── output_interceptor_win.go │ │ │ │ ├── parallel_support │ │ │ │ │ ├── client_server.go │ │ │ │ │ ├── http_client.go │ │ │ │ │ ├── http_server.go │ │ │ │ │ ├── rpc_client.go │ │ │ │ │ ├── rpc_server.go │ │ │ │ │ └── server_handler.go │ │ │ │ ├── progress_report.go │ │ │ │ ├── progress_report_bsd.go │ │ │ │ ├── progress_report_unix.go │ │ │ │ ├── progress_report_wasm.go │ │ │ │ ├── progress_report_win.go │ │ │ │ ├── progress_reporter_manager.go │ │ │ │ ├── report_entry.go │ │ │ │ ├── spec.go │ │ │ │ ├── spec_context.go │ │ │ │ ├── suite.go │ │ │ │ ├── testingtproxy │ │ │ │ │ └── testing_t_proxy.go │ │ │ │ ├── tree.go │ │ │ │ └── writer.go │ │ │ │ ├── reporters │ │ │ │ ├── default_reporter.go │ │ │ │ ├── deprecated_reporter.go │ │ │ │ ├── json_report.go │ │ │ │ ├── junit_report.go │ │ │ │ ├── reporter.go │ │ │ │ └── teamcity_report.go │ │ │ │ ├── reporting_dsl.go │ │ │ │ ├── table_dsl.go │ │ │ │ └── types │ │ │ │ ├── around_node.go │ │ │ │ ├── code_location.go │ │ │ │ ├── config.go │ │ │ │ ├── deprecated_types.go │ │ │ │ ├── deprecation_support.go │ │ │ │ ├── enum_support.go │ │ │ │ ├── errors.go │ │ │ │ ├── file_filter.go │ │ │ │ ├── flags.go │ │ │ │ ├── label_filter.go │ │ │ │ ├── report_entry.go │ │ │ │ ├── semver_filter.go │ │ │ │ ├── types.go │ │ │ │ └── version.go │ │ └── gomega │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── RELEASING.md │ │ │ ├── format │ │ │ └── format.go │ │ │ ├── gomega_dsl.go │ │ │ ├── internal │ │ │ ├── assertion.go │ │ │ ├── async_assertion.go │ │ │ ├── duration_bundle.go │ │ │ ├── gomega.go │ │ │ ├── gutil │ │ │ │ ├── post_ioutil.go │ │ │ │ └── using_ioutil.go │ │ │ ├── polling_signal_error.go │ │ │ └── vetoptdesc.go │ │ │ ├── matchers.go │ │ │ ├── matchers │ │ │ ├── and.go │ │ │ ├── assignable_to_type_of_matcher.go │ │ │ ├── attributes_slice.go │ │ │ ├── be_a_directory.go │ │ │ ├── be_a_regular_file.go │ │ │ ├── be_an_existing_file.go │ │ │ ├── be_closed_matcher.go │ │ │ ├── be_comparable_to_matcher.go │ │ │ ├── be_element_of_matcher.go │ │ │ ├── be_empty_matcher.go │ │ │ ├── be_equivalent_to_matcher.go │ │ │ ├── be_false_matcher.go │ │ │ ├── be_identical_to.go │ │ │ ├── be_key_of_matcher.go │ │ │ ├── be_nil_matcher.go │ │ │ ├── be_numerically_matcher.go │ │ │ ├── be_sent_matcher.go │ │ │ ├── be_temporally_matcher.go │ │ │ ├── be_true_matcher.go │ │ │ ├── be_zero_matcher.go │ │ │ ├── consist_of.go │ │ │ ├── contain_element_matcher.go │ │ │ ├── contain_elements_matcher.go │ │ │ ├── contain_substring_matcher.go │ │ │ ├── equal_matcher.go │ │ │ ├── have_cap_matcher.go │ │ │ ├── have_each_matcher.go │ │ │ ├── have_exact_elements.go │ │ │ ├── have_existing_field_matcher.go │ │ │ ├── have_field.go │ │ │ ├── have_http_body_matcher.go │ │ │ ├── have_http_header_with_value_matcher.go │ │ │ ├── have_http_status_matcher.go │ │ │ ├── have_key_matcher.go │ │ │ ├── have_key_with_value_matcher.go │ │ │ ├── have_len_matcher.go │ │ │ ├── have_occurred_matcher.go │ │ │ ├── have_prefix_matcher.go │ │ │ ├── have_suffix_matcher.go │ │ │ ├── have_value.go │ │ │ ├── internal │ │ │ │ └── miter │ │ │ │ │ ├── type_support_iter.go │ │ │ │ │ └── type_support_noiter.go │ │ │ ├── match_error_matcher.go │ │ │ ├── match_json_matcher.go │ │ │ ├── match_regexp_matcher.go │ │ │ ├── match_xml_matcher.go │ │ │ ├── match_yaml_matcher.go │ │ │ ├── not.go │ │ │ ├── or.go │ │ │ ├── panic_matcher.go │ │ │ ├── receive_matcher.go │ │ │ ├── satisfy_matcher.go │ │ │ ├── semi_structured_data_support.go │ │ │ ├── succeed_matcher.go │ │ │ ├── support │ │ │ │ └── goraph │ │ │ │ │ ├── bipartitegraph │ │ │ │ │ ├── bipartitegraph.go │ │ │ │ │ └── bipartitegraphmatching.go │ │ │ │ │ ├── edge │ │ │ │ │ └── edge.go │ │ │ │ │ ├── node │ │ │ │ │ └── node.go │ │ │ │ │ └── util │ │ │ │ │ └── util.go │ │ │ ├── type_support.go │ │ │ └── with_transform.go │ │ │ └── types │ │ │ └── types.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 │ │ │ ├── fs │ │ │ │ ├── blkio.go │ │ │ │ ├── cpu.go │ │ │ │ ├── cpuacct.go │ │ │ │ ├── cpuset.go │ │ │ │ ├── devices.go │ │ │ │ ├── error.go │ │ │ │ ├── freezer.go │ │ │ │ ├── fs.go │ │ │ │ ├── hugetlb.go │ │ │ │ ├── memory.go │ │ │ │ ├── name.go │ │ │ │ ├── net_cls.go │ │ │ │ ├── net_prio.go │ │ │ │ ├── paths.go │ │ │ │ ├── perf_event.go │ │ │ │ ├── pids.go │ │ │ │ └── rdma.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 │ │ │ └── libcontainer │ │ │ │ ├── apparmor │ │ │ │ ├── apparmor.go │ │ │ │ ├── apparmor_linux.go │ │ │ │ └── apparmor_unsupported.go │ │ │ │ ├── devices │ │ │ │ ├── device_deprecated.go │ │ │ │ └── device_unix.go │ │ │ │ └── utils │ │ │ │ ├── cmsg.go │ │ │ │ ├── utils.go │ │ │ │ └── utils_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 │ ├── pkg │ │ ├── errors │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── errors.go │ │ │ ├── go113.go │ │ │ └── stack.go │ │ └── sftp │ │ │ ├── .gitignore │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── allocator.go │ │ │ ├── attrs.go │ │ │ ├── attrs_stubs.go │ │ │ ├── attrs_unix.go │ │ │ ├── client.go │ │ │ ├── conn.go │ │ │ ├── debug.go │ │ │ ├── errno_plan9.go │ │ │ ├── errno_posix.go │ │ │ ├── fuzz.go │ │ │ ├── internal │ │ │ └── encoding │ │ │ │ └── ssh │ │ │ │ └── filexfer │ │ │ │ ├── attrs.go │ │ │ │ ├── buffer.go │ │ │ │ ├── extended_packets.go │ │ │ │ ├── extensions.go │ │ │ │ ├── filexfer.go │ │ │ │ ├── fx.go │ │ │ │ ├── fxp.go │ │ │ │ ├── handle_packets.go │ │ │ │ ├── init_packets.go │ │ │ │ ├── open_packets.go │ │ │ │ ├── openssh │ │ │ │ ├── fsync.go │ │ │ │ ├── hardlink.go │ │ │ │ ├── openssh.go │ │ │ │ ├── posix-rename.go │ │ │ │ └── statvfs.go │ │ │ │ ├── packets.go │ │ │ │ ├── path_packets.go │ │ │ │ ├── permissions.go │ │ │ │ └── response_packets.go │ │ │ ├── ls_formatting.go │ │ │ ├── ls_plan9.go │ │ │ ├── ls_stub.go │ │ │ ├── ls_unix.go │ │ │ ├── match.go │ │ │ ├── packet-manager.go │ │ │ ├── packet-typing.go │ │ │ ├── packet.go │ │ │ ├── pool.go │ │ │ ├── release.go │ │ │ ├── request-attrs.go │ │ │ ├── request-errors.go │ │ │ ├── request-example.go │ │ │ ├── request-interfaces.go │ │ │ ├── request-plan9.go │ │ │ ├── request-readme.md │ │ │ ├── request-server.go │ │ │ ├── request-unix.go │ │ │ ├── request.go │ │ │ ├── request_windows.go │ │ │ ├── server.go │ │ │ ├── server_plan9.go │ │ │ ├── server_posix.go │ │ │ ├── server_statvfs_darwin.go │ │ │ ├── server_statvfs_impl.go │ │ │ ├── server_statvfs_linux.go │ │ │ ├── server_statvfs_plan9.go │ │ │ ├── server_statvfs_stubs.go │ │ │ ├── server_unix.go │ │ │ ├── server_windows.go │ │ │ ├── sftp.go │ │ │ └── stat.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 │ ├── rivo │ │ └── uniseg │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── eastasianwidth.go │ │ │ ├── emojipresentation.go │ │ │ ├── gen_breaktest.go │ │ │ ├── gen_properties.go │ │ │ ├── grapheme.go │ │ │ ├── graphemeproperties.go │ │ │ ├── graphemerules.go │ │ │ ├── line.go │ │ │ ├── lineproperties.go │ │ │ ├── linerules.go │ │ │ ├── properties.go │ │ │ ├── sentence.go │ │ │ ├── sentenceproperties.go │ │ │ ├── sentencerules.go │ │ │ ├── step.go │ │ │ ├── width.go │ │ │ ├── word.go │ │ │ ├── wordproperties.go │ │ │ └── wordrules.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 │ │ │ └── sans.go │ │ │ └── signature │ │ │ ├── algorithm_registry.go │ │ │ ├── doc.go │ │ │ ├── ecdsa.go │ │ │ ├── ed25519.go │ │ │ ├── ed25519ph.go │ │ │ ├── message.go │ │ │ ├── options.go │ │ │ ├── options │ │ │ ├── context.go │ │ │ ├── digest.go │ │ │ ├── doc.go │ │ │ ├── keyversion.go │ │ │ ├── loadoptions.go │ │ │ ├── noop.go │ │ │ ├── rand.go │ │ │ ├── remoteverification.go │ │ │ ├── rpcauth.go │ │ │ └── signeropts.go │ │ │ ├── payload │ │ │ ├── doc.go │ │ │ └── payload.go │ │ │ ├── publickey.go │ │ │ ├── rsapkcs1v15.go │ │ │ ├── rsapss.go │ │ │ ├── signer.go │ │ │ ├── signerverifier.go │ │ │ ├── util.go │ │ │ └── verifier.go │ ├── sirupsen │ │ └── logrus │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── alt_exit.go │ │ │ ├── appveyor.yml │ │ │ ├── buffer_pool.go │ │ │ ├── doc.go │ │ │ ├── entry.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── hooks.go │ │ │ ├── json_formatter.go │ │ │ ├── logger.go │ │ │ ├── logrus.go │ │ │ ├── terminal_check_appengine.go │ │ │ ├── terminal_check_bsd.go │ │ │ ├── terminal_check_js.go │ │ │ ├── terminal_check_no_terminal.go │ │ │ ├── terminal_check_notappengine.go │ │ │ ├── terminal_check_solaris.go │ │ │ ├── terminal_check_unix.go │ │ │ ├── terminal_check_windows.go │ │ │ ├── text_formatter.go │ │ │ └── writer.go │ ├── skeema │ │ └── knownhosts │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ └── knownhosts.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 │ │ │ ├── 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 │ ├── titanous │ │ └── rocacheck │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── rocacheck.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_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_compete_or_on_abort.go │ │ │ ├── on_complete.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 │ │ │ ├── priority_queue.go │ │ │ ├── progress.go │ │ │ ├── proxyreader.go │ │ │ └── proxywriter.go │ └── vishvananda │ │ ├── netlink │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── addr.go │ │ ├── addr_linux.go │ │ ├── bpf_linux.go │ │ ├── bridge_linux.go │ │ ├── chain.go │ │ ├── chain_linux.go │ │ ├── class.go │ │ ├── class_linux.go │ │ ├── conntrack_linux.go │ │ ├── conntrack_unspecified.go │ │ ├── devlink_linux.go │ │ ├── filter.go │ │ ├── filter_linux.go │ │ ├── fou.go │ │ ├── fou_linux.go │ │ ├── fou_unspecified.go │ │ ├── genetlink_linux.go │ │ ├── genetlink_unspecified.go │ │ ├── gtp_linux.go │ │ ├── handle_linux.go │ │ ├── handle_unspecified.go │ │ ├── inet_diag.go │ │ ├── ioctl_linux.go │ │ ├── ipset_linux.go │ │ ├── link.go │ │ ├── link_linux.go │ │ ├── link_tuntap_linux.go │ │ ├── neigh.go │ │ ├── neigh_linux.go │ │ ├── netlink.go │ │ ├── netlink_linux.go │ │ ├── netlink_unspecified.go │ │ ├── netns_linux.go │ │ ├── netns_unspecified.go │ │ ├── nl │ │ │ ├── addr_linux.go │ │ │ ├── bridge_linux.go │ │ │ ├── conntrack_linux.go │ │ │ ├── devlink_linux.go │ │ │ ├── genetlink_linux.go │ │ │ ├── ip6tnl_linux.go │ │ │ ├── ipset_linux.go │ │ │ ├── link_linux.go │ │ │ ├── lwt_linux.go │ │ │ ├── mpls_linux.go │ │ │ ├── nl_linux.go │ │ │ ├── nl_unspecified.go │ │ │ ├── parse_attr_linux.go │ │ │ ├── rdma_link_linux.go │ │ │ ├── route_linux.go │ │ │ ├── seg6_linux.go │ │ │ ├── seg6local_linux.go │ │ │ ├── syscall.go │ │ │ ├── tc_linux.go │ │ │ ├── vdpa_linux.go │ │ │ ├── xfrm_linux.go │ │ │ ├── xfrm_monitor_linux.go │ │ │ ├── xfrm_policy_linux.go │ │ │ └── xfrm_state_linux.go │ │ ├── order.go │ │ ├── proc_event_linux.go │ │ ├── protinfo.go │ │ ├── protinfo_linux.go │ │ ├── qdisc.go │ │ ├── qdisc_linux.go │ │ ├── rdma_link_linux.go │ │ ├── route.go │ │ ├── route_linux.go │ │ ├── route_unspecified.go │ │ ├── rule.go │ │ ├── rule_linux.go │ │ ├── rule_nonlinux.go │ │ ├── socket.go │ │ ├── socket_linux.go │ │ ├── socket_xdp_linux.go │ │ ├── tcp.go │ │ ├── tcp_linux.go │ │ ├── unix_diag.go │ │ ├── vdpa_linux.go │ │ ├── virtio.go │ │ ├── xdp_diag.go │ │ ├── xdp_linux.go │ │ ├── xfrm_linux.go │ │ ├── xfrm_monitor_linux.go │ │ ├── xfrm_policy_linux.go │ │ ├── xfrm_state_linux.go │ │ └── xfrm_unspecified.go │ │ └── netns │ │ ├── .golangci.yml │ │ ├── .yamllint.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── netns_linux.go │ │ ├── netns_others.go │ │ ├── nshandle_linux.go │ │ └── nshandle_others.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.go │ │ ├── errors │ │ └── 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.opencensus.io │ ├── .gitignore │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── appveyor.yml │ ├── internal │ │ ├── internal.go │ │ ├── sanitize.go │ │ └── traceinternals.go │ ├── opencensus.go │ └── trace │ │ ├── basetypes.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── evictedqueue.go │ │ ├── export.go │ │ ├── internal │ │ └── internal.go │ │ ├── lrumap.go │ │ ├── sampling.go │ │ ├── spanbucket.go │ │ ├── spanstore.go │ │ ├── status_codes.go │ │ ├── trace.go │ │ ├── trace_api.go │ │ ├── trace_go11.go │ │ ├── trace_nongo11.go │ │ └── tracestate │ │ └── tracestate.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 │ │ │ ├── client.go │ │ │ ├── common.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── handler.go │ │ │ ├── internal │ │ │ ├── request │ │ │ │ ├── body_wrapper.go │ │ │ │ ├── gen.go │ │ │ │ └── resp_writer_wrapper.go │ │ │ ├── semconv │ │ │ │ ├── env.go │ │ │ │ ├── gen.go │ │ │ │ ├── httpconv.go │ │ │ │ ├── util.go │ │ │ │ └── v1.20.0.go │ │ │ └── semconvutil │ │ │ │ ├── gen.go │ │ │ │ ├── httpconv.go │ │ │ │ └── netconv.go │ │ │ ├── labeler.go │ │ │ ├── start_time_context.go │ │ │ ├── transport.go │ │ │ └── version.go │ └── otel │ │ ├── .codespellignore │ │ ├── .codespellrc │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .lycheeignore │ │ ├── .markdownlint.yaml │ │ ├── CHANGELOG.md │ │ ├── CODEOWNERS │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── RELEASING.md │ │ ├── VERSIONING.md │ │ ├── attribute │ │ ├── README.md │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── filter.go │ │ ├── iterator.go │ │ ├── key.go │ │ ├── kv.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 │ │ ├── get_main_pkgs.sh │ │ ├── handler.go │ │ ├── internal │ │ ├── attribute │ │ │ └── attribute.go │ │ ├── baggage │ │ │ ├── baggage.go │ │ │ └── context.go │ │ ├── gen.go │ │ ├── global │ │ │ ├── handler.go │ │ │ ├── instruments.go │ │ │ ├── internal_logging.go │ │ │ ├── meter.go │ │ │ ├── propagator.go │ │ │ ├── state.go │ │ │ └── trace.go │ │ └── rawhelpers.go │ │ ├── internal_logging.go │ │ ├── metric.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 │ │ ├── propagation.go │ │ ├── propagation │ │ ├── README.md │ │ ├── baggage.go │ │ ├── doc.go │ │ ├── propagation.go │ │ └── trace_context.go │ │ ├── renovate.json │ │ ├── requirements.txt │ │ ├── semconv │ │ ├── v1.20.0 │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── exception.go │ │ │ ├── http.go │ │ │ ├── resource.go │ │ │ ├── schema.go │ │ │ └── trace.go │ │ └── v1.26.0 │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── exception.go │ │ │ ├── metric.go │ │ │ └── schema.go │ │ ├── trace.go │ │ ├── trace │ │ ├── LICENSE │ │ ├── README.md │ │ ├── auto.go │ │ ├── config.go │ │ ├── context.go │ │ ├── doc.go │ │ ├── embedded │ │ │ ├── README.md │ │ │ └── embedded.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.go │ │ ├── noop │ │ │ ├── README.md │ │ │ └── noop.go │ │ ├── provider.go │ │ ├── span.go │ │ ├── trace.go │ │ ├── tracer.go │ │ └── tracestate.go │ │ ├── verify_readmes.sh │ │ ├── verify_released_changelog.sh │ │ ├── version.go │ │ └── versions.yaml ├── go.uber.org │ └── automaxprocs │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── automaxprocs.go │ │ ├── internal │ │ ├── cgroups │ │ │ ├── cgroup.go │ │ │ ├── cgroups.go │ │ │ ├── cgroups2.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── mountpoint.go │ │ │ └── subsys.go │ │ └── runtime │ │ │ ├── cpu_quota_linux.go │ │ │ ├── cpu_quota_unsupported.go │ │ │ └── runtime.go │ │ └── maxprocs │ │ ├── maxprocs.go │ │ └── version.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 │ │ ├── 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.go │ │ │ ├── asn1 │ │ │ │ └── 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 │ │ ├── ocsp │ │ │ └── ocsp.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 │ │ ├── salsa20 │ │ │ └── salsa │ │ │ │ ├── hsalsa20.go │ │ │ │ ├── salsa208.go │ │ │ │ ├── salsa20_amd64.go │ │ │ │ ├── salsa20_amd64.s │ │ │ │ ├── salsa20_noasm.go │ │ │ │ └── salsa20_ref.go │ │ ├── scrypt │ │ │ └── scrypt.go │ │ ├── sha3 │ │ │ ├── doc.go │ │ │ ├── hashes.go │ │ │ ├── hashes_noasm.go │ │ │ ├── keccakf.go │ │ │ ├── keccakf_amd64.go │ │ │ ├── keccakf_amd64.s │ │ │ ├── sha3.go │ │ │ ├── sha3_s390x.go │ │ │ ├── sha3_s390x.s │ │ │ ├── shake.go │ │ │ └── shake_noasm.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 │ │ │ ├── knownhosts │ │ │ └── knownhosts.go │ │ │ ├── mac.go │ │ │ ├── messages.go │ │ │ ├── mlkem.go │ │ │ ├── mux.go │ │ │ ├── server.go │ │ │ ├── session.go │ │ │ ├── ssh_gss.go │ │ │ ├── streamlocal.go │ │ │ ├── tcpip.go │ │ │ └── transport.go │ │ ├── net │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── html │ │ │ ├── atom │ │ │ │ ├── atom.go │ │ │ │ └── table.go │ │ │ ├── charset │ │ │ │ └── charset.go │ │ │ ├── const.go │ │ │ ├── doc.go │ │ │ ├── doctype.go │ │ │ ├── entity.go │ │ │ ├── escape.go │ │ │ ├── foreign.go │ │ │ ├── iter.go │ │ │ ├── node.go │ │ │ ├── parse.go │ │ │ ├── render.go │ │ │ └── token.go │ │ ├── http │ │ │ └── httpguts │ │ │ │ ├── guts.go │ │ │ │ └── httplex.go │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── ascii.go │ │ │ ├── ciphers.go │ │ │ ├── client_conn_pool.go │ │ │ ├── config.go │ │ │ ├── config_go124.go │ │ │ ├── config_pre_go124.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 │ │ │ ├── timer.go │ │ │ ├── transport.go │ │ │ ├── unencrypted.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ ├── writesched_priority.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 │ │ │ └── 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_x86_gc.s │ │ │ ├── byteorder.go │ │ │ ├── cpu.go │ │ │ ├── cpu_aix.go │ │ │ ├── cpu_arm.go │ │ │ ├── cpu_arm64.go │ │ │ ├── cpu_arm64.s │ │ │ ├── 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_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_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_go15_plan9.go │ │ │ ├── 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 │ │ │ ├── registry │ │ │ ├── key.go │ │ │ ├── mksyscall.go │ │ │ ├── syscall.go │ │ │ ├── value.go │ │ │ └── zsyscall_windows.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 │ │ ├── encoding │ │ │ ├── charmap │ │ │ │ ├── charmap.go │ │ │ │ └── tables.go │ │ │ ├── encoding.go │ │ │ ├── htmlindex │ │ │ │ ├── htmlindex.go │ │ │ │ ├── map.go │ │ │ │ └── tables.go │ │ │ ├── internal │ │ │ │ ├── identifier │ │ │ │ │ ├── identifier.go │ │ │ │ │ └── mib.go │ │ │ │ └── internal.go │ │ │ ├── japanese │ │ │ │ ├── all.go │ │ │ │ ├── eucjp.go │ │ │ │ ├── iso2022jp.go │ │ │ │ ├── shiftjis.go │ │ │ │ └── tables.go │ │ │ ├── korean │ │ │ │ ├── euckr.go │ │ │ │ └── tables.go │ │ │ ├── simplifiedchinese │ │ │ │ ├── all.go │ │ │ │ ├── gbk.go │ │ │ │ ├── hzgb2312.go │ │ │ │ └── tables.go │ │ │ ├── traditionalchinese │ │ │ │ ├── big5.go │ │ │ │ └── tables.go │ │ │ └── unicode │ │ │ │ ├── override.go │ │ │ │ └── unicode.go │ │ ├── internal │ │ │ ├── language │ │ │ │ ├── common.go │ │ │ │ ├── compact.go │ │ │ │ ├── compact │ │ │ │ │ ├── compact.go │ │ │ │ │ ├── language.go │ │ │ │ │ ├── parents.go │ │ │ │ │ ├── tables.go │ │ │ │ │ └── tags.go │ │ │ │ ├── compose.go │ │ │ │ ├── coverage.go │ │ │ │ ├── language.go │ │ │ │ ├── lookup.go │ │ │ │ ├── match.go │ │ │ │ ├── parse.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ ├── tag │ │ │ │ └── tag.go │ │ │ └── utf8internal │ │ │ │ └── utf8internal.go │ │ ├── language │ │ │ ├── coverage.go │ │ │ ├── doc.go │ │ │ ├── language.go │ │ │ ├── match.go │ │ │ ├── parse.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── runes │ │ │ ├── cond.go │ │ │ └── runes.go │ │ ├── secure │ │ │ └── bidirule │ │ │ │ ├── bidirule.go │ │ │ │ ├── bidirule10.0.0.go │ │ │ │ └── bidirule9.0.0.go │ │ ├── transform │ │ │ └── transform.go │ │ └── unicode │ │ │ ├── bidi │ │ │ ├── bidi.go │ │ │ ├── bracket.go │ │ │ ├── core.go │ │ │ ├── prop.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 │ │ │ └── trieval.go │ │ │ └── norm │ │ │ ├── composition.go │ │ │ ├── forminfo.go │ │ │ ├── input.go │ │ │ ├── iter.go │ │ │ ├── normalize.go │ │ │ ├── readwriter.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 │ │ │ ├── transform.go │ │ │ └── trie.go │ │ └── tools │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── cover │ │ └── profile.go │ │ └── go │ │ └── ast │ │ ├── edge │ │ └── edge.go │ │ └── inspector │ │ ├── cursor.go │ │ ├── inspector.go │ │ ├── iter.go │ │ ├── typeof.go │ │ └── walk.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.go │ │ ├── backoff │ │ │ └── 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 │ │ │ │ └── pickfirstleaf │ │ │ │ │ └── pickfirstleaf.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 │ │ │ └── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 ├── 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 │ └── pkg │ └── parser │ └── parser.go └── version └── version.go /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.codespelldict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/.codespelldict -------------------------------------------------------------------------------- /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/.codespellrc -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/auto-close-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/.github/workflows/auto-close-issues.yml -------------------------------------------------------------------------------- /.github/workflows/auto-close-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/.github/workflows/auto-close-prs.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci-extra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/.golangci-extra.yml -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.packit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/.packit.yaml -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTING_GO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/CONTRIBUTING_GO.md -------------------------------------------------------------------------------- /CONTRIBUTING_RUST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/CONTRIBUTING_RUST.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cmd/seccomp/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/cmd/seccomp/generate.go -------------------------------------------------------------------------------- /contrib/redhat/registry.redhat.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/contrib/redhat/registry.redhat.io.yaml -------------------------------------------------------------------------------- /docs/Containerfile.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/docs/Containerfile.5.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/containerignore.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/docs/containerignore.5.md -------------------------------------------------------------------------------- /docs/containers-mounts.conf.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/docs/containers-mounts.conf.5.md -------------------------------------------------------------------------------- /docs/containers.conf.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/docs/containers.conf.5.md -------------------------------------------------------------------------------- /docs/links/.containerignore.5: -------------------------------------------------------------------------------- 1 | .so man5/containerignore.5 2 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/go.sum -------------------------------------------------------------------------------- /hack/tree_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/hack/tree_status.sh -------------------------------------------------------------------------------- /internal/attributedstring/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/internal/attributedstring/slice.go -------------------------------------------------------------------------------- /internal/attributedstring/slice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/internal/attributedstring/slice_test.go -------------------------------------------------------------------------------- /internal/deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/internal/deepcopy.go -------------------------------------------------------------------------------- /libimage/copier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/copier.go -------------------------------------------------------------------------------- /libimage/corrupted_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/corrupted_test.go -------------------------------------------------------------------------------- /libimage/define/manifests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/define/manifests.go -------------------------------------------------------------------------------- /libimage/define/platform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/define/platform.go -------------------------------------------------------------------------------- /libimage/define/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/define/search.go -------------------------------------------------------------------------------- /libimage/disk_usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/disk_usage.go -------------------------------------------------------------------------------- /libimage/disk_usage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/disk_usage_test.go -------------------------------------------------------------------------------- /libimage/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/events.go -------------------------------------------------------------------------------- /libimage/filter/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/filter/filter.go -------------------------------------------------------------------------------- /libimage/filters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/filters.go -------------------------------------------------------------------------------- /libimage/filters_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/filters_test.go -------------------------------------------------------------------------------- /libimage/history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/history.go -------------------------------------------------------------------------------- /libimage/history_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/history_test.go -------------------------------------------------------------------------------- /libimage/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/image.go -------------------------------------------------------------------------------- /libimage/image_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/image_config.go -------------------------------------------------------------------------------- /libimage/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/image_test.go -------------------------------------------------------------------------------- /libimage/image_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/image_tree.go -------------------------------------------------------------------------------- /libimage/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/import.go -------------------------------------------------------------------------------- /libimage/import_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/import_test.go -------------------------------------------------------------------------------- /libimage/inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/inspect.go -------------------------------------------------------------------------------- /libimage/layer_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/layer_tree.go -------------------------------------------------------------------------------- /libimage/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/load.go -------------------------------------------------------------------------------- /libimage/load_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/load_test.go -------------------------------------------------------------------------------- /libimage/manifest_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/manifest_list.go -------------------------------------------------------------------------------- /libimage/manifest_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/manifest_list_test.go -------------------------------------------------------------------------------- /libimage/manifests/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/manifests/copy.go -------------------------------------------------------------------------------- /libimage/manifests/manifests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/manifests/manifests.go -------------------------------------------------------------------------------- /libimage/manifests/manifests_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/manifests/manifests_test.go -------------------------------------------------------------------------------- /libimage/normalize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/normalize.go -------------------------------------------------------------------------------- /libimage/normalize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/normalize_test.go -------------------------------------------------------------------------------- /libimage/oci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/oci.go -------------------------------------------------------------------------------- /libimage/platform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/platform.go -------------------------------------------------------------------------------- /libimage/platform/platform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/platform/platform.go -------------------------------------------------------------------------------- /libimage/platform/platform_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/platform/platform_test.go -------------------------------------------------------------------------------- /libimage/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/pull.go -------------------------------------------------------------------------------- /libimage/pull_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/pull_test.go -------------------------------------------------------------------------------- /libimage/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/push.go -------------------------------------------------------------------------------- /libimage/push_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/push_test.go -------------------------------------------------------------------------------- /libimage/remove_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/remove_test.go -------------------------------------------------------------------------------- /libimage/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/runtime.go -------------------------------------------------------------------------------- /libimage/runtime_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/runtime_test.go -------------------------------------------------------------------------------- /libimage/save.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/save.go -------------------------------------------------------------------------------- /libimage/save_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/save_test.go -------------------------------------------------------------------------------- /libimage/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/search.go -------------------------------------------------------------------------------- /libimage/testdata/buildkit-docker.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/testdata/buildkit-docker.tar -------------------------------------------------------------------------------- /libimage/testdata/buildkit-oci.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/testdata/buildkit-oci.tar -------------------------------------------------------------------------------- /libimage/testdata/containers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/testdata/containers.conf -------------------------------------------------------------------------------- /libimage/testdata/docker-name-only.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/testdata/docker-name-only.tar.xz -------------------------------------------------------------------------------- /libimage/testdata/docker-two-images.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/testdata/docker-two-images.tar.xz -------------------------------------------------------------------------------- /libimage/testdata/docker-two-names.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/testdata/docker-two-names.tar.xz -------------------------------------------------------------------------------- /libimage/testdata/docker-unnamed.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/testdata/docker-unnamed.tar.xz -------------------------------------------------------------------------------- /libimage/testdata/exported-container.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/testdata/exported-container.tar -------------------------------------------------------------------------------- /libimage/testdata/oci-name-only.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/testdata/oci-name-only.tar.gz -------------------------------------------------------------------------------- /libimage/testdata/oci-registry-name.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/testdata/oci-registry-name.tar.gz -------------------------------------------------------------------------------- /libimage/testdata/oci-unnamed.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/testdata/oci-unnamed.tar.gz -------------------------------------------------------------------------------- /libimage/testdata/registries.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/testdata/registries.conf -------------------------------------------------------------------------------- /libimage/testdata/scratch-dir-5pec!@L/version: -------------------------------------------------------------------------------- 1 | Directory Transport Version: 1.1 2 | -------------------------------------------------------------------------------- /libimage/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libimage/types.go -------------------------------------------------------------------------------- /libnetwork/cni/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/cni/README.md -------------------------------------------------------------------------------- /libnetwork/cni/cni_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/cni/cni_conversion.go -------------------------------------------------------------------------------- /libnetwork/cni/cni_exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/cni/cni_exec.go -------------------------------------------------------------------------------- /libnetwork/cni/cni_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/cni/cni_suite_test.go -------------------------------------------------------------------------------- /libnetwork/cni/cni_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/cni/cni_types.go -------------------------------------------------------------------------------- /libnetwork/cni/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/cni/config.go -------------------------------------------------------------------------------- /libnetwork/cni/config_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/cni/config_freebsd.go -------------------------------------------------------------------------------- /libnetwork/cni/config_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/cni/config_linux.go -------------------------------------------------------------------------------- /libnetwork/cni/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/cni/config_test.go -------------------------------------------------------------------------------- /libnetwork/cni/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/cni/network.go -------------------------------------------------------------------------------- /libnetwork/cni/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/cni/run.go -------------------------------------------------------------------------------- /libnetwork/cni/run_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/cni/run_freebsd.go -------------------------------------------------------------------------------- /libnetwork/cni/run_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/cni/run_linux.go -------------------------------------------------------------------------------- /libnetwork/cni/run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/cni/run_test.go -------------------------------------------------------------------------------- /libnetwork/etchosts/hosts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/etchosts/hosts.go -------------------------------------------------------------------------------- /libnetwork/etchosts/hosts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/etchosts/hosts_test.go -------------------------------------------------------------------------------- /libnetwork/etchosts/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/etchosts/ip.go -------------------------------------------------------------------------------- /libnetwork/etchosts/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/etchosts/util.go -------------------------------------------------------------------------------- /libnetwork/internal/rootlessnetns/netns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/internal/rootlessnetns/netns.go -------------------------------------------------------------------------------- /libnetwork/internal/util/bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/internal/util/bridge.go -------------------------------------------------------------------------------- /libnetwork/internal/util/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/internal/util/create.go -------------------------------------------------------------------------------- /libnetwork/internal/util/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/internal/util/interface.go -------------------------------------------------------------------------------- /libnetwork/internal/util/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/internal/util/interfaces.go -------------------------------------------------------------------------------- /libnetwork/internal/util/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/internal/util/ip.go -------------------------------------------------------------------------------- /libnetwork/internal/util/ip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/internal/util/ip_test.go -------------------------------------------------------------------------------- /libnetwork/internal/util/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/internal/util/parse.go -------------------------------------------------------------------------------- /libnetwork/internal/util/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/internal/util/parse_test.go -------------------------------------------------------------------------------- /libnetwork/internal/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/internal/util/util.go -------------------------------------------------------------------------------- /libnetwork/internal/util/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/internal/util/util_test.go -------------------------------------------------------------------------------- /libnetwork/internal/util/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/internal/util/validate.go -------------------------------------------------------------------------------- /libnetwork/netavark/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/netavark/config.go -------------------------------------------------------------------------------- /libnetwork/netavark/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/netavark/config_test.go -------------------------------------------------------------------------------- /libnetwork/netavark/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/netavark/const.go -------------------------------------------------------------------------------- /libnetwork/netavark/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/netavark/exec.go -------------------------------------------------------------------------------- /libnetwork/netavark/ipam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/netavark/ipam.go -------------------------------------------------------------------------------- /libnetwork/netavark/ipam_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/netavark/ipam_test.go -------------------------------------------------------------------------------- /libnetwork/netavark/netavark_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/netavark/netavark_suite_test.go -------------------------------------------------------------------------------- /libnetwork/netavark/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/netavark/network.go -------------------------------------------------------------------------------- /libnetwork/netavark/plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/netavark/plugin_test.go -------------------------------------------------------------------------------- /libnetwork/netavark/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/netavark/run.go -------------------------------------------------------------------------------- /libnetwork/netavark/run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/netavark/run_test.go -------------------------------------------------------------------------------- /libnetwork/netavark/testplugin/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/netavark/testplugin/main.go -------------------------------------------------------------------------------- /libnetwork/network/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/network/interface.go -------------------------------------------------------------------------------- /libnetwork/network/interface_cni.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/network/interface_cni.go -------------------------------------------------------------------------------- /libnetwork/network/interface_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/network/interface_freebsd.go -------------------------------------------------------------------------------- /libnetwork/network/interface_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/network/interface_linux.go -------------------------------------------------------------------------------- /libnetwork/pasta/pasta_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/pasta/pasta_linux.go -------------------------------------------------------------------------------- /libnetwork/pasta/pasta_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/pasta/pasta_linux_test.go -------------------------------------------------------------------------------- /libnetwork/pasta/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/pasta/types.go -------------------------------------------------------------------------------- /libnetwork/resolvconf/resolv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/resolvconf/resolv.go -------------------------------------------------------------------------------- /libnetwork/resolvconf/resolv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/resolvconf/resolv_test.go -------------------------------------------------------------------------------- /libnetwork/resolvconf/resolvconf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/resolvconf/resolvconf.go -------------------------------------------------------------------------------- /libnetwork/slirp4netns/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/slirp4netns/const.go -------------------------------------------------------------------------------- /libnetwork/slirp4netns/slirp4netns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/slirp4netns/slirp4netns.go -------------------------------------------------------------------------------- /libnetwork/types/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/types/const.go -------------------------------------------------------------------------------- /libnetwork/types/define.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/types/define.go -------------------------------------------------------------------------------- /libnetwork/types/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/types/network.go -------------------------------------------------------------------------------- /libnetwork/types/network_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/types/network_test.go -------------------------------------------------------------------------------- /libnetwork/util/filters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/util/filters.go -------------------------------------------------------------------------------- /libnetwork/util/filters_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/util/filters_test.go -------------------------------------------------------------------------------- /libnetwork/util/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/util/ip.go -------------------------------------------------------------------------------- /libnetwork/util/ip_calc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/util/ip_calc.go -------------------------------------------------------------------------------- /libnetwork/util/ip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/libnetwork/util/ip_test.go -------------------------------------------------------------------------------- /logos/bootc-logo-full-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/logos/bootc-logo-full-vert.png -------------------------------------------------------------------------------- /logos/buildah-logo-full-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/logos/buildah-logo-full-vert.png -------------------------------------------------------------------------------- /logos/containers-full-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/logos/containers-full-horiz.png -------------------------------------------------------------------------------- /logos/containers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/logos/containers.png -------------------------------------------------------------------------------- /logos/crun-logo-full-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/logos/crun-logo-full-vert.png -------------------------------------------------------------------------------- /logos/logo_circle_bootc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/logos/logo_circle_bootc.png -------------------------------------------------------------------------------- /logos/logo_circle_buildah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/logos/logo_circle_buildah.png -------------------------------------------------------------------------------- /logos/logo_circle_crun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/logos/logo_circle_crun.png -------------------------------------------------------------------------------- /logos/logo_circle_podman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/logos/logo_circle_podman.png -------------------------------------------------------------------------------- /logos/logo_circle_podmandesktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/logos/logo_circle_podmandesktop.png -------------------------------------------------------------------------------- /logos/logo_circle_ramalama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/logos/logo_circle_ramalama.png -------------------------------------------------------------------------------- /logos/logo_circle_skopeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/logos/logo_circle_skopeo.png -------------------------------------------------------------------------------- /logos/logo_circle_youki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/logos/logo_circle_youki.png -------------------------------------------------------------------------------- /logos/podman-desktop-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/logos/podman-desktop-logo.png -------------------------------------------------------------------------------- /logos/podman-logo-full-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/logos/podman-logo-full-vert.png -------------------------------------------------------------------------------- /logos/skopeo-logo-full-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/logos/skopeo-logo-full-vert.png -------------------------------------------------------------------------------- /logos/youki-logo-full-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/logos/youki-logo-full-vert.png -------------------------------------------------------------------------------- /pkg/apparmor/apparmor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/apparmor/apparmor.go -------------------------------------------------------------------------------- /pkg/apparmor/apparmor_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/apparmor/apparmor_linux.go -------------------------------------------------------------------------------- /pkg/apparmor/apparmor_linux_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/apparmor/apparmor_linux_template.go -------------------------------------------------------------------------------- /pkg/apparmor/apparmor_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/apparmor/apparmor_linux_test.go -------------------------------------------------------------------------------- /pkg/apparmor/apparmor_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/apparmor/apparmor_unsupported.go -------------------------------------------------------------------------------- /pkg/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/auth/auth.go -------------------------------------------------------------------------------- /pkg/auth/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/auth/auth_test.go -------------------------------------------------------------------------------- /pkg/auth/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/auth/cli.go -------------------------------------------------------------------------------- /pkg/auth/cli_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/auth/cli_test.go -------------------------------------------------------------------------------- /pkg/capabilities/capabilities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/capabilities/capabilities.go -------------------------------------------------------------------------------- /pkg/capabilities/capabilities_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/capabilities/capabilities_test.go -------------------------------------------------------------------------------- /pkg/cgroups/blkio_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/cgroups/blkio_linux.go -------------------------------------------------------------------------------- /pkg/cgroups/cgroups_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/cgroups/cgroups_linux.go -------------------------------------------------------------------------------- /pkg/cgroups/cgroups_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/cgroups/cgroups_linux_test.go -------------------------------------------------------------------------------- /pkg/cgroups/cgroups_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/cgroups/cgroups_unsupported.go -------------------------------------------------------------------------------- /pkg/cgroups/cpu_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/cgroups/cpu_linux.go -------------------------------------------------------------------------------- /pkg/cgroups/cpuset_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/cgroups/cpuset_linux.go -------------------------------------------------------------------------------- /pkg/cgroups/memory_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/cgroups/memory_linux.go -------------------------------------------------------------------------------- /pkg/cgroups/pids_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/cgroups/pids_linux.go -------------------------------------------------------------------------------- /pkg/cgroups/systemd_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/cgroups/systemd_linux.go -------------------------------------------------------------------------------- /pkg/cgroups/testdata/cgroup.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/cgroups/testdata/cgroup.other: -------------------------------------------------------------------------------- 1 | 0::/other 2 | -------------------------------------------------------------------------------- /pkg/cgroups/testdata/cgroup.root: -------------------------------------------------------------------------------- 1 | 0::/ 2 | -------------------------------------------------------------------------------- /pkg/cgroups/utils_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/cgroups/utils_linux.go -------------------------------------------------------------------------------- /pkg/cgroups/utils_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/cgroups/utils_linux_test.go -------------------------------------------------------------------------------- /pkg/cgroupv2/cgroups_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/cgroupv2/cgroups_linux.go -------------------------------------------------------------------------------- /pkg/cgroupv2/cgroups_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/cgroupv2/cgroups_unsupported.go -------------------------------------------------------------------------------- /pkg/chown/chown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/chown/chown.go -------------------------------------------------------------------------------- /pkg/chown/chown_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/chown/chown_test.go -------------------------------------------------------------------------------- /pkg/chown/chown_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/chown/chown_unix.go -------------------------------------------------------------------------------- /pkg/chown/chown_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/chown/chown_windows.go -------------------------------------------------------------------------------- /pkg/completion/completion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/completion/completion.go -------------------------------------------------------------------------------- /pkg/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/config.go -------------------------------------------------------------------------------- /pkg/config/config_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/config_bsd.go -------------------------------------------------------------------------------- /pkg/config/config_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/config_darwin.go -------------------------------------------------------------------------------- /pkg/config/config_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/config_linux.go -------------------------------------------------------------------------------- /pkg/config/config_local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/config_local.go -------------------------------------------------------------------------------- /pkg/config/config_local_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/config_local_test.go -------------------------------------------------------------------------------- /pkg/config/config_remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/config_remote.go -------------------------------------------------------------------------------- /pkg/config/config_remote_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/config_remote_test.go -------------------------------------------------------------------------------- /pkg/config/config_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/config_suite_test.go -------------------------------------------------------------------------------- /pkg/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/config_test.go -------------------------------------------------------------------------------- /pkg/config/config_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/config_unix.go -------------------------------------------------------------------------------- /pkg/config/config_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/config_unsupported.go -------------------------------------------------------------------------------- /pkg/config/config_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/config_windows.go -------------------------------------------------------------------------------- /pkg/config/connections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/connections.go -------------------------------------------------------------------------------- /pkg/config/connections_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/connections_test.go -------------------------------------------------------------------------------- /pkg/config/containers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/containers.conf -------------------------------------------------------------------------------- /pkg/config/containers.conf-freebsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/containers.conf-freebsd -------------------------------------------------------------------------------- /pkg/config/db_backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/db_backend.go -------------------------------------------------------------------------------- /pkg/config/db_backend_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/db_backend_test.go -------------------------------------------------------------------------------- /pkg/config/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/default.go -------------------------------------------------------------------------------- /pkg/config/default_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/default_bsd.go -------------------------------------------------------------------------------- /pkg/config/default_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/default_common.go -------------------------------------------------------------------------------- /pkg/config/default_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/default_darwin.go -------------------------------------------------------------------------------- /pkg/config/default_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/default_linux.go -------------------------------------------------------------------------------- /pkg/config/default_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/default_linux_test.go -------------------------------------------------------------------------------- /pkg/config/default_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/default_test.go -------------------------------------------------------------------------------- /pkg/config/default_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/default_unsupported.go -------------------------------------------------------------------------------- /pkg/config/default_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/default_windows.go -------------------------------------------------------------------------------- /pkg/config/default_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/default_windows_test.go -------------------------------------------------------------------------------- /pkg/config/modules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/modules.go -------------------------------------------------------------------------------- /pkg/config/modules_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/modules_test.go -------------------------------------------------------------------------------- /pkg/config/new.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/new.go -------------------------------------------------------------------------------- /pkg/config/nosystemd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/nosystemd.go -------------------------------------------------------------------------------- /pkg/config/pod_exit_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/pod_exit_policy.go -------------------------------------------------------------------------------- /pkg/config/pod_exit_policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/pod_exit_policy_test.go -------------------------------------------------------------------------------- /pkg/config/pull_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/pull_policy.go -------------------------------------------------------------------------------- /pkg/config/search_order_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/search_order_test.go -------------------------------------------------------------------------------- /pkg/config/systemd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/systemd.go -------------------------------------------------------------------------------- /pkg/config/testdata/containers_broken.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/config/testdata/containers_broken.conf -------------------------------------------------------------------------------- /pkg/config/testdata/modules/etc/containers/containers.conf.modules/first.conf: -------------------------------------------------------------------------------- 1 | [containers] 2 | annotations=["etc first"] 3 | -------------------------------------------------------------------------------- /pkg/config/testdata/modules/etc/containers/containers.conf.modules/second.conf: -------------------------------------------------------------------------------- 1 | [containers] 2 | volumes=["etc second"] 3 | -------------------------------------------------------------------------------- /pkg/config/testdata/modules/home/.config/containers/containers.conf.modules/first.conf: -------------------------------------------------------------------------------- 1 | [containers] 2 | annotations=["home first"] 3 | -------------------------------------------------------------------------------- /pkg/config/testdata/modules/override.conf: -------------------------------------------------------------------------------- 1 | [containers] 2 | env=["override conf always wins"] 3 | -------------------------------------------------------------------------------- /pkg/config/testdata/modules/usr/share/containers/containers.conf.modules/fifth.conf: -------------------------------------------------------------------------------- 1 | [containers] 2 | env=["usr five"] 3 | -------------------------------------------------------------------------------- /pkg/config/testdata/modules/usr/share/containers/containers.conf.modules/first.conf: -------------------------------------------------------------------------------- 1 | [containers] 2 | annotations=["usr first"] 3 | -------------------------------------------------------------------------------- /pkg/config/testdata/modules/usr/share/containers/containers.conf.modules/second.conf: -------------------------------------------------------------------------------- 1 | [containers] 2 | volumes=["usr second"] 3 | -------------------------------------------------------------------------------- /pkg/config/testdata/modules/usr/share/containers/containers.conf.modules/sub/first.conf: -------------------------------------------------------------------------------- 1 | [containers] 2 | annotations=["usr sub first"] 3 | -------------------------------------------------------------------------------- /pkg/configmaps/configmaps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/configmaps/configmaps.go -------------------------------------------------------------------------------- /pkg/configmaps/configmaps_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/configmaps/configmaps_test.go -------------------------------------------------------------------------------- /pkg/configmaps/configmapsdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/configmaps/configmapsdb.go -------------------------------------------------------------------------------- /pkg/configmaps/filedriver/filedriver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/configmaps/filedriver/filedriver.go -------------------------------------------------------------------------------- /pkg/crutils/checkpoint_restore_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/crutils/checkpoint_restore_utils.go -------------------------------------------------------------------------------- /pkg/detach/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/detach/copy.go -------------------------------------------------------------------------------- /pkg/download/download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/download/download.go -------------------------------------------------------------------------------- /pkg/filters/filters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/filters/filters.go -------------------------------------------------------------------------------- /pkg/filters/filters_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/filters/filters_test.go -------------------------------------------------------------------------------- /pkg/flag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/flag/flag.go -------------------------------------------------------------------------------- /pkg/flag/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/flag/flag_test.go -------------------------------------------------------------------------------- /pkg/formats/formats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/formats/formats.go -------------------------------------------------------------------------------- /pkg/formats/formats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/formats/formats_test.go -------------------------------------------------------------------------------- /pkg/formats/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/formats/templates.go -------------------------------------------------------------------------------- /pkg/hooks/0.1.0/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/hooks/0.1.0/hook.go -------------------------------------------------------------------------------- /pkg/hooks/0.1.0/hook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/hooks/0.1.0/hook_test.go -------------------------------------------------------------------------------- /pkg/hooks/1.0.0/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/hooks/1.0.0/hook.go -------------------------------------------------------------------------------- /pkg/hooks/1.0.0/hook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/hooks/1.0.0/hook_test.go -------------------------------------------------------------------------------- /pkg/hooks/1.0.0/when.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/hooks/1.0.0/when.go -------------------------------------------------------------------------------- /pkg/hooks/1.0.0/when_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/hooks/1.0.0/when_test.go -------------------------------------------------------------------------------- /pkg/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/hooks/README.md -------------------------------------------------------------------------------- /pkg/hooks/docs/.gitignore: -------------------------------------------------------------------------------- 1 | *.5 2 | -------------------------------------------------------------------------------- /pkg/hooks/docs/oci-hooks.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/hooks/docs/oci-hooks.5.md -------------------------------------------------------------------------------- /pkg/hooks/exec/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/hooks/exec/exec.go -------------------------------------------------------------------------------- /pkg/hooks/exec/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/hooks/exec/exec_test.go -------------------------------------------------------------------------------- /pkg/hooks/exec/runtimeconfigfilter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/hooks/exec/runtimeconfigfilter.go -------------------------------------------------------------------------------- /pkg/hooks/exec/runtimeconfigfilter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/hooks/exec/runtimeconfigfilter_test.go -------------------------------------------------------------------------------- /pkg/hooks/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/hooks/hooks.go -------------------------------------------------------------------------------- /pkg/hooks/hooks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/hooks/hooks_test.go -------------------------------------------------------------------------------- /pkg/hooks/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/hooks/monitor.go -------------------------------------------------------------------------------- /pkg/hooks/monitor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/hooks/monitor_test.go -------------------------------------------------------------------------------- /pkg/hooks/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/hooks/read.go -------------------------------------------------------------------------------- /pkg/hooks/read_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/hooks/read_test.go -------------------------------------------------------------------------------- /pkg/hooks/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/hooks/version.go -------------------------------------------------------------------------------- /pkg/machine/machine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/machine/machine.go -------------------------------------------------------------------------------- /pkg/machine/machine_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/machine/machine_suite_test.go -------------------------------------------------------------------------------- /pkg/machine/machine_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/machine/machine_test.go -------------------------------------------------------------------------------- /pkg/machine/testdata/applehv-machine: -------------------------------------------------------------------------------- 1 | applehv 2 | -------------------------------------------------------------------------------- /pkg/machine/testdata/empty-machine: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/machine/testdata/hyperv-machine: -------------------------------------------------------------------------------- 1 | hyperv 2 | -------------------------------------------------------------------------------- /pkg/machine/testdata/qemu-machine: -------------------------------------------------------------------------------- 1 | qemu 2 | -------------------------------------------------------------------------------- /pkg/machine/testdata/wsl-machine: -------------------------------------------------------------------------------- 1 | wsl 2 | -------------------------------------------------------------------------------- /pkg/manifests/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/manifests/errors.go -------------------------------------------------------------------------------- /pkg/manifests/manifests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/manifests/manifests.go -------------------------------------------------------------------------------- /pkg/manifests/manifests_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/manifests/manifests_test.go -------------------------------------------------------------------------------- /pkg/manifests/testdata/artifacts/blobs-only/blobs/sha256/44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/manifests/testdata/artifacts/blobs-only/oci-layout: -------------------------------------------------------------------------------- 1 | { 2 | "imageLayoutVersion": "1.0.0" 3 | } 4 | -------------------------------------------------------------------------------- /pkg/manifests/testdata/artifacts/config-only/blobs/sha256/44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/manifests/testdata/artifacts/config-only/oci-layout: -------------------------------------------------------------------------------- 1 | { 2 | "imageLayoutVersion": "1.0.0" 3 | } 4 | -------------------------------------------------------------------------------- /pkg/manifests/testdata/artifacts/index/blobs/sha256/e6304a473c65ecd0ccffbd2f5925a8f51c44b11f59b66cfcc055e4bb911b8fa0: -------------------------------------------------------------------------------- 1 | c`# -------------------------------------------------------------------------------- /pkg/manifests/testdata/artifacts/index/oci-layout: -------------------------------------------------------------------------------- 1 | { 2 | "imageLayoutVersion": "1.0.0" 3 | } 4 | -------------------------------------------------------------------------------- /pkg/manifests/testdata/artifacts/no-blobs/blobs/sha256/44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pkg/manifests/testdata/artifacts/no-blobs/oci-layout: -------------------------------------------------------------------------------- 1 | { 2 | "imageLayoutVersion": "1.0.0" 3 | } 4 | -------------------------------------------------------------------------------- /pkg/manifests/testdata/fedora.index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/manifests/testdata/fedora.index.json -------------------------------------------------------------------------------- /pkg/manifests/testdata/fedora.list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/manifests/testdata/fedora.list.json -------------------------------------------------------------------------------- /pkg/manifests/testdata/fedora.schema2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/manifests/testdata/fedora.schema2.json -------------------------------------------------------------------------------- /pkg/netns/netns_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/netns/netns_linux.go -------------------------------------------------------------------------------- /pkg/parse/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/parse/parse.go -------------------------------------------------------------------------------- /pkg/parse/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/parse/parse_test.go -------------------------------------------------------------------------------- /pkg/parse/parse_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/parse/parse_unix.go -------------------------------------------------------------------------------- /pkg/password/password_supported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/password/password_supported.go -------------------------------------------------------------------------------- /pkg/password/password_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/password/password_windows.go -------------------------------------------------------------------------------- /pkg/report/camelcase/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/report/camelcase/LICENSE.md -------------------------------------------------------------------------------- /pkg/report/camelcase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/report/camelcase/README.md -------------------------------------------------------------------------------- /pkg/report/camelcase/camelcase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/report/camelcase/camelcase.go -------------------------------------------------------------------------------- /pkg/report/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/report/doc.go -------------------------------------------------------------------------------- /pkg/report/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/report/formatter.go -------------------------------------------------------------------------------- /pkg/report/formatter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/report/formatter_test.go -------------------------------------------------------------------------------- /pkg/report/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/report/template.go -------------------------------------------------------------------------------- /pkg/report/template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/report/template_test.go -------------------------------------------------------------------------------- /pkg/report/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/report/validate.go -------------------------------------------------------------------------------- /pkg/report/validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/report/validate_test.go -------------------------------------------------------------------------------- /pkg/report/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/report/writer.go -------------------------------------------------------------------------------- /pkg/report/writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/report/writer_test.go -------------------------------------------------------------------------------- /pkg/resize/resize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/resize/resize.go -------------------------------------------------------------------------------- /pkg/retry/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/retry/retry.go -------------------------------------------------------------------------------- /pkg/retry/retry_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/retry/retry_linux.go -------------------------------------------------------------------------------- /pkg/retry/retry_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/retry/retry_unsupported.go -------------------------------------------------------------------------------- /pkg/rootlessport/rootlessport_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/rootlessport/rootlessport_linux.go -------------------------------------------------------------------------------- /pkg/seccomp/conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/seccomp/conversion.go -------------------------------------------------------------------------------- /pkg/seccomp/conversion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/seccomp/conversion_test.go -------------------------------------------------------------------------------- /pkg/seccomp/default_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/seccomp/default_linux.go -------------------------------------------------------------------------------- /pkg/seccomp/errno_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/seccomp/errno_list.go -------------------------------------------------------------------------------- /pkg/seccomp/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/seccomp/filter.go -------------------------------------------------------------------------------- /pkg/seccomp/filter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/seccomp/filter_test.go -------------------------------------------------------------------------------- /pkg/seccomp/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/seccomp/fixtures/example.json -------------------------------------------------------------------------------- /pkg/seccomp/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/seccomp/generate.go -------------------------------------------------------------------------------- /pkg/seccomp/seccomp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/seccomp/seccomp.json -------------------------------------------------------------------------------- /pkg/seccomp/seccomp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/seccomp/seccomp_linux.go -------------------------------------------------------------------------------- /pkg/seccomp/seccomp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/seccomp/seccomp_test.go -------------------------------------------------------------------------------- /pkg/seccomp/seccomp_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/seccomp/seccomp_unsupported.go -------------------------------------------------------------------------------- /pkg/seccomp/supported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/seccomp/supported.go -------------------------------------------------------------------------------- /pkg/seccomp/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/seccomp/types.go -------------------------------------------------------------------------------- /pkg/seccomp/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/seccomp/validate.go -------------------------------------------------------------------------------- /pkg/seccomp/validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/seccomp/validate_test.go -------------------------------------------------------------------------------- /pkg/secrets/define/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/secrets/define/secrets.go -------------------------------------------------------------------------------- /pkg/secrets/filedriver/filedriver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/secrets/filedriver/filedriver.go -------------------------------------------------------------------------------- /pkg/secrets/filedriver/filedriver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/secrets/filedriver/filedriver_test.go -------------------------------------------------------------------------------- /pkg/secrets/passdriver/passdriver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/secrets/passdriver/passdriver.go -------------------------------------------------------------------------------- /pkg/secrets/passdriver/passdriver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/secrets/passdriver/passdriver_test.go -------------------------------------------------------------------------------- /pkg/secrets/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/secrets/secrets.go -------------------------------------------------------------------------------- /pkg/secrets/secrets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/secrets/secrets_test.go -------------------------------------------------------------------------------- /pkg/secrets/secretsdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/secrets/secretsdb.go -------------------------------------------------------------------------------- /pkg/secrets/shelldriver/shelldriver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/secrets/shelldriver/shelldriver.go -------------------------------------------------------------------------------- /pkg/servicereaper/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/servicereaper/service.go -------------------------------------------------------------------------------- /pkg/signal/signal_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/signal/signal_common.go -------------------------------------------------------------------------------- /pkg/signal/signal_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/signal/signal_linux.go -------------------------------------------------------------------------------- /pkg/signal/signal_linux_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/signal/signal_linux_mipsx.go -------------------------------------------------------------------------------- /pkg/signal/signal_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/signal/signal_unsupported.go -------------------------------------------------------------------------------- /pkg/ssh/connection_golang.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/ssh/connection_golang.go -------------------------------------------------------------------------------- /pkg/ssh/connection_native.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/ssh/connection_native.go -------------------------------------------------------------------------------- /pkg/ssh/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/ssh/ssh.go -------------------------------------------------------------------------------- /pkg/ssh/ssh_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/ssh/ssh_test.go -------------------------------------------------------------------------------- /pkg/ssh/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/ssh/types.go -------------------------------------------------------------------------------- /pkg/ssh/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/ssh/utils.go -------------------------------------------------------------------------------- /pkg/ssh/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/ssh/utils_test.go -------------------------------------------------------------------------------- /pkg/strongunits/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/strongunits/config.go -------------------------------------------------------------------------------- /pkg/strongunits/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/strongunits/config_test.go -------------------------------------------------------------------------------- /pkg/subscriptions/mounts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/subscriptions/mounts.conf -------------------------------------------------------------------------------- /pkg/subscriptions/subscriptions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/subscriptions/subscriptions.go -------------------------------------------------------------------------------- /pkg/subscriptions/subscriptions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/subscriptions/subscriptions_test.go -------------------------------------------------------------------------------- /pkg/supplemented/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/supplemented/errors.go -------------------------------------------------------------------------------- /pkg/supplemented/supplemented.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/supplemented/supplemented.go -------------------------------------------------------------------------------- /pkg/supplemented/supplemented_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/supplemented/supplemented_test.go -------------------------------------------------------------------------------- /pkg/sysctl/sysctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/sysctl/sysctl.go -------------------------------------------------------------------------------- /pkg/sysctl/sysctl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/sysctl/sysctl_test.go -------------------------------------------------------------------------------- /pkg/sysinfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/sysinfo/README.md -------------------------------------------------------------------------------- /pkg/sysinfo/numcpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/sysinfo/numcpu.go -------------------------------------------------------------------------------- /pkg/sysinfo/numcpu_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/sysinfo/numcpu_linux.go -------------------------------------------------------------------------------- /pkg/sysinfo/numcpu_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/sysinfo/numcpu_other.go -------------------------------------------------------------------------------- /pkg/sysinfo/numcpu_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/sysinfo/numcpu_windows.go -------------------------------------------------------------------------------- /pkg/sysinfo/sysinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/sysinfo/sysinfo.go -------------------------------------------------------------------------------- /pkg/sysinfo/sysinfo_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/sysinfo/sysinfo_linux.go -------------------------------------------------------------------------------- /pkg/sysinfo/sysinfo_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/sysinfo/sysinfo_linux_test.go -------------------------------------------------------------------------------- /pkg/sysinfo/sysinfo_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/sysinfo/sysinfo_solaris.go -------------------------------------------------------------------------------- /pkg/sysinfo/sysinfo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/sysinfo/sysinfo_test.go -------------------------------------------------------------------------------- /pkg/sysinfo/sysinfo_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/sysinfo/sysinfo_unix.go -------------------------------------------------------------------------------- /pkg/sysinfo/sysinfo_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/sysinfo/sysinfo_windows.go -------------------------------------------------------------------------------- /pkg/systemd/systemd_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/systemd/systemd_linux.go -------------------------------------------------------------------------------- /pkg/systemd/systemd_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/systemd/systemd_unsupported.go -------------------------------------------------------------------------------- /pkg/timetype/timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/timetype/timestamp.go -------------------------------------------------------------------------------- /pkg/timetype/timestamp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/timetype/timestamp_test.go -------------------------------------------------------------------------------- /pkg/timezone/timezone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/timezone/timezone.go -------------------------------------------------------------------------------- /pkg/timezone/timezone_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/timezone/timezone_linux.go -------------------------------------------------------------------------------- /pkg/timezone/timezone_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/timezone/timezone_unix.go -------------------------------------------------------------------------------- /pkg/timezone/timezone_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/timezone/timezone_windows.go -------------------------------------------------------------------------------- /pkg/umask/umask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/umask/umask.go -------------------------------------------------------------------------------- /pkg/umask/umask_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/umask/umask_test.go -------------------------------------------------------------------------------- /pkg/umask/umask_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/umask/umask_unix.go -------------------------------------------------------------------------------- /pkg/umask/umask_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/umask/umask_unsupported.go -------------------------------------------------------------------------------- /pkg/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/util/util.go -------------------------------------------------------------------------------- /pkg/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/pkg/version/version.go -------------------------------------------------------------------------------- /rpm/containers-common.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/rpm/containers-common.spec -------------------------------------------------------------------------------- /rpm/update-config-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/rpm/update-config-files.sh -------------------------------------------------------------------------------- /rpm/update-lib-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/rpm/update-lib-versions.sh -------------------------------------------------------------------------------- /tests/policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/tests/policy.json -------------------------------------------------------------------------------- /tests/registries.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/tests/registries.conf -------------------------------------------------------------------------------- /tools/rebuild_quay_ctr_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/tools/rebuild_quay_ctr_images.sh -------------------------------------------------------------------------------- /tools/validate_seccomp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/tools/validate_seccomp.sh -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/dario.cat/mergo/.deepsource.toml -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/dario.cat/mergo/.gitignore -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/dario.cat/mergo/.travis.yml -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/dario.cat/mergo/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/dario.cat/mergo/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/FUNDING.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/dario.cat/mergo/FUNDING.json -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/dario.cat/mergo/LICENSE -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/dario.cat/mergo/README.md -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/dario.cat/mergo/SECURITY.md -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/dario.cat/mergo/doc.go -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/dario.cat/mergo/map.go -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/dario.cat/mergo/merge.go -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/mergo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/dario.cat/mergo/mergo.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/BurntSushi/toml/COPYING -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/BurntSushi/toml/doc.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/BurntSushi/toml/error.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/BurntSushi/toml/lex.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/BurntSushi/toml/meta.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/BurntSushi/toml/parse.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/v3/.gitignore: -------------------------------------------------------------------------------- 1 | _fuzz/ -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @microsoft/containerplat 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/ea.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/Microsoft/go-winio/ea.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/sd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/Microsoft/go-winio/sd.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @microsoft/containerplat -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/hcs/doc.go: -------------------------------------------------------------------------------- 1 | package hcs 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/hcserror/doc.go: -------------------------------------------------------------------------------- 1 | package hcserror 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/hns/doc.go: -------------------------------------------------------------------------------- 1 | package hns 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/interop/doc.go: -------------------------------------------------------------------------------- 1 | package interop 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/safefile/do.go: -------------------------------------------------------------------------------- 1 | package safefile 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/vmcompute/doc.go: -------------------------------------------------------------------------------- 1 | package vmcompute 2 | -------------------------------------------------------------------------------- /vendor/github.com/VividCortex/ewma/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .*.sw? 3 | /coverage.txt -------------------------------------------------------------------------------- /vendor/github.com/VividCortex/ewma/.whitesource: -------------------------------------------------------------------------------- 1 | { 2 | "settingsInheritedFrom": "VividCortex/whitesource-config@master" 3 | } -------------------------------------------------------------------------------- /vendor/github.com/VividCortex/ewma/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/VividCortex/ewma/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/VividCortex/ewma/ewma.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/VividCortex/ewma/ewma.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/* 2 | -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/chzyer/readline/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/chzyer/readline/runes.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/std.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/chzyer/readline/std.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/chzyer/readline/term.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/chzyer/readline/utils.go -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/vim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/chzyer/readline/vim.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/containerd/log/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/containerd/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/containerd/log/README.md -------------------------------------------------------------------------------- /vendor/github.com/containerd/platforms/.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf -------------------------------------------------------------------------------- /vendor/github.com/containerd/typeurl/v2/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/github.com/containers/ocicrypt/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /vendor/github.com/containers/storage/.dockerignore: -------------------------------------------------------------------------------- 1 | bundles 2 | .gopath 3 | vendor/pkg 4 | -------------------------------------------------------------------------------- /vendor/github.com/containers/storage/VERSION: -------------------------------------------------------------------------------- 1 | 1.59.1 2 | -------------------------------------------------------------------------------- /vendor/github.com/containers/storage/drivers/btrfs/dummy_unsupported.go: -------------------------------------------------------------------------------- 1 | //go:build !linux || !cgo 2 | 3 | package btrfs 4 | -------------------------------------------------------------------------------- /vendor/github.com/containers/storage/drivers/zfs/zfs_unsupported.go: -------------------------------------------------------------------------------- 1 | //go:build !linux && !freebsd 2 | 3 | package zfs 4 | -------------------------------------------------------------------------------- /vendor/github.com/containers/storage/pkg/loopback/loopback_unsupported.go: -------------------------------------------------------------------------------- 1 | package loopback 2 | -------------------------------------------------------------------------------- /vendor/github.com/cyphar/filepath-securejoin/VERSION: -------------------------------------------------------------------------------- 1 | 0.4.1 2 | -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/distribution/reference/.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf 2 | -------------------------------------------------------------------------------- /vendor/github.com/distribution/reference/.gitignore: -------------------------------------------------------------------------------- 1 | # Cover profiles 2 | *.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/docker/docker/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/docker/docker/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/docker/docker/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/sockets/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/docker/go-units/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/docker/go-units/size.go -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/staticcheck.conf: -------------------------------------------------------------------------------- 1 | checks = ['all', 2 | '-U1000', # Don't complain about unused functions. 3 | ] 4 | -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/go-logr/logr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/go-logr/logr/SECURITY.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/go-logr/logr/context.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/logr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/go-logr/logr/logr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/slogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/go-logr/logr/slogr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/go-logr/stdr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/go-logr/stdr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/stdr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/go-logr/stdr/stdr.go -------------------------------------------------------------------------------- /vendor/github.com/go-task/slim-sprig/v3/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-task/slim-sprig/v3/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | /.glide 3 | -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/v5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/godbus/dbus/v5/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/v5/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/godbus/dbus/v5/auth.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/v5/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/godbus/dbus/v5/call.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/v5/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/godbus/dbus/v5/conn.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/v5/dbus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/godbus/dbus/v5/dbus.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/v5/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/godbus/dbus/v5/doc.go -------------------------------------------------------------------------------- /vendor/github.com/godbus/dbus/v5/sig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/godbus/dbus/v5/sig.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/google/go-cmp/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/google/pprof/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/google/pprof/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/google/pprof/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/google/uuid/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/google/uuid/node_js.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/google/uuid/null.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/gorilla/mux/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/gorilla/mux/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/gorilla/mux/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/gorilla/mux/README.md -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/gorilla/mux/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/gorilla/mux/mux.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/gorilla/mux/regexp.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/gorilla/mux/route.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/copier/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | ttt/ 3 | -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/copier/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/jinzhu/copier/License -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/gen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd s2/cmd/_s2sx/ || exit 1 4 | go generate . 5 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/huff0/.gitignore: -------------------------------------------------------------------------------- 1 | /huff0-fuzz.zip 2 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/s2sx.mod: -------------------------------------------------------------------------------- 1 | module github.com/klauspost/compress 2 | 3 | go 1.22 4 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/s2sx.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/kr/fs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/kr/fs/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/kr/fs/Readme: -------------------------------------------------------------------------------- 1 | Filesystem Package 2 | 3 | http://godoc.org/github.com/kr/fs 4 | -------------------------------------------------------------------------------- /vendor/github.com/kr/fs/filesystem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/kr/fs/filesystem.go -------------------------------------------------------------------------------- /vendor/github.com/kr/fs/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/kr/fs/walk.go -------------------------------------------------------------------------------- /vendor/github.com/manifoldco/promptui/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | all-cover.txt 3 | bin/ 4 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/miekg/pkcs11/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/miekg/pkcs11/README.md -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/miekg/pkcs11/error.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/hsm.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/miekg/pkcs11/hsm.db -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/miekg/pkcs11/params.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/pkcs11.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/miekg/pkcs11/pkcs11.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/pkcs11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/miekg/pkcs11/pkcs11.h -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/pkcs11f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/miekg/pkcs11/pkcs11f.h -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/pkcs11t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/miekg/pkcs11/pkcs11t.h -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/softhsm.conf: -------------------------------------------------------------------------------- 1 | 0:hsm.db 2 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/miekg/pkcs11/types.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/vendor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/miekg/pkcs11/vendor.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/zconst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/miekg/pkcs11/zconst.go -------------------------------------------------------------------------------- /vendor/github.com/mistifyio/go-zfs/v3/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | go-zfs.test 3 | .vagrant 4 | 5 | # added by lint-install 6 | out/ 7 | -------------------------------------------------------------------------------- /vendor/github.com/moby/sys/user/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/moby/sys/user/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/moby/sys/user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/moby/sys/user/user.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/onsi/ginkgo/v2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/v2/types/version.go: -------------------------------------------------------------------------------- 1 | package types 2 | 3 | const VERSION = "2.25.1" 4 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.test 3 | . 4 | .idea 5 | gomega.iml 6 | TODO 7 | .vscode -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/onsi/gomega/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/onsi/gomega/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/errors/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/errors/go113.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/sftp/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/sftp/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/sftp/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/sftp/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/sftp/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/allocator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/sftp/allocator.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/attrs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/sftp/attrs.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/attrs_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/sftp/attrs_unix.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/sftp/client.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/sftp/conn.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/sftp/debug.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/sftp/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/ls_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/sftp/ls_plan9.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/ls_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/sftp/ls_stub.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/ls_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/sftp/ls_unix.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/sftp/match.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/sftp/packet.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/sftp/pool.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/sftp/release.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/sftp/request.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/sftp/server.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/sftp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/sftp/sftp.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/sftp/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/pkg/sftp/stat.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/rivo/uniseg/README.md -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/rivo/uniseg/doc.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/rivo/uniseg/line.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/step.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/rivo/uniseg/step.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/rivo/uniseg/width.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/word.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/rivo/uniseg/word.go -------------------------------------------------------------------------------- /vendor/github.com/seccomp/libseccomp-golang/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | *.orig 4 | tags 5 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/smallstep/pkcs7/ber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/smallstep/pkcs7/ber.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/cobra/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/cobra/CONDUCT.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/cobra/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/cobra/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/cobra/command.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/pflag/errors.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/pflag/func.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/pflag/text.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/pflag/time.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/stefanberger/go-pkcs11uri/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | pkcs11uri 3 | -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/ulikunitz/xz/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/ulikunitz/xz/README.md -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/ulikunitz/xz/TODO.md -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/bits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/ulikunitz/xz/bits.go -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/crc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/ulikunitz/xz/crc.go -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/ulikunitz/xz/format.go -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/fox.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/ulikunitz/xz/fox.xz -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/make-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/ulikunitz/xz/make-docs -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/ulikunitz/xz/reader.go -------------------------------------------------------------------------------- /vendor/github.com/ulikunitz/xz/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/github.com/ulikunitz/xz/writer.go -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .vscode/ 3 | -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## 1.0.0 (2018-03-15) 4 | 5 | Initial release tagging -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.etcd.io/bbolt/.gitignore -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/.go-version: -------------------------------------------------------------------------------- 1 | 1.23.12 2 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.etcd.io/bbolt/LICENSE -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.etcd.io/bbolt/Makefile -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.etcd.io/bbolt/OWNERS -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.etcd.io/bbolt/README.md -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.etcd.io/bbolt/bolt_aix.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_android.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.etcd.io/bbolt/bolt_android.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.etcd.io/bbolt/bolt_linux.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.etcd.io/bbolt/bolt_openbsd.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.etcd.io/bbolt/bolt_solaris.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.etcd.io/bbolt/bolt_unix.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.etcd.io/bbolt/bolt_windows.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/boltsync_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.etcd.io/bbolt/boltsync_unix.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.etcd.io/bbolt/bucket.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/compact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.etcd.io/bbolt/compact.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/cursor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.etcd.io/bbolt/cursor.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.etcd.io/bbolt/db.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.etcd.io/bbolt/doc.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.etcd.io/bbolt/errors.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.etcd.io/bbolt/errors/errors.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.etcd.io/bbolt/logger.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/mlock_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.etcd.io/bbolt/mlock_unix.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/mlock_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.etcd.io/bbolt/mlock_windows.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.etcd.io/bbolt/node.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.etcd.io/bbolt/tx.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/tx_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.etcd.io/bbolt/tx_check.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.opencensus.io/.gitignore -------------------------------------------------------------------------------- /vendor/go.opencensus.io/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/go.opencensus.io/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.opencensus.io/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/go.opencensus.io/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.opencensus.io/LICENSE -------------------------------------------------------------------------------- /vendor/go.opencensus.io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.opencensus.io/Makefile -------------------------------------------------------------------------------- /vendor/go.opencensus.io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.opencensus.io/README.md -------------------------------------------------------------------------------- /vendor/go.opencensus.io/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.opencensus.io/appveyor.yml -------------------------------------------------------------------------------- /vendor/go.opencensus.io/opencensus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.opencensus.io/opencensus.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.opencensus.io/trace/config.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.opencensus.io/trace/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.opencensus.io/trace/export.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/lrumap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.opencensus.io/trace/lrumap.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.opencensus.io/trace/trace.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.opentelemetry.io/otel/LICENSE -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.opentelemetry.io/otel/Makefile -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.opentelemetry.io/otel/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/requirements.txt: -------------------------------------------------------------------------------- 1 | codespell==2.4.1 2 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.opentelemetry.io/otel/trace.go -------------------------------------------------------------------------------- /vendor/go.uber.org/automaxprocs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.uber.org/automaxprocs/LICENSE -------------------------------------------------------------------------------- /vendor/go.uber.org/automaxprocs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.uber.org/automaxprocs/Makefile -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.yaml.in/yaml/v2/.travis.yml -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.yaml.in/yaml/v2/LICENSE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.yaml.in/yaml/v2/NOTICE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.yaml.in/yaml/v2/README.md -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.yaml.in/yaml/v2/apic.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.yaml.in/yaml/v2/decode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.yaml.in/yaml/v2/emitterc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.yaml.in/yaml/v2/encode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.yaml.in/yaml/v2/parserc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.yaml.in/yaml/v2/readerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.yaml.in/yaml/v2/resolve.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.yaml.in/yaml/v2/scannerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.yaml.in/yaml/v2/sorter.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.yaml.in/yaml/v2/writerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.yaml.in/yaml/v2/yaml.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/go.yaml.in/yaml/v2/yamlh.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ocsp/ocsp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/crypto/ocsp/ocsp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/crypto/sha3/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/sha3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/crypto/sha3/sha3.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/shake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/crypto/sha3/shake.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/crypto/ssh/buffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/crypto/ssh/certs.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/crypto/ssh/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/crypto/ssh/client.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/crypto/ssh/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mlkem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/crypto/ssh/mlkem.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/crypto/ssh/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/tcpip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/crypto/ssh/tcpip.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/html/iter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ascii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/http2/ascii.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/http2/config.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/http2/timer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/idna/go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/byteorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/cpu/byteorder.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/cpu/cpu_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gc_x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/cpu/cpu_gc_x86.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/cpu/cpu_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/cpu/cpu_mipsx.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/cpu/cpu_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/cpu/cpu_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/cpu/cpu_wasm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/cpu/cpu_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/cpu/cpu_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/cpu/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/plan9/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/auxv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/unix/auxv.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/unix/dev_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/unix/mremap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/term/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/term/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/term/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/term/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/term/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/term/term.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/term/term_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/term/term_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/term/term_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/term/terminal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/google.golang.org/grpc/NOTICE.txt -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/google.golang.org/grpc/backoff.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/tap/tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/google.golang.org/grpc/tap/tap.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/google.golang.org/grpc/version.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/gopkg.in/yaml.v3/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/sigs.k8s.io/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/sigs.k8s.io/yaml/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/sigs.k8s.io/yaml/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/sigs.k8s.io/yaml/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/sigs.k8s.io/yaml/RELEASE.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/sigs.k8s.io/yaml/fields.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/vendor/sigs.k8s.io/yaml/yaml.go -------------------------------------------------------------------------------- /version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/common/HEAD/version/version.go --------------------------------------------------------------------------------