├── .codecov.yaml ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── crane_bug_report.md │ ├── ggcr_bug_report.md │ └── question.md ├── dependabot.yml └── workflows │ ├── analyze.yaml │ ├── boilerplate.yaml │ ├── build.yaml │ ├── bump-deps.yaml │ ├── donotsubmit.yaml │ ├── e2e.yaml │ ├── ecr-auth.yaml │ ├── ghcr-auth.yaml │ ├── presubmit.yaml │ ├── release.yml │ ├── stale.yaml │ ├── style.yaml │ └── test.yaml ├── .gitignore ├── .golangci.yaml ├── .goreleaser.yml ├── .ko └── debug │ └── .ko.yaml ├── .wokeignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── cloudbuild.yaml ├── cmd ├── crane │ ├── README.md │ ├── cmd │ │ ├── append.go │ │ ├── auth.go │ │ ├── blob.go │ │ ├── catalog.go │ │ ├── config.go │ │ ├── copy.go │ │ ├── delete.go │ │ ├── digest.go │ │ ├── export.go │ │ ├── flatten.go │ │ ├── gc.go │ │ ├── index.go │ │ ├── list.go │ │ ├── manifest.go │ │ ├── mutate.go │ │ ├── pull.go │ │ ├── push.go │ │ ├── rebase.go │ │ ├── root.go │ │ ├── serve.go │ │ ├── tag.go │ │ ├── util.go │ │ ├── validate.go │ │ └── version.go │ ├── depcheck_test.go │ ├── doc │ │ ├── crane.md │ │ ├── crane_append.md │ │ ├── crane_auth.md │ │ ├── crane_auth_get.md │ │ ├── crane_auth_login.md │ │ ├── crane_auth_logout.md │ │ ├── crane_auth_token.md │ │ ├── crane_blob.md │ │ ├── crane_catalog.md │ │ ├── crane_config.md │ │ ├── crane_copy.md │ │ ├── crane_delete.md │ │ ├── crane_digest.md │ │ ├── crane_export.md │ │ ├── crane_flatten.md │ │ ├── crane_index.md │ │ ├── crane_index_append.md │ │ ├── crane_index_filter.md │ │ ├── crane_ls.md │ │ ├── crane_manifest.md │ │ ├── crane_mutate.md │ │ ├── crane_pull.md │ │ ├── crane_push.md │ │ ├── crane_rebase.md │ │ ├── crane_registry.md │ │ ├── crane_registry_serve.md │ │ ├── crane_tag.md │ │ ├── crane_validate.md │ │ └── crane_version.md │ ├── help │ │ ├── README.md │ │ └── main.go │ ├── main.go │ ├── rebase.md │ ├── rebase.png │ ├── rebase_test.sh │ └── recipes.md ├── gcrane │ ├── Dockerfile │ ├── README.md │ ├── cmd │ │ ├── copy.go │ │ ├── gc.go │ │ └── list.go │ ├── depcheck_test.go │ └── main.go ├── ko │ └── README.md ├── krane │ ├── README.md │ ├── go.mod │ ├── go.sum │ └── main.go └── registry │ ├── main.go │ └── test.sh ├── go.mod ├── go.sum ├── hack ├── boilerplate │ └── boilerplate.go.txt ├── bump-deps.sh ├── presubmit.sh ├── update-codegen.sh ├── update-deps.sh └── update-dots.sh ├── images ├── containerd.dot.svg ├── containers.dot.svg ├── crane.png ├── credhelper-basic.svg ├── credhelper-oauth.svg ├── docker.dot.svg ├── dot │ ├── containerd.dot │ ├── containers.dot │ ├── docker.dot │ ├── ggcr.dot │ ├── image-anatomy.dot │ ├── index-anatomy-strange.dot │ ├── index-anatomy.dot │ ├── mutate.dot │ ├── remote.dot │ ├── stream.dot │ ├── tarball.dot │ └── upload.dot ├── gcrane.png ├── ggcr.dot.svg ├── image-anatomy.dot.svg ├── index-anatomy-strange.dot.svg ├── index-anatomy.dot.svg ├── mutate.dot.svg ├── ociimage.gv ├── ociimage.jpeg ├── remote.dot.svg ├── stream.dot.svg ├── tarball.dot.svg └── upload.dot.svg ├── internal ├── and │ ├── and_closer.go │ └── and_closer_test.go ├── cmd │ ├── edit.go │ └── edit_test.go ├── compression │ ├── compression.go │ └── compression_test.go ├── depcheck │ └── depcheck.go ├── editor │ └── editor.go ├── estargz │ ├── estargz.go │ └── estargz_test.go ├── gzip │ ├── zip.go │ └── zip_test.go ├── httptest │ └── httptest.go ├── redact │ └── redact.go ├── retry │ ├── retry.go │ ├── retry_test.go │ └── wait │ │ └── kubernetes_apimachinery_wait.go ├── verify │ ├── verify.go │ └── verify_test.go ├── windows │ ├── windows.go │ └── windows_test.go └── zstd │ ├── zstd.go │ └── zstd_test.go ├── pkg ├── authn │ ├── README.md │ ├── anon.go │ ├── anon_test.go │ ├── auth.go │ ├── authn.go │ ├── authn_test.go │ ├── basic.go │ ├── basic_test.go │ ├── bearer.go │ ├── bearer_test.go │ ├── doc.go │ ├── github │ │ ├── keychain.go │ │ └── keychain_test.go │ ├── k8schain │ │ ├── README.md │ │ ├── doc.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── k8schain.go │ │ └── tests │ │ │ ├── explicit │ │ │ ├── main.go │ │ │ └── test.yaml │ │ │ ├── implicit │ │ │ ├── main.go │ │ │ └── test.yaml │ │ │ ├── noauth │ │ │ ├── main.go │ │ │ └── test.yaml │ │ │ └── serviceaccount │ │ │ ├── main.go │ │ │ └── test.yaml │ ├── keychain.go │ ├── keychain_test.go │ ├── kubernetes │ │ ├── go.mod │ │ ├── go.sum │ │ ├── keychain.go │ │ └── keychain_test.go │ ├── multikeychain.go │ └── multikeychain_test.go ├── compression │ └── compression.go ├── crane │ ├── append.go │ ├── append_test.go │ ├── catalog.go │ ├── config.go │ ├── copy.go │ ├── crane_test.go │ ├── delete.go │ ├── digest.go │ ├── digest_test.go │ ├── doc.go │ ├── example_test.go │ ├── export.go │ ├── export_test.go │ ├── filemap.go │ ├── filemap_test.go │ ├── get.go │ ├── list.go │ ├── manifest.go │ ├── options.go │ ├── options_test.go │ ├── pull.go │ ├── push.go │ ├── tag.go │ └── testdata │ │ ├── content.tar │ │ └── content.tar.zst ├── gcrane │ ├── copy.go │ ├── copy_test.go │ ├── doc.go │ ├── options.go │ └── options_test.go ├── legacy │ ├── config.go │ ├── doc.go │ └── tarball │ │ ├── README.md │ │ ├── doc.go │ │ ├── write.go │ │ └── write_test.go ├── logs │ └── logs.go ├── name │ ├── README.md │ ├── check.go │ ├── digest.go │ ├── digest_test.go │ ├── doc.go │ ├── errors.go │ ├── errors_test.go │ ├── internal │ │ ├── must_test.go │ │ └── must_test.sh │ ├── options.go │ ├── ref.go │ ├── ref_test.go │ ├── registry.go │ ├── registry_test.go │ ├── repository.go │ ├── repository_test.go │ ├── tag.go │ └── tag_test.go ├── registry │ ├── README.md │ ├── blobs.go │ ├── blobs_disk.go │ ├── blobs_disk_test.go │ ├── compatibility_test.go │ ├── depcheck_test.go │ ├── error.go │ ├── manifest.go │ ├── registry.go │ ├── registry_test.go │ ├── tls.go │ └── tls_test.go └── v1 │ ├── cache │ ├── cache.go │ ├── cache_test.go │ ├── example_test.go │ ├── fs.go │ ├── fs_test.go │ ├── ro.go │ └── ro_test.go │ ├── compare │ ├── doc.go │ ├── image.go │ ├── image_test.go │ ├── index.go │ ├── index_test.go │ ├── layer.go │ └── layer_test.go │ ├── config.go │ ├── config_test.go │ ├── daemon │ ├── README.md │ ├── doc.go │ ├── image.go │ ├── image_test.go │ ├── options.go │ ├── write.go │ └── write_test.go │ ├── doc.go │ ├── empty │ ├── README.md │ ├── doc.go │ ├── image.go │ ├── image_test.go │ ├── index.go │ └── index_test.go │ ├── fake │ ├── image.go │ └── index.go │ ├── google │ ├── README.md │ ├── auth.go │ ├── auth_test.go │ ├── doc.go │ ├── keychain.go │ ├── list.go │ ├── list_test.go │ ├── options.go │ └── testdata │ │ ├── README.md │ │ └── key.json │ ├── hash.go │ ├── hash_test.go │ ├── image.go │ ├── index.go │ ├── layer.go │ ├── layout │ ├── README.md │ ├── blob.go │ ├── doc.go │ ├── gc.go │ ├── gc_test.go │ ├── image.go │ ├── image_test.go │ ├── index.go │ ├── index_test.go │ ├── layoutpath.go │ ├── options.go │ ├── read.go │ ├── read_test.go │ ├── testdata │ │ ├── README.md │ │ ├── test_gc_image_unknown_mediatype │ │ │ ├── index.json │ │ │ └── oci-layout │ │ ├── test_gc_index │ │ │ ├── blobs │ │ │ │ └── sha256 │ │ │ │ │ ├── 05f95b26ed10668b7183c1e2da98610e91372fa9f510046d4ce5812addad86b5 │ │ │ │ │ ├── 2b29a2b8dea3af91ea7d0154be1da0c92d55ddd098540930fc8d3db7de377fdb │ │ │ │ │ ├── 492b89b9dd3cda4596f94916d17f6901455fb8bd7f4c5a2a90df8d39c90f48a0 │ │ │ │ │ ├── 6e0b05049ed9c17d02e1a55e80d6599dbfcce7f4f4b022e3c673e685789c470e │ │ │ │ │ ├── dc52c6e48a1d51a96047b059f16889bc889c4b4c28f3b36b3f93187f62fc0b2b │ │ │ │ │ └── eebff607b1628d67459b0596643fc07de70d702eccf030f0bc7bb6fc2b278650 │ │ │ ├── index.json │ │ │ └── oci-layout │ │ ├── test_index │ │ │ ├── blobs │ │ │ │ └── sha256 │ │ │ │ │ ├── 05f95b26ed10668b7183c1e2da98610e91372fa9f510046d4ce5812addad86b5 │ │ │ │ │ ├── 2b29a2b8dea3af91ea7d0154be1da0c92d55ddd098540930fc8d3db7de377fdb │ │ │ │ │ ├── 321460fa87fd42433950b42d04b7aff249f4ed960d43404a9f699886906cc9d3 │ │ │ │ │ ├── 32589985702551b6c56033bb3334432a0a513bf9d6aceda0f67c42b003850720 │ │ │ │ │ ├── 6e0b05049ed9c17d02e1a55e80d6599dbfcce7f4f4b022e3c673e685789c470e │ │ │ │ │ ├── 930705ce23e3b6ed4c08746b6fe880089c864fbaf62482702ae3fdd66b8c7fe9 │ │ │ │ │ ├── dc52c6e48a1d51a96047b059f16889bc889c4b4c28f3b36b3f93187f62fc0b2b │ │ │ │ │ └── eebff607b1628d67459b0596643fc07de70d702eccf030f0bc7bb6fc2b278650 │ │ │ ├── index.json │ │ │ └── oci-layout │ │ ├── test_index_media_type │ │ │ ├── blobs │ │ │ │ └── sha256 │ │ │ │ │ ├── b544f71ecd82372bc9a3c0dbef378abfd2734fe437df81ff6e242a0d720d8e3e │ │ │ │ │ ├── ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356 │ │ │ │ │ └── dc52c6e48a1d51a96047b059f16889bc889c4b4c28f3b36b3f93187f62fc0b2b │ │ │ ├── index.json │ │ │ └── oci-layout │ │ └── test_index_one_image │ │ │ ├── blobs │ │ │ └── sha256 │ │ │ │ ├── 381d958b555884ba59574ab5c066e9f6116b5aec3567675aa13bec63331f0810 │ │ │ │ ├── 492b89b9dd3cda4596f94916d17f6901455fb8bd7f4c5a2a90df8d39c90f48a0 │ │ │ │ └── 98ceaf93e482fe91b9bfd6bba07137c098e49ee2d55e69f09fb6c951e75e0e46 │ │ │ ├── index.json │ │ │ └── oci-layout │ ├── write.go │ └── write_test.go │ ├── manifest.go │ ├── manifest_test.go │ ├── match │ ├── match.go │ └── match_test.go │ ├── mutate │ ├── README.md │ ├── doc.go │ ├── image.go │ ├── index.go │ ├── index_test.go │ ├── mutate.go │ ├── mutate_test.go │ ├── rebase.go │ ├── rebase_test.go │ ├── testdata │ │ ├── README.md │ │ ├── bar │ │ ├── foo │ │ ├── overwritten_file.tar │ │ ├── source_image.tar │ │ ├── source_image_with_empty_layer_history.tar │ │ ├── whiteout │ │ │ ├── bar.txt │ │ │ └── foo.txt │ │ └── whiteout_image.tar │ └── whiteout_test.go │ ├── partial │ ├── README.md │ ├── compressed.go │ ├── compressed_test.go │ ├── configlayer_test.go │ ├── doc.go │ ├── image.go │ ├── index.go │ ├── index_test.go │ ├── uncompressed.go │ ├── uncompressed_test.go │ ├── with.go │ └── with_test.go │ ├── platform.go │ ├── platform_test.go │ ├── progress.go │ ├── random │ ├── doc.go │ ├── image.go │ ├── image_test.go │ ├── index.go │ ├── index_test.go │ └── options.go │ ├── remote │ ├── README.md │ ├── catalog.go │ ├── catalog_test.go │ ├── check.go │ ├── check_e2e_test.go │ ├── check_test.go │ ├── delete.go │ ├── delete_test.go │ ├── descriptor.go │ ├── descriptor_test.go │ ├── doc.go │ ├── error_roundtrip_test.go │ ├── fetcher.go │ ├── image.go │ ├── image_test.go │ ├── index.go │ ├── index_test.go │ ├── layer.go │ ├── layer_test.go │ ├── list.go │ ├── list_test.go │ ├── mount.go │ ├── mount_test.go │ ├── multi_write.go │ ├── multi_write_test.go │ ├── options.go │ ├── progress.go │ ├── progress_test.go │ ├── puller.go │ ├── pusher.go │ ├── referrers.go │ ├── referrers_test.go │ ├── schema1.go │ ├── schema1_test.go │ ├── transport │ │ ├── README.md │ │ ├── basic.go │ │ ├── basic_test.go │ │ ├── bearer.go │ │ ├── bearer_test.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── error_test.go │ │ ├── logger.go │ │ ├── logger_test.go │ │ ├── ping.go │ │ ├── ping_test.go │ │ ├── retry.go │ │ ├── retry_test.go │ │ ├── schemer.go │ │ ├── scope.go │ │ ├── transport.go │ │ ├── transport_test.go │ │ └── useragent.go │ ├── write.go │ └── write_test.go │ ├── static │ ├── layer.go │ └── static_test.go │ ├── stream │ ├── README.md │ ├── layer.go │ └── layer_test.go │ ├── tarball │ ├── README.md │ ├── doc.go │ ├── image.go │ ├── image_test.go │ ├── layer.go │ ├── layer_test.go │ ├── progress_test.go │ ├── testdata │ │ ├── bar │ │ ├── bat │ │ │ └── bat │ │ ├── baz │ │ ├── content.tar │ │ ├── foo │ │ ├── hello-world-v25.tar │ │ ├── no_manifest.tar │ │ ├── null_manifest.tar │ │ ├── test_bundle.tar │ │ ├── test_image_1.tar │ │ ├── test_image_2.tar │ │ ├── test_link.tar │ │ └── test_load_manifest.tar │ ├── write.go │ └── write_test.go │ ├── types │ ├── types.go │ └── types_test.go │ ├── validate │ ├── doc.go │ ├── image.go │ ├── index.go │ ├── layer.go │ └── options.go │ └── zz_deepcopy_generated.go └── vendor ├── cloud.google.com └── go │ └── compute │ └── metadata │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── log.go │ ├── metadata.go │ ├── retry.go │ ├── retry_linux.go │ ├── syscheck.go │ ├── syscheck_linux.go │ └── syscheck_windows.go ├── github.com ├── Microsoft │ └── go-winio │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODEOWNERS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── backup.go │ │ ├── doc.go │ │ ├── ea.go │ │ ├── file.go │ │ ├── fileinfo.go │ │ ├── hvsock.go │ │ ├── internal │ │ ├── fs │ │ │ ├── doc.go │ │ │ ├── fs.go │ │ │ ├── security.go │ │ │ └── zsyscall_windows.go │ │ ├── socket │ │ │ ├── rawaddr.go │ │ │ ├── socket.go │ │ │ └── zsyscall_windows.go │ │ └── stringbuffer │ │ │ └── wstring.go │ │ ├── pipe.go │ │ ├── pkg │ │ └── guid │ │ │ ├── guid.go │ │ │ ├── guid_nonwindows.go │ │ │ ├── guid_windows.go │ │ │ └── variant_string.go │ │ ├── privilege.go │ │ ├── reparse.go │ │ ├── sd.go │ │ ├── syscall.go │ │ └── zsyscall_windows.go ├── containerd │ ├── errdefs │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errors.go │ │ ├── pkg │ │ │ ├── LICENSE │ │ │ ├── errhttp │ │ │ │ └── http.go │ │ │ └── internal │ │ │ │ └── cause │ │ │ │ └── cause.go │ │ └── resolve.go │ └── stargz-snapshotter │ │ └── estargz │ │ ├── LICENSE │ │ ├── build.go │ │ ├── errorutil │ │ └── errors.go │ │ ├── estargz.go │ │ ├── gzip.go │ │ ├── testutil.go │ │ └── types.go ├── cpuguy83 │ └── go-md2man │ │ └── v2 │ │ ├── LICENSE.md │ │ └── md2man │ │ ├── debug.go │ │ ├── md2man.go │ │ └── roff.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 │ ├── cli │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── cli │ │ │ └── config │ │ │ ├── config.go │ │ │ ├── configfile │ │ │ ├── file.go │ │ │ ├── file_unix.go │ │ │ └── file_windows.go │ │ │ ├── credentials │ │ │ ├── credentials.go │ │ │ ├── default_store.go │ │ │ ├── default_store_darwin.go │ │ │ ├── default_store_linux.go │ │ │ ├── default_store_unsupported.go │ │ │ ├── default_store_windows.go │ │ │ ├── file_store.go │ │ │ └── native_store.go │ │ │ ├── memorystore │ │ │ └── store.go │ │ │ └── types │ │ │ └── authconfig.go │ ├── distribution │ │ ├── LICENSE │ │ └── registry │ │ │ └── client │ │ │ └── auth │ │ │ └── challenge │ │ │ ├── addr.go │ │ │ └── authchallenge.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 │ │ │ │ ├── filters_deprecated.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 │ │ │ │ │ └── runtime.go │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ ├── service_create_response.go │ │ │ │ ├── service_update_response.go │ │ │ │ ├── swarm.go │ │ │ │ └── task.go │ │ │ │ ├── system │ │ │ │ ├── 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 │ ├── 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 ├── 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 ├── google │ └── go-cmp │ │ ├── LICENSE │ │ └── cmp │ │ ├── cmpopts │ │ ├── equate.go │ │ ├── ignore.go │ │ ├── sort.go │ │ ├── struct_filter.go │ │ └── xform.go │ │ ├── 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 ├── inconshreveable │ └── mousetrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── trap_others.go │ │ └── trap_windows.go ├── klauspost │ └── compress │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── compressible.go │ │ ├── fse │ │ ├── README.md │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── bytereader.go │ │ ├── compress.go │ │ ├── decompress.go │ │ └── fse.go │ │ ├── gen.sh │ │ ├── huff0 │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── compress.go │ │ ├── decompress.go │ │ ├── decompress_amd64.go │ │ ├── decompress_amd64.s │ │ ├── decompress_generic.go │ │ └── huff0.go │ │ ├── internal │ │ ├── cpuinfo │ │ │ ├── cpuinfo.go │ │ │ ├── cpuinfo_amd64.go │ │ │ └── cpuinfo_amd64.s │ │ ├── le │ │ │ ├── le.go │ │ │ ├── unsafe_disabled.go │ │ │ └── unsafe_enabled.go │ │ └── snapref │ │ │ ├── LICENSE │ │ │ ├── decode.go │ │ │ ├── decode_other.go │ │ │ ├── encode.go │ │ │ ├── encode_other.go │ │ │ └── snappy.go │ │ ├── s2sx.mod │ │ ├── s2sx.sum │ │ └── zstd │ │ ├── README.md │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── blockdec.go │ │ ├── blockenc.go │ │ ├── blocktype_string.go │ │ ├── bytebuf.go │ │ ├── bytereader.go │ │ ├── decodeheader.go │ │ ├── decoder.go │ │ ├── decoder_options.go │ │ ├── dict.go │ │ ├── enc_base.go │ │ ├── enc_best.go │ │ ├── enc_better.go │ │ ├── enc_dfast.go │ │ ├── enc_fast.go │ │ ├── encoder.go │ │ ├── encoder_options.go │ │ ├── framedec.go │ │ ├── frameenc.go │ │ ├── fse_decoder.go │ │ ├── fse_decoder_amd64.go │ │ ├── fse_decoder_amd64.s │ │ ├── fse_decoder_generic.go │ │ ├── fse_encoder.go │ │ ├── fse_predefined.go │ │ ├── hash.go │ │ ├── history.go │ │ ├── internal │ │ └── xxhash │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── xxhash.go │ │ │ ├── xxhash_amd64.s │ │ │ ├── xxhash_arm64.s │ │ │ ├── xxhash_asm.go │ │ │ ├── xxhash_other.go │ │ │ └── xxhash_safe.go │ │ ├── matchlen_amd64.go │ │ ├── matchlen_amd64.s │ │ ├── matchlen_generic.go │ │ ├── seqdec.go │ │ ├── seqdec_amd64.go │ │ ├── seqdec_amd64.s │ │ ├── seqdec_generic.go │ │ ├── seqenc.go │ │ ├── simple_go124.go │ │ ├── snappy.go │ │ ├── zip.go │ │ └── zstd.go ├── mitchellh │ └── go-homedir │ │ ├── LICENSE │ │ ├── README.md │ │ └── homedir.go ├── moby │ └── docker-image-spec │ │ ├── LICENSE │ │ └── specs-go │ │ └── v1 │ │ └── image.go ├── opencontainers │ ├── 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 ├── pkg │ └── errors │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── errors.go │ │ ├── go113.go │ │ └── stack.go ├── russross │ └── blackfriday │ │ └── v2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── block.go │ │ ├── doc.go │ │ ├── entities.go │ │ ├── esc.go │ │ ├── html.go │ │ ├── inline.go │ │ ├── markdown.go │ │ ├── node.go │ │ └── smartypants.go ├── 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 ├── spf13 │ ├── cobra │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .mailmap │ │ ├── CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.txt │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── active_help.go │ │ ├── args.go │ │ ├── bash_completions.go │ │ ├── bash_completionsV2.go │ │ ├── cobra.go │ │ ├── command.go │ │ ├── command_notwin.go │ │ ├── command_win.go │ │ ├── completions.go │ │ ├── doc │ │ │ ├── man_docs.go │ │ │ ├── md_docs.go │ │ │ ├── rest_docs.go │ │ │ ├── util.go │ │ │ └── yaml_docs.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 └── 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 ├── 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 │ ├── internal │ │ └── attribute.go │ ├── iterator.go │ ├── key.go │ ├── kv.go │ ├── rawhelpers.go │ ├── set.go │ ├── type_string.go │ └── value.go │ ├── baggage │ ├── README.md │ ├── baggage.go │ ├── context.go │ └── doc.go │ ├── codes │ ├── README.md │ ├── codes.go │ └── doc.go │ ├── dependencies.Dockerfile │ ├── doc.go │ ├── error_handler.go │ ├── handler.go │ ├── internal │ ├── baggage │ │ ├── baggage.go │ │ └── context.go │ └── global │ │ ├── handler.go │ │ ├── instruments.go │ │ ├── internal_logging.go │ │ ├── meter.go │ │ ├── propagator.go │ │ ├── state.go │ │ └── trace.go │ ├── internal_logging.go │ ├── metric.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_released_changelog.sh │ ├── version.go │ └── versions.yaml ├── golang.org └── x │ ├── mod │ ├── LICENSE │ ├── PATENTS │ └── semver │ │ └── semver.go │ ├── oauth2 │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── authhandler │ │ └── authhandler.go │ ├── deviceauth.go │ ├── google │ │ ├── appengine.go │ │ ├── default.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── externalaccount │ │ │ ├── aws.go │ │ │ ├── basecredentials.go │ │ │ ├── executablecredsource.go │ │ │ ├── filecredsource.go │ │ │ ├── header.go │ │ │ ├── programmaticrefreshcredsource.go │ │ │ └── urlcredsource.go │ │ ├── google.go │ │ ├── internal │ │ │ ├── externalaccountauthorizeduser │ │ │ │ └── externalaccountauthorizeduser.go │ │ │ ├── impersonate │ │ │ │ └── impersonate.go │ │ │ └── stsexchange │ │ │ │ ├── clientauth.go │ │ │ │ └── sts_exchange.go │ │ ├── jwt.go │ │ └── sdk.go │ ├── internal │ │ ├── doc.go │ │ ├── oauth2.go │ │ ├── token.go │ │ └── transport.go │ ├── jws │ │ └── jws.go │ ├── jwt │ │ └── jwt.go │ ├── oauth2.go │ ├── pkce.go │ ├── token.go │ └── transport.go │ ├── sync │ ├── LICENSE │ ├── PATENTS │ └── errgroup │ │ └── errgroup.go │ ├── sys │ ├── LICENSE │ ├── PATENTS │ ├── 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 │ └── tools │ ├── LICENSE │ ├── PATENTS │ ├── go │ ├── ast │ │ ├── edge │ │ │ └── edge.go │ │ └── inspector │ │ │ ├── cursor.go │ │ │ ├── inspector.go │ │ │ ├── iter.go │ │ │ ├── typeof.go │ │ │ └── walk.go │ ├── gcexportdata │ │ ├── gcexportdata.go │ │ └── importer.go │ ├── packages │ │ ├── doc.go │ │ ├── external.go │ │ ├── golist.go │ │ ├── golist_overlay.go │ │ ├── loadmode_string.go │ │ ├── packages.go │ │ └── visit.go │ └── types │ │ ├── objectpath │ │ └── objectpath.go │ │ └── typeutil │ │ ├── callee.go │ │ ├── imports.go │ │ ├── map.go │ │ ├── methodsetcache.go │ │ └── ui.go │ └── internal │ ├── aliases │ ├── aliases.go │ └── aliases_go122.go │ ├── event │ ├── core │ │ ├── event.go │ │ ├── export.go │ │ └── fast.go │ ├── doc.go │ ├── event.go │ ├── keys │ │ ├── keys.go │ │ ├── standard.go │ │ └── util.go │ └── label │ │ └── label.go │ ├── gcimporter │ ├── bimport.go │ ├── exportdata.go │ ├── gcimporter.go │ ├── iexport.go │ ├── iimport.go │ ├── predeclared.go │ ├── support.go │ └── ureader_yes.go │ ├── gocommand │ ├── invoke.go │ ├── invoke_notunix.go │ ├── invoke_unix.go │ ├── vendor.go │ └── version.go │ ├── packagesinternal │ └── packages.go │ ├── pkgbits │ ├── codes.go │ ├── decoder.go │ ├── doc.go │ ├── encoder.go │ ├── flags.go │ ├── reloc.go │ ├── support.go │ ├── sync.go │ ├── syncmarker_string.go │ └── version.go │ ├── stdlib │ ├── deps.go │ ├── import.go │ ├── manifest.go │ └── stdlib.go │ ├── typeparams │ ├── common.go │ ├── coretype.go │ ├── free.go │ ├── normalize.go │ ├── termlist.go │ └── typeterm.go │ ├── typesinternal │ ├── classify_call.go │ ├── element.go │ ├── errorcode.go │ ├── errorcode_string.go │ ├── fx.go │ ├── isnamed.go │ ├── qualifier.go │ ├── recv.go │ ├── toonew.go │ ├── types.go │ ├── varkind.go │ ├── varkind_go124.go │ └── zerovalue.go │ └── versions │ ├── features.go │ ├── gover.go │ ├── types.go │ └── versions.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 /.codecov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/.codecov.yaml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/crane_bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/.github/ISSUE_TEMPLATE/crane_bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ggcr_bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/.github/ISSUE_TEMPLATE/ggcr_bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/analyze.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/.github/workflows/analyze.yaml -------------------------------------------------------------------------------- /.github/workflows/boilerplate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/.github/workflows/boilerplate.yaml -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/bump-deps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/.github/workflows/bump-deps.yaml -------------------------------------------------------------------------------- /.github/workflows/donotsubmit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/.github/workflows/donotsubmit.yaml -------------------------------------------------------------------------------- /.github/workflows/e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/.github/workflows/e2e.yaml -------------------------------------------------------------------------------- /.github/workflows/ecr-auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/.github/workflows/ecr-auth.yaml -------------------------------------------------------------------------------- /.github/workflows/ghcr-auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/.github/workflows/ghcr-auth.yaml -------------------------------------------------------------------------------- /.github/workflows/presubmit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/.github/workflows/presubmit.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/.github/workflows/stale.yaml -------------------------------------------------------------------------------- /.github/workflows/style.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/.github/workflows/style.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.ko/debug/.ko.yaml: -------------------------------------------------------------------------------- 1 | defaultBaseImage: gcr.io/distroless/base:debug 2 | -------------------------------------------------------------------------------- /.wokeignore: -------------------------------------------------------------------------------- 1 | vendor/** 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cloudbuild.yaml -------------------------------------------------------------------------------- /cmd/crane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/README.md -------------------------------------------------------------------------------- /cmd/crane/cmd/append.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/cmd/append.go -------------------------------------------------------------------------------- /cmd/crane/cmd/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/cmd/auth.go -------------------------------------------------------------------------------- /cmd/crane/cmd/blob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/cmd/blob.go -------------------------------------------------------------------------------- /cmd/crane/cmd/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/cmd/catalog.go -------------------------------------------------------------------------------- /cmd/crane/cmd/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/cmd/config.go -------------------------------------------------------------------------------- /cmd/crane/cmd/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/cmd/copy.go -------------------------------------------------------------------------------- /cmd/crane/cmd/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/cmd/delete.go -------------------------------------------------------------------------------- /cmd/crane/cmd/digest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/cmd/digest.go -------------------------------------------------------------------------------- /cmd/crane/cmd/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/cmd/export.go -------------------------------------------------------------------------------- /cmd/crane/cmd/flatten.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/cmd/flatten.go -------------------------------------------------------------------------------- /cmd/crane/cmd/gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/cmd/gc.go -------------------------------------------------------------------------------- /cmd/crane/cmd/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/cmd/index.go -------------------------------------------------------------------------------- /cmd/crane/cmd/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/cmd/list.go -------------------------------------------------------------------------------- /cmd/crane/cmd/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/cmd/manifest.go -------------------------------------------------------------------------------- /cmd/crane/cmd/mutate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/cmd/mutate.go -------------------------------------------------------------------------------- /cmd/crane/cmd/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/cmd/pull.go -------------------------------------------------------------------------------- /cmd/crane/cmd/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/cmd/push.go -------------------------------------------------------------------------------- /cmd/crane/cmd/rebase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/cmd/rebase.go -------------------------------------------------------------------------------- /cmd/crane/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/cmd/root.go -------------------------------------------------------------------------------- /cmd/crane/cmd/serve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/cmd/serve.go -------------------------------------------------------------------------------- /cmd/crane/cmd/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/cmd/tag.go -------------------------------------------------------------------------------- /cmd/crane/cmd/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/cmd/util.go -------------------------------------------------------------------------------- /cmd/crane/cmd/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/cmd/validate.go -------------------------------------------------------------------------------- /cmd/crane/cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/cmd/version.go -------------------------------------------------------------------------------- /cmd/crane/depcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/depcheck_test.go -------------------------------------------------------------------------------- /cmd/crane/doc/crane.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_append.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_append.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_auth.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_auth_get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_auth_get.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_auth_login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_auth_login.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_auth_logout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_auth_logout.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_auth_token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_auth_token.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_blob.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_blob.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_catalog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_catalog.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_config.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_copy.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_delete.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_digest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_digest.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_export.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_flatten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_flatten.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_index.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_index_append.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_index_append.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_index_filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_index_filter.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_ls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_ls.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_manifest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_manifest.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_mutate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_mutate.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_pull.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_push.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_rebase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_rebase.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_registry.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_registry_serve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_registry_serve.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_tag.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_validate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_validate.md -------------------------------------------------------------------------------- /cmd/crane/doc/crane_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/doc/crane_version.md -------------------------------------------------------------------------------- /cmd/crane/help/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/help/README.md -------------------------------------------------------------------------------- /cmd/crane/help/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/help/main.go -------------------------------------------------------------------------------- /cmd/crane/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/main.go -------------------------------------------------------------------------------- /cmd/crane/rebase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/rebase.md -------------------------------------------------------------------------------- /cmd/crane/rebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/rebase.png -------------------------------------------------------------------------------- /cmd/crane/rebase_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/rebase_test.sh -------------------------------------------------------------------------------- /cmd/crane/recipes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/crane/recipes.md -------------------------------------------------------------------------------- /cmd/gcrane/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/gcrane/Dockerfile -------------------------------------------------------------------------------- /cmd/gcrane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/gcrane/README.md -------------------------------------------------------------------------------- /cmd/gcrane/cmd/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/gcrane/cmd/copy.go -------------------------------------------------------------------------------- /cmd/gcrane/cmd/gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/gcrane/cmd/gc.go -------------------------------------------------------------------------------- /cmd/gcrane/cmd/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/gcrane/cmd/list.go -------------------------------------------------------------------------------- /cmd/gcrane/depcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/gcrane/depcheck_test.go -------------------------------------------------------------------------------- /cmd/gcrane/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/gcrane/main.go -------------------------------------------------------------------------------- /cmd/ko/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/ko/README.md -------------------------------------------------------------------------------- /cmd/krane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/krane/README.md -------------------------------------------------------------------------------- /cmd/krane/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/krane/go.mod -------------------------------------------------------------------------------- /cmd/krane/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/krane/go.sum -------------------------------------------------------------------------------- /cmd/krane/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/krane/main.go -------------------------------------------------------------------------------- /cmd/registry/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/registry/main.go -------------------------------------------------------------------------------- /cmd/registry/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/cmd/registry/test.sh -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/hack/boilerplate/boilerplate.go.txt -------------------------------------------------------------------------------- /hack/bump-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/hack/bump-deps.sh -------------------------------------------------------------------------------- /hack/presubmit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/hack/presubmit.sh -------------------------------------------------------------------------------- /hack/update-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/hack/update-codegen.sh -------------------------------------------------------------------------------- /hack/update-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/hack/update-deps.sh -------------------------------------------------------------------------------- /hack/update-dots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/hack/update-dots.sh -------------------------------------------------------------------------------- /images/containerd.dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/containerd.dot.svg -------------------------------------------------------------------------------- /images/containers.dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/containers.dot.svg -------------------------------------------------------------------------------- /images/crane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/crane.png -------------------------------------------------------------------------------- /images/credhelper-basic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/credhelper-basic.svg -------------------------------------------------------------------------------- /images/credhelper-oauth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/credhelper-oauth.svg -------------------------------------------------------------------------------- /images/docker.dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/docker.dot.svg -------------------------------------------------------------------------------- /images/dot/containerd.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/dot/containerd.dot -------------------------------------------------------------------------------- /images/dot/containers.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/dot/containers.dot -------------------------------------------------------------------------------- /images/dot/docker.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/dot/docker.dot -------------------------------------------------------------------------------- /images/dot/ggcr.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/dot/ggcr.dot -------------------------------------------------------------------------------- /images/dot/image-anatomy.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/dot/image-anatomy.dot -------------------------------------------------------------------------------- /images/dot/index-anatomy-strange.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/dot/index-anatomy-strange.dot -------------------------------------------------------------------------------- /images/dot/index-anatomy.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/dot/index-anatomy.dot -------------------------------------------------------------------------------- /images/dot/mutate.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/dot/mutate.dot -------------------------------------------------------------------------------- /images/dot/remote.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/dot/remote.dot -------------------------------------------------------------------------------- /images/dot/stream.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/dot/stream.dot -------------------------------------------------------------------------------- /images/dot/tarball.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/dot/tarball.dot -------------------------------------------------------------------------------- /images/dot/upload.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/dot/upload.dot -------------------------------------------------------------------------------- /images/gcrane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/gcrane.png -------------------------------------------------------------------------------- /images/ggcr.dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/ggcr.dot.svg -------------------------------------------------------------------------------- /images/image-anatomy.dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/image-anatomy.dot.svg -------------------------------------------------------------------------------- /images/index-anatomy-strange.dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/index-anatomy-strange.dot.svg -------------------------------------------------------------------------------- /images/index-anatomy.dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/index-anatomy.dot.svg -------------------------------------------------------------------------------- /images/mutate.dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/mutate.dot.svg -------------------------------------------------------------------------------- /images/ociimage.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/ociimage.gv -------------------------------------------------------------------------------- /images/ociimage.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/ociimage.jpeg -------------------------------------------------------------------------------- /images/remote.dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/remote.dot.svg -------------------------------------------------------------------------------- /images/stream.dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/stream.dot.svg -------------------------------------------------------------------------------- /images/tarball.dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/tarball.dot.svg -------------------------------------------------------------------------------- /images/upload.dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/images/upload.dot.svg -------------------------------------------------------------------------------- /internal/and/and_closer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/internal/and/and_closer.go -------------------------------------------------------------------------------- /internal/and/and_closer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/internal/and/and_closer_test.go -------------------------------------------------------------------------------- /internal/cmd/edit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/internal/cmd/edit.go -------------------------------------------------------------------------------- /internal/cmd/edit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/internal/cmd/edit_test.go -------------------------------------------------------------------------------- /internal/compression/compression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/internal/compression/compression.go -------------------------------------------------------------------------------- /internal/compression/compression_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/internal/compression/compression_test.go -------------------------------------------------------------------------------- /internal/depcheck/depcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/internal/depcheck/depcheck.go -------------------------------------------------------------------------------- /internal/editor/editor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/internal/editor/editor.go -------------------------------------------------------------------------------- /internal/estargz/estargz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/internal/estargz/estargz.go -------------------------------------------------------------------------------- /internal/estargz/estargz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/internal/estargz/estargz_test.go -------------------------------------------------------------------------------- /internal/gzip/zip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/internal/gzip/zip.go -------------------------------------------------------------------------------- /internal/gzip/zip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/internal/gzip/zip_test.go -------------------------------------------------------------------------------- /internal/httptest/httptest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/internal/httptest/httptest.go -------------------------------------------------------------------------------- /internal/redact/redact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/internal/redact/redact.go -------------------------------------------------------------------------------- /internal/retry/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/internal/retry/retry.go -------------------------------------------------------------------------------- /internal/retry/retry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/internal/retry/retry_test.go -------------------------------------------------------------------------------- /internal/verify/verify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/internal/verify/verify.go -------------------------------------------------------------------------------- /internal/verify/verify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/internal/verify/verify_test.go -------------------------------------------------------------------------------- /internal/windows/windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/internal/windows/windows.go -------------------------------------------------------------------------------- /internal/windows/windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/internal/windows/windows_test.go -------------------------------------------------------------------------------- /internal/zstd/zstd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/internal/zstd/zstd.go -------------------------------------------------------------------------------- /internal/zstd/zstd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/internal/zstd/zstd_test.go -------------------------------------------------------------------------------- /pkg/authn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/README.md -------------------------------------------------------------------------------- /pkg/authn/anon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/anon.go -------------------------------------------------------------------------------- /pkg/authn/anon_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/anon_test.go -------------------------------------------------------------------------------- /pkg/authn/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/auth.go -------------------------------------------------------------------------------- /pkg/authn/authn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/authn.go -------------------------------------------------------------------------------- /pkg/authn/authn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/authn_test.go -------------------------------------------------------------------------------- /pkg/authn/basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/basic.go -------------------------------------------------------------------------------- /pkg/authn/basic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/basic_test.go -------------------------------------------------------------------------------- /pkg/authn/bearer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/bearer.go -------------------------------------------------------------------------------- /pkg/authn/bearer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/bearer_test.go -------------------------------------------------------------------------------- /pkg/authn/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/doc.go -------------------------------------------------------------------------------- /pkg/authn/github/keychain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/github/keychain.go -------------------------------------------------------------------------------- /pkg/authn/github/keychain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/github/keychain_test.go -------------------------------------------------------------------------------- /pkg/authn/k8schain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/k8schain/README.md -------------------------------------------------------------------------------- /pkg/authn/k8schain/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/k8schain/doc.go -------------------------------------------------------------------------------- /pkg/authn/k8schain/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/k8schain/go.mod -------------------------------------------------------------------------------- /pkg/authn/k8schain/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/k8schain/go.sum -------------------------------------------------------------------------------- /pkg/authn/k8schain/k8schain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/k8schain/k8schain.go -------------------------------------------------------------------------------- /pkg/authn/k8schain/tests/explicit/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/k8schain/tests/explicit/main.go -------------------------------------------------------------------------------- /pkg/authn/k8schain/tests/explicit/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/k8schain/tests/explicit/test.yaml -------------------------------------------------------------------------------- /pkg/authn/k8schain/tests/implicit/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/k8schain/tests/implicit/main.go -------------------------------------------------------------------------------- /pkg/authn/k8schain/tests/implicit/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/k8schain/tests/implicit/test.yaml -------------------------------------------------------------------------------- /pkg/authn/k8schain/tests/noauth/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/k8schain/tests/noauth/main.go -------------------------------------------------------------------------------- /pkg/authn/k8schain/tests/noauth/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/k8schain/tests/noauth/test.yaml -------------------------------------------------------------------------------- /pkg/authn/k8schain/tests/serviceaccount/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/k8schain/tests/serviceaccount/main.go -------------------------------------------------------------------------------- /pkg/authn/keychain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/keychain.go -------------------------------------------------------------------------------- /pkg/authn/keychain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/keychain_test.go -------------------------------------------------------------------------------- /pkg/authn/kubernetes/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/kubernetes/go.mod -------------------------------------------------------------------------------- /pkg/authn/kubernetes/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/kubernetes/go.sum -------------------------------------------------------------------------------- /pkg/authn/kubernetes/keychain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/kubernetes/keychain.go -------------------------------------------------------------------------------- /pkg/authn/kubernetes/keychain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/kubernetes/keychain_test.go -------------------------------------------------------------------------------- /pkg/authn/multikeychain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/multikeychain.go -------------------------------------------------------------------------------- /pkg/authn/multikeychain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/authn/multikeychain_test.go -------------------------------------------------------------------------------- /pkg/compression/compression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/compression/compression.go -------------------------------------------------------------------------------- /pkg/crane/append.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/crane/append.go -------------------------------------------------------------------------------- /pkg/crane/append_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/crane/append_test.go -------------------------------------------------------------------------------- /pkg/crane/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/crane/catalog.go -------------------------------------------------------------------------------- /pkg/crane/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/crane/config.go -------------------------------------------------------------------------------- /pkg/crane/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/crane/copy.go -------------------------------------------------------------------------------- /pkg/crane/crane_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/crane/crane_test.go -------------------------------------------------------------------------------- /pkg/crane/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/crane/delete.go -------------------------------------------------------------------------------- /pkg/crane/digest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/crane/digest.go -------------------------------------------------------------------------------- /pkg/crane/digest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/crane/digest_test.go -------------------------------------------------------------------------------- /pkg/crane/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/crane/doc.go -------------------------------------------------------------------------------- /pkg/crane/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/crane/example_test.go -------------------------------------------------------------------------------- /pkg/crane/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/crane/export.go -------------------------------------------------------------------------------- /pkg/crane/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/crane/export_test.go -------------------------------------------------------------------------------- /pkg/crane/filemap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/crane/filemap.go -------------------------------------------------------------------------------- /pkg/crane/filemap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/crane/filemap_test.go -------------------------------------------------------------------------------- /pkg/crane/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/crane/get.go -------------------------------------------------------------------------------- /pkg/crane/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/crane/list.go -------------------------------------------------------------------------------- /pkg/crane/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/crane/manifest.go -------------------------------------------------------------------------------- /pkg/crane/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/crane/options.go -------------------------------------------------------------------------------- /pkg/crane/options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/crane/options_test.go -------------------------------------------------------------------------------- /pkg/crane/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/crane/pull.go -------------------------------------------------------------------------------- /pkg/crane/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/crane/push.go -------------------------------------------------------------------------------- /pkg/crane/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/crane/tag.go -------------------------------------------------------------------------------- /pkg/crane/testdata/content.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/crane/testdata/content.tar -------------------------------------------------------------------------------- /pkg/crane/testdata/content.tar.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/crane/testdata/content.tar.zst -------------------------------------------------------------------------------- /pkg/gcrane/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/gcrane/copy.go -------------------------------------------------------------------------------- /pkg/gcrane/copy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/gcrane/copy_test.go -------------------------------------------------------------------------------- /pkg/gcrane/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/gcrane/doc.go -------------------------------------------------------------------------------- /pkg/gcrane/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/gcrane/options.go -------------------------------------------------------------------------------- /pkg/gcrane/options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/gcrane/options_test.go -------------------------------------------------------------------------------- /pkg/legacy/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/legacy/config.go -------------------------------------------------------------------------------- /pkg/legacy/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/legacy/doc.go -------------------------------------------------------------------------------- /pkg/legacy/tarball/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/legacy/tarball/README.md -------------------------------------------------------------------------------- /pkg/legacy/tarball/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/legacy/tarball/doc.go -------------------------------------------------------------------------------- /pkg/legacy/tarball/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/legacy/tarball/write.go -------------------------------------------------------------------------------- /pkg/legacy/tarball/write_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/legacy/tarball/write_test.go -------------------------------------------------------------------------------- /pkg/logs/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/logs/logs.go -------------------------------------------------------------------------------- /pkg/name/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/name/README.md -------------------------------------------------------------------------------- /pkg/name/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/name/check.go -------------------------------------------------------------------------------- /pkg/name/digest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/name/digest.go -------------------------------------------------------------------------------- /pkg/name/digest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/name/digest_test.go -------------------------------------------------------------------------------- /pkg/name/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/name/doc.go -------------------------------------------------------------------------------- /pkg/name/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/name/errors.go -------------------------------------------------------------------------------- /pkg/name/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/name/errors_test.go -------------------------------------------------------------------------------- /pkg/name/internal/must_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/name/internal/must_test.go -------------------------------------------------------------------------------- /pkg/name/internal/must_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/name/internal/must_test.sh -------------------------------------------------------------------------------- /pkg/name/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/name/options.go -------------------------------------------------------------------------------- /pkg/name/ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/name/ref.go -------------------------------------------------------------------------------- /pkg/name/ref_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/name/ref_test.go -------------------------------------------------------------------------------- /pkg/name/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/name/registry.go -------------------------------------------------------------------------------- /pkg/name/registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/name/registry_test.go -------------------------------------------------------------------------------- /pkg/name/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/name/repository.go -------------------------------------------------------------------------------- /pkg/name/repository_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/name/repository_test.go -------------------------------------------------------------------------------- /pkg/name/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/name/tag.go -------------------------------------------------------------------------------- /pkg/name/tag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/name/tag_test.go -------------------------------------------------------------------------------- /pkg/registry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/registry/README.md -------------------------------------------------------------------------------- /pkg/registry/blobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/registry/blobs.go -------------------------------------------------------------------------------- /pkg/registry/blobs_disk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/registry/blobs_disk.go -------------------------------------------------------------------------------- /pkg/registry/blobs_disk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/registry/blobs_disk_test.go -------------------------------------------------------------------------------- /pkg/registry/compatibility_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/registry/compatibility_test.go -------------------------------------------------------------------------------- /pkg/registry/depcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/registry/depcheck_test.go -------------------------------------------------------------------------------- /pkg/registry/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/registry/error.go -------------------------------------------------------------------------------- /pkg/registry/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/registry/manifest.go -------------------------------------------------------------------------------- /pkg/registry/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/registry/registry.go -------------------------------------------------------------------------------- /pkg/registry/registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/registry/registry_test.go -------------------------------------------------------------------------------- /pkg/registry/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/registry/tls.go -------------------------------------------------------------------------------- /pkg/registry/tls_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/registry/tls_test.go -------------------------------------------------------------------------------- /pkg/v1/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/cache/cache.go -------------------------------------------------------------------------------- /pkg/v1/cache/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/cache/cache_test.go -------------------------------------------------------------------------------- /pkg/v1/cache/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/cache/example_test.go -------------------------------------------------------------------------------- /pkg/v1/cache/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/cache/fs.go -------------------------------------------------------------------------------- /pkg/v1/cache/fs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/cache/fs_test.go -------------------------------------------------------------------------------- /pkg/v1/cache/ro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/cache/ro.go -------------------------------------------------------------------------------- /pkg/v1/cache/ro_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/cache/ro_test.go -------------------------------------------------------------------------------- /pkg/v1/compare/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/compare/doc.go -------------------------------------------------------------------------------- /pkg/v1/compare/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/compare/image.go -------------------------------------------------------------------------------- /pkg/v1/compare/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/compare/image_test.go -------------------------------------------------------------------------------- /pkg/v1/compare/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/compare/index.go -------------------------------------------------------------------------------- /pkg/v1/compare/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/compare/index_test.go -------------------------------------------------------------------------------- /pkg/v1/compare/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/compare/layer.go -------------------------------------------------------------------------------- /pkg/v1/compare/layer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/compare/layer_test.go -------------------------------------------------------------------------------- /pkg/v1/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/config.go -------------------------------------------------------------------------------- /pkg/v1/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/config_test.go -------------------------------------------------------------------------------- /pkg/v1/daemon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/daemon/README.md -------------------------------------------------------------------------------- /pkg/v1/daemon/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/daemon/doc.go -------------------------------------------------------------------------------- /pkg/v1/daemon/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/daemon/image.go -------------------------------------------------------------------------------- /pkg/v1/daemon/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/daemon/image_test.go -------------------------------------------------------------------------------- /pkg/v1/daemon/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/daemon/options.go -------------------------------------------------------------------------------- /pkg/v1/daemon/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/daemon/write.go -------------------------------------------------------------------------------- /pkg/v1/daemon/write_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/daemon/write_test.go -------------------------------------------------------------------------------- /pkg/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/doc.go -------------------------------------------------------------------------------- /pkg/v1/empty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/empty/README.md -------------------------------------------------------------------------------- /pkg/v1/empty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/empty/doc.go -------------------------------------------------------------------------------- /pkg/v1/empty/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/empty/image.go -------------------------------------------------------------------------------- /pkg/v1/empty/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/empty/image_test.go -------------------------------------------------------------------------------- /pkg/v1/empty/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/empty/index.go -------------------------------------------------------------------------------- /pkg/v1/empty/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/empty/index_test.go -------------------------------------------------------------------------------- /pkg/v1/fake/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/fake/image.go -------------------------------------------------------------------------------- /pkg/v1/fake/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/fake/index.go -------------------------------------------------------------------------------- /pkg/v1/google/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/google/README.md -------------------------------------------------------------------------------- /pkg/v1/google/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/google/auth.go -------------------------------------------------------------------------------- /pkg/v1/google/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/google/auth_test.go -------------------------------------------------------------------------------- /pkg/v1/google/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/google/doc.go -------------------------------------------------------------------------------- /pkg/v1/google/keychain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/google/keychain.go -------------------------------------------------------------------------------- /pkg/v1/google/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/google/list.go -------------------------------------------------------------------------------- /pkg/v1/google/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/google/list_test.go -------------------------------------------------------------------------------- /pkg/v1/google/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/google/options.go -------------------------------------------------------------------------------- /pkg/v1/google/testdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/google/testdata/README.md -------------------------------------------------------------------------------- /pkg/v1/google/testdata/key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/google/testdata/key.json -------------------------------------------------------------------------------- /pkg/v1/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/hash.go -------------------------------------------------------------------------------- /pkg/v1/hash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/hash_test.go -------------------------------------------------------------------------------- /pkg/v1/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/image.go -------------------------------------------------------------------------------- /pkg/v1/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/index.go -------------------------------------------------------------------------------- /pkg/v1/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/layer.go -------------------------------------------------------------------------------- /pkg/v1/layout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/layout/README.md -------------------------------------------------------------------------------- /pkg/v1/layout/blob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/layout/blob.go -------------------------------------------------------------------------------- /pkg/v1/layout/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/layout/doc.go -------------------------------------------------------------------------------- /pkg/v1/layout/gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/layout/gc.go -------------------------------------------------------------------------------- /pkg/v1/layout/gc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/layout/gc_test.go -------------------------------------------------------------------------------- /pkg/v1/layout/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/layout/image.go -------------------------------------------------------------------------------- /pkg/v1/layout/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/layout/image_test.go -------------------------------------------------------------------------------- /pkg/v1/layout/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/layout/index.go -------------------------------------------------------------------------------- /pkg/v1/layout/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/layout/index_test.go -------------------------------------------------------------------------------- /pkg/v1/layout/layoutpath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/layout/layoutpath.go -------------------------------------------------------------------------------- /pkg/v1/layout/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/layout/options.go -------------------------------------------------------------------------------- /pkg/v1/layout/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/layout/read.go -------------------------------------------------------------------------------- /pkg/v1/layout/read_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/layout/read_test.go -------------------------------------------------------------------------------- /pkg/v1/layout/testdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/layout/testdata/README.md -------------------------------------------------------------------------------- /pkg/v1/layout/testdata/test_gc_image_unknown_mediatype/oci-layout: -------------------------------------------------------------------------------- 1 | { 2 | "imageLayoutVersion": "1.0.0" 3 | } 4 | -------------------------------------------------------------------------------- /pkg/v1/layout/testdata/test_gc_index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/layout/testdata/test_gc_index/index.json -------------------------------------------------------------------------------- /pkg/v1/layout/testdata/test_gc_index/oci-layout: -------------------------------------------------------------------------------- 1 | { 2 | "imageLayoutVersion": "1.0.0" 3 | } 4 | -------------------------------------------------------------------------------- /pkg/v1/layout/testdata/test_index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/layout/testdata/test_index/index.json -------------------------------------------------------------------------------- /pkg/v1/layout/testdata/test_index/oci-layout: -------------------------------------------------------------------------------- 1 | { 2 | "imageLayoutVersion": "1.0.0" 3 | } 4 | -------------------------------------------------------------------------------- /pkg/v1/layout/testdata/test_index_media_type/blobs/sha256/ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /pkg/v1/layout/testdata/test_index_media_type/oci-layout: -------------------------------------------------------------------------------- 1 | { 2 | "imageLayoutVersion": "1.0.0" 3 | } 4 | -------------------------------------------------------------------------------- /pkg/v1/layout/testdata/test_index_one_image/oci-layout: -------------------------------------------------------------------------------- 1 | {"imageLayoutVersion": "1.0.0"} -------------------------------------------------------------------------------- /pkg/v1/layout/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/layout/write.go -------------------------------------------------------------------------------- /pkg/v1/layout/write_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/layout/write_test.go -------------------------------------------------------------------------------- /pkg/v1/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/manifest.go -------------------------------------------------------------------------------- /pkg/v1/manifest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/manifest_test.go -------------------------------------------------------------------------------- /pkg/v1/match/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/match/match.go -------------------------------------------------------------------------------- /pkg/v1/match/match_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/match/match_test.go -------------------------------------------------------------------------------- /pkg/v1/mutate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/mutate/README.md -------------------------------------------------------------------------------- /pkg/v1/mutate/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/mutate/doc.go -------------------------------------------------------------------------------- /pkg/v1/mutate/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/mutate/image.go -------------------------------------------------------------------------------- /pkg/v1/mutate/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/mutate/index.go -------------------------------------------------------------------------------- /pkg/v1/mutate/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/mutate/index_test.go -------------------------------------------------------------------------------- /pkg/v1/mutate/mutate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/mutate/mutate.go -------------------------------------------------------------------------------- /pkg/v1/mutate/mutate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/mutate/mutate_test.go -------------------------------------------------------------------------------- /pkg/v1/mutate/rebase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/mutate/rebase.go -------------------------------------------------------------------------------- /pkg/v1/mutate/rebase_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/mutate/rebase_test.go -------------------------------------------------------------------------------- /pkg/v1/mutate/testdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/mutate/testdata/README.md -------------------------------------------------------------------------------- /pkg/v1/mutate/testdata/bar: -------------------------------------------------------------------------------- 1 | bar 2 | -------------------------------------------------------------------------------- /pkg/v1/mutate/testdata/foo: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /pkg/v1/mutate/testdata/overwritten_file.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/mutate/testdata/overwritten_file.tar -------------------------------------------------------------------------------- /pkg/v1/mutate/testdata/source_image.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/mutate/testdata/source_image.tar -------------------------------------------------------------------------------- /pkg/v1/mutate/testdata/whiteout/bar.txt: -------------------------------------------------------------------------------- 1 | bar 2 | -------------------------------------------------------------------------------- /pkg/v1/mutate/testdata/whiteout/foo.txt: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /pkg/v1/mutate/testdata/whiteout_image.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/mutate/testdata/whiteout_image.tar -------------------------------------------------------------------------------- /pkg/v1/mutate/whiteout_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/mutate/whiteout_test.go -------------------------------------------------------------------------------- /pkg/v1/partial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/partial/README.md -------------------------------------------------------------------------------- /pkg/v1/partial/compressed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/partial/compressed.go -------------------------------------------------------------------------------- /pkg/v1/partial/compressed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/partial/compressed_test.go -------------------------------------------------------------------------------- /pkg/v1/partial/configlayer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/partial/configlayer_test.go -------------------------------------------------------------------------------- /pkg/v1/partial/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/partial/doc.go -------------------------------------------------------------------------------- /pkg/v1/partial/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/partial/image.go -------------------------------------------------------------------------------- /pkg/v1/partial/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/partial/index.go -------------------------------------------------------------------------------- /pkg/v1/partial/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/partial/index_test.go -------------------------------------------------------------------------------- /pkg/v1/partial/uncompressed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/partial/uncompressed.go -------------------------------------------------------------------------------- /pkg/v1/partial/uncompressed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/partial/uncompressed_test.go -------------------------------------------------------------------------------- /pkg/v1/partial/with.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/partial/with.go -------------------------------------------------------------------------------- /pkg/v1/partial/with_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/partial/with_test.go -------------------------------------------------------------------------------- /pkg/v1/platform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/platform.go -------------------------------------------------------------------------------- /pkg/v1/platform_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/platform_test.go -------------------------------------------------------------------------------- /pkg/v1/progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/progress.go -------------------------------------------------------------------------------- /pkg/v1/random/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/random/doc.go -------------------------------------------------------------------------------- /pkg/v1/random/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/random/image.go -------------------------------------------------------------------------------- /pkg/v1/random/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/random/image_test.go -------------------------------------------------------------------------------- /pkg/v1/random/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/random/index.go -------------------------------------------------------------------------------- /pkg/v1/random/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/random/index_test.go -------------------------------------------------------------------------------- /pkg/v1/random/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/random/options.go -------------------------------------------------------------------------------- /pkg/v1/remote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/README.md -------------------------------------------------------------------------------- /pkg/v1/remote/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/catalog.go -------------------------------------------------------------------------------- /pkg/v1/remote/catalog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/catalog_test.go -------------------------------------------------------------------------------- /pkg/v1/remote/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/check.go -------------------------------------------------------------------------------- /pkg/v1/remote/check_e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/check_e2e_test.go -------------------------------------------------------------------------------- /pkg/v1/remote/check_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/check_test.go -------------------------------------------------------------------------------- /pkg/v1/remote/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/delete.go -------------------------------------------------------------------------------- /pkg/v1/remote/delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/delete_test.go -------------------------------------------------------------------------------- /pkg/v1/remote/descriptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/descriptor.go -------------------------------------------------------------------------------- /pkg/v1/remote/descriptor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/descriptor_test.go -------------------------------------------------------------------------------- /pkg/v1/remote/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/doc.go -------------------------------------------------------------------------------- /pkg/v1/remote/error_roundtrip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/error_roundtrip_test.go -------------------------------------------------------------------------------- /pkg/v1/remote/fetcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/fetcher.go -------------------------------------------------------------------------------- /pkg/v1/remote/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/image.go -------------------------------------------------------------------------------- /pkg/v1/remote/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/image_test.go -------------------------------------------------------------------------------- /pkg/v1/remote/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/index.go -------------------------------------------------------------------------------- /pkg/v1/remote/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/index_test.go -------------------------------------------------------------------------------- /pkg/v1/remote/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/layer.go -------------------------------------------------------------------------------- /pkg/v1/remote/layer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/layer_test.go -------------------------------------------------------------------------------- /pkg/v1/remote/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/list.go -------------------------------------------------------------------------------- /pkg/v1/remote/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/list_test.go -------------------------------------------------------------------------------- /pkg/v1/remote/mount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/mount.go -------------------------------------------------------------------------------- /pkg/v1/remote/mount_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/mount_test.go -------------------------------------------------------------------------------- /pkg/v1/remote/multi_write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/multi_write.go -------------------------------------------------------------------------------- /pkg/v1/remote/multi_write_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/multi_write_test.go -------------------------------------------------------------------------------- /pkg/v1/remote/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/options.go -------------------------------------------------------------------------------- /pkg/v1/remote/progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/progress.go -------------------------------------------------------------------------------- /pkg/v1/remote/progress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/progress_test.go -------------------------------------------------------------------------------- /pkg/v1/remote/puller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/puller.go -------------------------------------------------------------------------------- /pkg/v1/remote/pusher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/pusher.go -------------------------------------------------------------------------------- /pkg/v1/remote/referrers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/referrers.go -------------------------------------------------------------------------------- /pkg/v1/remote/referrers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/referrers_test.go -------------------------------------------------------------------------------- /pkg/v1/remote/schema1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/schema1.go -------------------------------------------------------------------------------- /pkg/v1/remote/schema1_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/schema1_test.go -------------------------------------------------------------------------------- /pkg/v1/remote/transport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/transport/README.md -------------------------------------------------------------------------------- /pkg/v1/remote/transport/basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/transport/basic.go -------------------------------------------------------------------------------- /pkg/v1/remote/transport/basic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/transport/basic_test.go -------------------------------------------------------------------------------- /pkg/v1/remote/transport/bearer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/transport/bearer.go -------------------------------------------------------------------------------- /pkg/v1/remote/transport/bearer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/transport/bearer_test.go -------------------------------------------------------------------------------- /pkg/v1/remote/transport/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/transport/doc.go -------------------------------------------------------------------------------- /pkg/v1/remote/transport/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/transport/error.go -------------------------------------------------------------------------------- /pkg/v1/remote/transport/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/transport/error_test.go -------------------------------------------------------------------------------- /pkg/v1/remote/transport/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/transport/logger.go -------------------------------------------------------------------------------- /pkg/v1/remote/transport/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/transport/logger_test.go -------------------------------------------------------------------------------- /pkg/v1/remote/transport/ping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/transport/ping.go -------------------------------------------------------------------------------- /pkg/v1/remote/transport/ping_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/transport/ping_test.go -------------------------------------------------------------------------------- /pkg/v1/remote/transport/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/transport/retry.go -------------------------------------------------------------------------------- /pkg/v1/remote/transport/retry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/transport/retry_test.go -------------------------------------------------------------------------------- /pkg/v1/remote/transport/schemer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/transport/schemer.go -------------------------------------------------------------------------------- /pkg/v1/remote/transport/scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/transport/scope.go -------------------------------------------------------------------------------- /pkg/v1/remote/transport/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/transport/transport.go -------------------------------------------------------------------------------- /pkg/v1/remote/transport/transport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/transport/transport_test.go -------------------------------------------------------------------------------- /pkg/v1/remote/transport/useragent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/transport/useragent.go -------------------------------------------------------------------------------- /pkg/v1/remote/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/write.go -------------------------------------------------------------------------------- /pkg/v1/remote/write_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/remote/write_test.go -------------------------------------------------------------------------------- /pkg/v1/static/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/static/layer.go -------------------------------------------------------------------------------- /pkg/v1/static/static_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/static/static_test.go -------------------------------------------------------------------------------- /pkg/v1/stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/stream/README.md -------------------------------------------------------------------------------- /pkg/v1/stream/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/stream/layer.go -------------------------------------------------------------------------------- /pkg/v1/stream/layer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/stream/layer_test.go -------------------------------------------------------------------------------- /pkg/v1/tarball/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/tarball/README.md -------------------------------------------------------------------------------- /pkg/v1/tarball/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/tarball/doc.go -------------------------------------------------------------------------------- /pkg/v1/tarball/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/tarball/image.go -------------------------------------------------------------------------------- /pkg/v1/tarball/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/tarball/image_test.go -------------------------------------------------------------------------------- /pkg/v1/tarball/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/tarball/layer.go -------------------------------------------------------------------------------- /pkg/v1/tarball/layer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/tarball/layer_test.go -------------------------------------------------------------------------------- /pkg/v1/tarball/progress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/tarball/progress_test.go -------------------------------------------------------------------------------- /pkg/v1/tarball/testdata/bar: -------------------------------------------------------------------------------- 1 | bar 2 | -------------------------------------------------------------------------------- /pkg/v1/tarball/testdata/bat/bat: -------------------------------------------------------------------------------- 1 | bat 2 | -------------------------------------------------------------------------------- /pkg/v1/tarball/testdata/baz: -------------------------------------------------------------------------------- 1 | baz 2 | -------------------------------------------------------------------------------- /pkg/v1/tarball/testdata/content.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/tarball/testdata/content.tar -------------------------------------------------------------------------------- /pkg/v1/tarball/testdata/foo: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /pkg/v1/tarball/testdata/hello-world-v25.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/tarball/testdata/hello-world-v25.tar -------------------------------------------------------------------------------- /pkg/v1/tarball/testdata/no_manifest.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/tarball/testdata/no_manifest.tar -------------------------------------------------------------------------------- /pkg/v1/tarball/testdata/null_manifest.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/tarball/testdata/null_manifest.tar -------------------------------------------------------------------------------- /pkg/v1/tarball/testdata/test_bundle.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/tarball/testdata/test_bundle.tar -------------------------------------------------------------------------------- /pkg/v1/tarball/testdata/test_image_1.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/tarball/testdata/test_image_1.tar -------------------------------------------------------------------------------- /pkg/v1/tarball/testdata/test_image_2.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/tarball/testdata/test_image_2.tar -------------------------------------------------------------------------------- /pkg/v1/tarball/testdata/test_link.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/tarball/testdata/test_link.tar -------------------------------------------------------------------------------- /pkg/v1/tarball/testdata/test_load_manifest.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/tarball/testdata/test_load_manifest.tar -------------------------------------------------------------------------------- /pkg/v1/tarball/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/tarball/write.go -------------------------------------------------------------------------------- /pkg/v1/tarball/write_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/tarball/write_test.go -------------------------------------------------------------------------------- /pkg/v1/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/types/types.go -------------------------------------------------------------------------------- /pkg/v1/types/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/types/types_test.go -------------------------------------------------------------------------------- /pkg/v1/validate/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/validate/doc.go -------------------------------------------------------------------------------- /pkg/v1/validate/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/validate/image.go -------------------------------------------------------------------------------- /pkg/v1/validate/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/validate/index.go -------------------------------------------------------------------------------- /pkg/v1/validate/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/validate/layer.go -------------------------------------------------------------------------------- /pkg/v1/validate/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/validate/options.go -------------------------------------------------------------------------------- /pkg/v1/zz_deepcopy_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/pkg/v1/zz_deepcopy_generated.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/Microsoft/go-winio/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @microsoft/containerplat 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/Microsoft/go-winio/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/Microsoft/go-winio/README.md -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/Microsoft/go-winio/backup.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/Microsoft/go-winio/doc.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/ea.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/Microsoft/go-winio/ea.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/Microsoft/go-winio/file.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/hvsock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/Microsoft/go-winio/hvsock.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/Microsoft/go-winio/pipe.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/reparse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/Microsoft/go-winio/reparse.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/sd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/Microsoft/go-winio/sd.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/Microsoft/go-winio/syscall.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/errdefs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/containerd/errdefs/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/containerd/errdefs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/containerd/errdefs/README.md -------------------------------------------------------------------------------- /vendor/github.com/containerd/errdefs/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/containerd/errdefs/errors.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/errdefs/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/containerd/errdefs/resolve.go -------------------------------------------------------------------------------- /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/cli/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/docker/cli/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/docker/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/docker/cli/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/cli/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/docker/cli/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/docker/distribution/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/docker/docker/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/docker/docker/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/docker/docker/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/docker/docker/api/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/api/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/docker/docker/api/common.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/client/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/docker/docker/client/info.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/client/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/docker/docker/client/login.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/client/ping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/docker/docker/client/ping.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/client/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/docker/docker/client/utils.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/docker/go-connections/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/sockets/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/docker/go-units/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/docker/go-units/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/docker/go-units/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/docker/go-units/circle.yml -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/docker/go-units/duration.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/docker/go-units/size.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/ulimit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/docker/go-units/ulimit.go -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/felixge/httpsnoop/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/felixge/httpsnoop/Makefile -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/felixge/httpsnoop/README.md -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/felixge/httpsnoop/docs.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/go-logr/logr/.golangci.yaml -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/go-logr/logr/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/go-logr/logr/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/go-logr/logr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/go-logr/logr/SECURITY.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/go-logr/logr/context.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/context_slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/go-logr/logr/context_slog.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/discard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/go-logr/logr/discard.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/funcr/funcr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/go-logr/logr/funcr/funcr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/logr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/go-logr/logr/logr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/sloghandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/go-logr/logr/sloghandler.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/slogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/go-logr/logr/slogr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/slogsink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/go-logr/logr/slogsink.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/go-logr/stdr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/go-logr/stdr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/stdr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/go-logr/stdr/stdr.go -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/google/go-cmp/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/cmp/compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/google/go-cmp/cmp/compare.go -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/cmp/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/google/go-cmp/cmp/export.go -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/cmp/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/google/go-cmp/cmp/options.go -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/cmp/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/google/go-cmp/cmp/path.go -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/cmp/report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/google/go-cmp/cmp/report.go -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/klauspost/compress/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/klauspost/compress/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/klauspost/compress/README.md -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/fse/fse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/klauspost/compress/fse/fse.go -------------------------------------------------------------------------------- /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/mitchellh/go-homedir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/mitchellh/go-homedir/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/pkg/errors/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/pkg/errors/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/pkg/errors/go113.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/sirupsen/logrus/.golangci.yml -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/sirupsen/logrus/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/sirupsen/logrus/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/sirupsen/logrus/README.md -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/alt_exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/sirupsen/logrus/alt_exit.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/sirupsen/logrus/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/sirupsen/logrus/exported.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/sirupsen/logrus/formatter.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/sirupsen/logrus/writer.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/cobra/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/cobra/.golangci.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/cobra/CONDUCT.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/cobra/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/cobra/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/cobra/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/cobra/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/cobra/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/cobra/SECURITY.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/active_help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/cobra/active_help.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/cobra/command.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command_notwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/cobra/command_notwin.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command_win.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/cobra/command_win.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/cobra/completions.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/doc/man_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/cobra/doc/man_docs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/doc/md_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/cobra/doc/md_docs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/doc/rest_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/cobra/doc/rest_docs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/doc/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/cobra/doc/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/doc/yaml_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/cobra/doc/yaml_docs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/flag_groups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/cobra/flag_groups.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/.editorconfig -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/.golangci.yaml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/bool_func.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/bool_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/duration_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/errors.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/float32_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/float64_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/func.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/golangflag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/golangflag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/int32_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/int64_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/ipnet_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/string_array.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/string_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_to_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/string_to_int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/text.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/time.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/spf13/pflag/uint_slice.go -------------------------------------------------------------------------------- /vendor/github.com/vbatts/tar-split/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/github.com/vbatts/tar-split/LICENSE -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/auto/sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/auto/sdk/LICENSE -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/auto/sdk/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/auto/sdk/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/auto/sdk/limit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/auto/sdk/limit.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/auto/sdk/span.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/auto/sdk/span.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/auto/sdk/tracer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/auto/sdk/tracer.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/.codespellrc -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/.gitattributes -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/.gitignore -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/.golangci.yml -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/.lycheeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/.lycheeignore -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/CODEOWNERS -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/LICENSE -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/Makefile -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/README.md -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/RELEASING.md -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/VERSIONING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/VERSIONING.md -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/attribute/kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/attribute/kv.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/baggage/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/baggage/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/codes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/codes/README.md -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/codes/codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/codes/codes.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/codes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/codes/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/handler.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/metric.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/metric/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/metric/LICENSE -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/metric/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/metric/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/metric/meter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/metric/meter.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/propagation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/propagation.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/renovate.json -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/requirements.txt: -------------------------------------------------------------------------------- 1 | codespell==2.4.1 2 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/trace.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/trace/LICENSE -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/trace/README.md -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/auto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/trace/auto.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/trace/config.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/trace/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/noop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/trace/noop.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/span.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/trace/span.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/trace/trace.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/tracer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/trace/tracer.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/version.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/versions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/go.opentelemetry.io/otel/versions.yaml -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/mod/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/semver/semver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/mod/semver/semver.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/oauth2/.travis.yml -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/oauth2/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/deviceauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/oauth2/deviceauth.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/appengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/oauth2/google/appengine.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/oauth2/google/default.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/oauth2/google/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/oauth2/google/error.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/google.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/oauth2/google/google.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/oauth2/google/jwt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/sdk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/oauth2/google/sdk.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/internal/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/oauth2/internal/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/internal/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/oauth2/internal/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/internal/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/oauth2/internal/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jws/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/oauth2/jws/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/oauth2/jwt/jwt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/pkce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/oauth2/pkce.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/oauth2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/errgroup/errgroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sync/errgroup/errgroup.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /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/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/affinity_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/affinity_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_aix_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_riscv64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_riscv64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mipsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_zos_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/asm_zos_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/auxv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/auxv.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bluetooth_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/bluetooth_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bpxsvc_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/bpxsvc_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bpxsvc_zos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/bpxsvc_zos.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/dev_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/dev_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/dev_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/endian_little.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/fcntl_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ifreq_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/ifreq_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/ioctl_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_signed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/ioctl_signed.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_unsigned.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/ioctl_unsigned.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/ioctl_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mmap_nomremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/mmap_nomremap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/mremap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/pagesize_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/pagesize_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/pledge_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/pledge_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ptrace_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/ptrace_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ptrace_ios.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/ptrace_ios.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/syscall_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_hurd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/syscall_hurd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_illumos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/syscall_illumos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/syscall_unix_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sysvshm_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/sysvshm_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sysvshm_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/sysvshm_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/unveil_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/unveil_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/windows/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/dll_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/windows/dll_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/env_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/windows/env_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mkerrors.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/windows/mkerrors.bash -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/windows/mksyscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ast/edge/edge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/tools/go/ast/edge/edge.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/packages/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/golang.org/x/tools/go/packages/doc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/gopkg.in/yaml.v3/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/go-containerregistry/HEAD/vendor/modules.txt --------------------------------------------------------------------------------