├── .dockerignore ├── .github ├── dependabot.yaml └── workflows │ ├── ci.yml │ ├── cli-build.yml │ ├── cli-validate.yml │ ├── dmr-daily-check.yml │ ├── integration-test.yml │ ├── promote-to-latest.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── .golangci.yml ├── Dockerfile ├── LICENSE ├── METRICS.md ├── Makefile ├── README.md ├── assets ├── dummy.gguf └── license.txt ├── charts └── docker-model-runner │ ├── CONTRIBUTING.md │ ├── Chart.yaml │ ├── Makefile │ ├── README.md │ ├── static │ ├── docker-model-runner-desktop.yaml │ ├── docker-model-runner-eks.yaml │ ├── docker-model-runner-smollm2.yaml │ └── docker-model-runner.yaml │ ├── templates │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── deployment.yaml │ └── service.yaml │ └── values.yaml ├── cmd ├── cli │ ├── .gitignore │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── commands │ │ ├── completion │ │ │ └── functions.go │ │ ├── compose.go │ │ ├── configure.go │ │ ├── df.go │ │ ├── formatter │ │ │ └── json.go │ │ ├── images.go │ │ ├── images_test.go │ │ ├── inspect.go │ │ ├── install-runner.go │ │ ├── install-runner_test.go │ │ ├── integration_test.go │ │ ├── list.go │ │ ├── list_test.go │ │ ├── logs.go │ │ ├── nim.go │ │ ├── nim_test.go │ │ ├── package.go │ │ ├── ps.go │ │ ├── pull.go │ │ ├── purge.go │ │ ├── push.go │ │ ├── reinstall-runner.go │ │ ├── reinstall-runner_test.go │ │ ├── requests.go │ │ ├── restart-runner.go │ │ ├── rm.go │ │ ├── root.go │ │ ├── run.go │ │ ├── run_test.go │ │ ├── start-runner.go │ │ ├── status.go │ │ ├── status_test.go │ │ ├── stop-runner.go │ │ ├── tag.go │ │ ├── uninstall-runner.go │ │ ├── unload.go │ │ ├── utils.go │ │ ├── utils_test.go │ │ └── version.go │ ├── desktop-module │ │ ├── Dockerfile │ │ └── module-metadata.json │ ├── desktop │ │ ├── api.go │ │ ├── context.go │ │ ├── desktop.go │ │ ├── desktop_test.go │ │ ├── progress.go │ │ └── version.go │ ├── docker-bake.hcl │ ├── docs │ │ ├── generate.go │ │ └── reference │ │ │ ├── docker_model.yaml │ │ │ ├── docker_model_compose.yaml │ │ │ ├── docker_model_compose_down.yaml │ │ │ ├── docker_model_compose_metadata.yaml │ │ │ ├── docker_model_compose_up.yaml │ │ │ ├── docker_model_configure.yaml │ │ │ ├── docker_model_df.yaml │ │ │ ├── docker_model_inspect.yaml │ │ │ ├── docker_model_install-runner.yaml │ │ │ ├── docker_model_list.yaml │ │ │ ├── docker_model_logs.yaml │ │ │ ├── docker_model_package.yaml │ │ │ ├── docker_model_ps.yaml │ │ │ ├── docker_model_pull.yaml │ │ │ ├── docker_model_purge.yaml │ │ │ ├── docker_model_push.yaml │ │ │ ├── docker_model_reinstall-runner.yaml │ │ │ ├── docker_model_requests.yaml │ │ │ ├── docker_model_restart-runner.yaml │ │ │ ├── docker_model_rm.yaml │ │ │ ├── docker_model_run.yaml │ │ │ ├── docker_model_start-runner.yaml │ │ │ ├── docker_model_status.yaml │ │ │ ├── docker_model_stop-runner.yaml │ │ │ ├── docker_model_tag.yaml │ │ │ ├── docker_model_uninstall-runner.yaml │ │ │ ├── docker_model_unload.yaml │ │ │ ├── docker_model_version.yaml │ │ │ ├── model.md │ │ │ ├── model_configure.md │ │ │ ├── model_df.md │ │ │ ├── model_inspect.md │ │ │ ├── model_install-runner.md │ │ │ ├── model_list.md │ │ │ ├── model_logs.md │ │ │ ├── model_package.md │ │ │ ├── model_ps.md │ │ │ ├── model_pull.md │ │ │ ├── model_purge.md │ │ │ ├── model_push.md │ │ │ ├── model_reinstall-runner.md │ │ │ ├── model_requests.md │ │ │ ├── model_restart-runner.md │ │ │ ├── model_rm.md │ │ │ ├── model_run.md │ │ │ ├── model_start-runner.md │ │ │ ├── model_status.md │ │ │ ├── model_stop-runner.md │ │ │ ├── model_tag.md │ │ │ ├── model_uninstall-runner.md │ │ │ ├── model_unload.md │ │ │ └── model_version.md │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── mocks │ │ └── mock_desktop.go │ ├── pkg │ │ ├── gpu │ │ │ └── gpu.go │ │ ├── standalone │ │ │ ├── containers.go │ │ │ ├── controller_image.go │ │ │ ├── images.go │ │ │ ├── labels.go │ │ │ ├── ports.go │ │ │ ├── status.go │ │ │ └── volumes.go │ │ └── types │ │ │ └── engine.go │ └── readline │ │ ├── buffer.go │ │ ├── errors.go │ │ ├── history.go │ │ ├── readline.go │ │ ├── readline_unix.go │ │ ├── readline_windows.go │ │ ├── term.go │ │ ├── term_bsd.go │ │ ├── term_linux.go │ │ ├── term_windows.go │ │ └── types.go └── mdltool │ ├── main.go │ └── main_test.go ├── demos ├── embeddings │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── indexer.js │ ├── package-lock.json │ ├── package.json │ ├── search.js │ └── server.js ├── extractor │ ├── .gitignore │ ├── README.md │ ├── demo.html │ ├── invoice.pdf │ ├── package.json │ └── server.js └── multimodal │ ├── README.md │ └── demo.html ├── go.mod ├── go.sum ├── go.work ├── go.work.sum ├── llamacpp ├── Makefile └── native │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── cann.Dockerfile │ ├── cuda.Dockerfile │ ├── generic.Dockerfile │ ├── install-clang.sh │ ├── install-vulkan.sh │ ├── musa.Dockerfile │ ├── rocm.Dockerfile │ └── src │ ├── nv-gpu-info │ ├── CMakeLists.txt │ └── nv-gpu-info.c │ └── server │ ├── CMakeLists.txt │ ├── Makefile │ ├── README.md │ ├── httplib.h │ ├── server.cpp │ ├── server.patch │ └── utils.hpp ├── main.go ├── main_test.go ├── pkg ├── diskusage │ └── diskusage.go ├── distribution │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── assets │ │ ├── dummy-00001-of-00002.gguf │ │ ├── dummy-00002-of-00002.gguf │ │ ├── dummy.gguf │ │ ├── dummy.mmproj │ │ ├── license.txt │ │ └── template.jinja │ ├── builder │ │ ├── builder.go │ │ └── builder_test.go │ ├── distribution │ │ ├── bundle_test.go │ │ ├── client.go │ │ ├── client_test.go │ │ ├── delete_test.go │ │ ├── ecr_test.go │ │ ├── errors.go │ │ ├── gar_test.go │ │ └── load_test.go │ ├── internal │ │ ├── bundle │ │ │ ├── bundle.go │ │ │ ├── parse.go │ │ │ ├── parse_test.go │ │ │ └── unpack.go │ │ ├── gguf │ │ │ ├── create.go │ │ │ ├── metadata.go │ │ │ ├── model.go │ │ │ └── model_test.go │ │ ├── mutate │ │ │ ├── model.go │ │ │ ├── mutate.go │ │ │ └── mutate_test.go │ │ ├── partial │ │ │ ├── layer.go │ │ │ ├── model.go │ │ │ ├── partial.go │ │ │ └── partial_test.go │ │ ├── progress │ │ │ ├── reader.go │ │ │ ├── reporter.go │ │ │ └── reporter_test.go │ │ ├── safetensors │ │ │ ├── create.go │ │ │ ├── metadata.go │ │ │ ├── model.go │ │ │ └── model_test.go │ │ ├── store │ │ │ ├── blobs.go │ │ │ ├── blobs_test.go │ │ │ ├── bundles.go │ │ │ ├── errors.go │ │ │ ├── index.go │ │ │ ├── index_test.go │ │ │ ├── layout.go │ │ │ ├── manifests.go │ │ │ ├── model.go │ │ │ ├── store.go │ │ │ ├── store_test.go │ │ │ └── testdata │ │ │ │ ├── dummy.gguf │ │ │ │ ├── dummy.mmproj │ │ │ │ └── license.txt │ │ └── utils │ │ │ └── utils.go │ ├── packaging │ │ ├── dirtar.go │ │ ├── dirtar_test.go │ │ ├── safetensors.go │ │ └── safetensors_test.go │ ├── registry │ │ ├── artifact.go │ │ ├── client.go │ │ ├── client_test.go │ │ └── errors.go │ ├── tarball │ │ ├── file.go │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── target.go │ │ ├── target_test.go │ │ └── testdata │ │ │ ├── archive.tar │ │ │ └── archive │ │ │ ├── blobs │ │ │ ├── sha256 │ │ │ │ └── bec7cb2222b54879bf3c7e70504960bdfbd898a05ab1f8247808484869a46bad │ │ │ └── sha512 │ │ │ │ └── d302a5a946106425f12177a93f87c1b7d4ee8ad851937a6a59dc6e0b758fbed5ab10a116509f73165e2b29b40e870f8c28a6a4f6c1ebfe9fa7d295ba7ff151c9 │ │ │ ├── ignore-me │ │ │ └── .gitkeep │ │ │ └── manifest.json │ └── types │ │ ├── config.go │ │ └── model.go ├── environment │ └── environment.go ├── go-containerregistry │ ├── .codecov.yaml │ ├── .gitattributes │ ├── .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 ├── gpuinfo │ ├── gpuinfo.go │ ├── memory_darwin_cgo.go │ ├── memory_darwin_nocgo.go │ ├── memory_linux_cgo.go │ ├── memory_linux_nocgo.go │ ├── memory_windows.go │ ├── metal.h │ ├── metal.m │ ├── nvidia.c │ └── nvidia.h ├── inference │ ├── api.go │ ├── backend.go │ ├── backends │ │ ├── llamacpp │ │ │ ├── download.go │ │ │ ├── download_darwin.go │ │ │ ├── download_linux.go │ │ │ ├── download_windows.go │ │ │ ├── gpuinfo_notwindows.go │ │ │ ├── gpuinfo_windows.go │ │ │ ├── llamacpp.go │ │ │ ├── llamacpp_config.go │ │ │ └── llamacpp_config_test.go │ │ ├── mlx │ │ │ ├── mlx.go │ │ │ ├── mlx_config.go │ │ │ └── mlx_config_test.go │ │ ├── runner.go │ │ └── vllm │ │ │ ├── vllm.go │ │ │ ├── vllm_config.go │ │ │ └── vllm_config_test.go │ ├── config │ │ └── config.go │ ├── memory │ │ ├── estimator.go │ │ ├── settings.go │ │ └── system.go │ ├── models │ │ ├── adapter.go │ │ ├── api.go │ │ ├── handler_test.go │ │ ├── http_handler.go │ │ └── manager.go │ ├── platform │ │ └── platform.go │ └── scheduling │ │ ├── api.go │ │ ├── errors.go │ │ ├── http_handler.go │ │ ├── installer.go │ │ ├── loader.go │ │ ├── loader_test.go │ │ ├── runner.go │ │ ├── scheduler.go │ │ └── scheduler_test.go ├── internal │ ├── archive │ │ └── archive.go │ ├── dockerhub │ │ ├── download.go │ │ └── extract.go │ ├── jsonutil │ │ └── jsonutil.go │ └── utils │ │ └── log.go ├── logging │ └── logging.go ├── metrics │ ├── aggregated_handler.go │ ├── metrics.go │ ├── openai_recorder.go │ ├── openai_recorder_test.go │ └── scheduler_proxy.go ├── middleware │ ├── alias.go │ ├── cors.go │ └── cors_test.go ├── ollama │ ├── api.go │ └── http_handler.go ├── routing │ └── routing.go ├── sandbox │ ├── sandbox.go │ ├── sandbox_darwin.go │ ├── sandbox_other.go │ ├── sandbox_test.go │ ├── sandbox_windows.go │ └── sandbox_windows_test.go └── tailbuffer │ ├── tailbuffer.go │ └── tailbuffer_test.go └── scripts ├── apt-install.sh ├── docker-run.sh ├── test-docker-ce-in-container.sh └── test-docker-ce-installation.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/cli-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/.github/workflows/cli-build.yml -------------------------------------------------------------------------------- /.github/workflows/cli-validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/.github/workflows/cli-validate.yml -------------------------------------------------------------------------------- /.github/workflows/dmr-daily-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/.github/workflows/dmr-daily-check.yml -------------------------------------------------------------------------------- /.github/workflows/integration-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/.github/workflows/integration-test.yml -------------------------------------------------------------------------------- /.github/workflows/promote-to-latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/.github/workflows/promote-to-latest.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/.gitmodules -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/.golangci.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/LICENSE -------------------------------------------------------------------------------- /METRICS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/METRICS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/README.md -------------------------------------------------------------------------------- /assets/dummy.gguf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/assets/dummy.gguf -------------------------------------------------------------------------------- /assets/license.txt: -------------------------------------------------------------------------------- 1 | FAKE LICENSE 2 | -------------------------------------------------------------------------------- /charts/docker-model-runner/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/charts/docker-model-runner/CONTRIBUTING.md -------------------------------------------------------------------------------- /charts/docker-model-runner/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/charts/docker-model-runner/Chart.yaml -------------------------------------------------------------------------------- /charts/docker-model-runner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/charts/docker-model-runner/Makefile -------------------------------------------------------------------------------- /charts/docker-model-runner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/charts/docker-model-runner/README.md -------------------------------------------------------------------------------- /charts/docker-model-runner/static/docker-model-runner-desktop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/charts/docker-model-runner/static/docker-model-runner-desktop.yaml -------------------------------------------------------------------------------- /charts/docker-model-runner/static/docker-model-runner-eks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/charts/docker-model-runner/static/docker-model-runner-eks.yaml -------------------------------------------------------------------------------- /charts/docker-model-runner/static/docker-model-runner-smollm2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/charts/docker-model-runner/static/docker-model-runner-smollm2.yaml -------------------------------------------------------------------------------- /charts/docker-model-runner/static/docker-model-runner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/charts/docker-model-runner/static/docker-model-runner.yaml -------------------------------------------------------------------------------- /charts/docker-model-runner/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/charts/docker-model-runner/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/docker-model-runner/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/charts/docker-model-runner/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/docker-model-runner/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/charts/docker-model-runner/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/docker-model-runner/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/charts/docker-model-runner/templates/service.yaml -------------------------------------------------------------------------------- /charts/docker-model-runner/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/charts/docker-model-runner/values.yaml -------------------------------------------------------------------------------- /cmd/cli/.gitignore: -------------------------------------------------------------------------------- 1 | model-cli 2 | .idea/ 3 | dist/ -------------------------------------------------------------------------------- /cmd/cli/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/Dockerfile -------------------------------------------------------------------------------- /cmd/cli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/Makefile -------------------------------------------------------------------------------- /cmd/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/README.md -------------------------------------------------------------------------------- /cmd/cli/commands/completion/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/completion/functions.go -------------------------------------------------------------------------------- /cmd/cli/commands/compose.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/compose.go -------------------------------------------------------------------------------- /cmd/cli/commands/configure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/configure.go -------------------------------------------------------------------------------- /cmd/cli/commands/df.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/df.go -------------------------------------------------------------------------------- /cmd/cli/commands/formatter/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/formatter/json.go -------------------------------------------------------------------------------- /cmd/cli/commands/images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/images.go -------------------------------------------------------------------------------- /cmd/cli/commands/images_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/images_test.go -------------------------------------------------------------------------------- /cmd/cli/commands/inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/inspect.go -------------------------------------------------------------------------------- /cmd/cli/commands/install-runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/install-runner.go -------------------------------------------------------------------------------- /cmd/cli/commands/install-runner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/install-runner_test.go -------------------------------------------------------------------------------- /cmd/cli/commands/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/integration_test.go -------------------------------------------------------------------------------- /cmd/cli/commands/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/list.go -------------------------------------------------------------------------------- /cmd/cli/commands/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/list_test.go -------------------------------------------------------------------------------- /cmd/cli/commands/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/logs.go -------------------------------------------------------------------------------- /cmd/cli/commands/nim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/nim.go -------------------------------------------------------------------------------- /cmd/cli/commands/nim_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/nim_test.go -------------------------------------------------------------------------------- /cmd/cli/commands/package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/package.go -------------------------------------------------------------------------------- /cmd/cli/commands/ps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/ps.go -------------------------------------------------------------------------------- /cmd/cli/commands/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/pull.go -------------------------------------------------------------------------------- /cmd/cli/commands/purge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/purge.go -------------------------------------------------------------------------------- /cmd/cli/commands/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/push.go -------------------------------------------------------------------------------- /cmd/cli/commands/reinstall-runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/reinstall-runner.go -------------------------------------------------------------------------------- /cmd/cli/commands/reinstall-runner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/reinstall-runner_test.go -------------------------------------------------------------------------------- /cmd/cli/commands/requests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/requests.go -------------------------------------------------------------------------------- /cmd/cli/commands/restart-runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/restart-runner.go -------------------------------------------------------------------------------- /cmd/cli/commands/rm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/rm.go -------------------------------------------------------------------------------- /cmd/cli/commands/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/root.go -------------------------------------------------------------------------------- /cmd/cli/commands/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/run.go -------------------------------------------------------------------------------- /cmd/cli/commands/run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/run_test.go -------------------------------------------------------------------------------- /cmd/cli/commands/start-runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/start-runner.go -------------------------------------------------------------------------------- /cmd/cli/commands/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/status.go -------------------------------------------------------------------------------- /cmd/cli/commands/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/status_test.go -------------------------------------------------------------------------------- /cmd/cli/commands/stop-runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/stop-runner.go -------------------------------------------------------------------------------- /cmd/cli/commands/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/tag.go -------------------------------------------------------------------------------- /cmd/cli/commands/uninstall-runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/uninstall-runner.go -------------------------------------------------------------------------------- /cmd/cli/commands/unload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/unload.go -------------------------------------------------------------------------------- /cmd/cli/commands/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/utils.go -------------------------------------------------------------------------------- /cmd/cli/commands/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/utils_test.go -------------------------------------------------------------------------------- /cmd/cli/commands/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/commands/version.go -------------------------------------------------------------------------------- /cmd/cli/desktop-module/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/desktop-module/Dockerfile -------------------------------------------------------------------------------- /cmd/cli/desktop-module/module-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/desktop-module/module-metadata.json -------------------------------------------------------------------------------- /cmd/cli/desktop/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/desktop/api.go -------------------------------------------------------------------------------- /cmd/cli/desktop/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/desktop/context.go -------------------------------------------------------------------------------- /cmd/cli/desktop/desktop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/desktop/desktop.go -------------------------------------------------------------------------------- /cmd/cli/desktop/desktop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/desktop/desktop_test.go -------------------------------------------------------------------------------- /cmd/cli/desktop/progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/desktop/progress.go -------------------------------------------------------------------------------- /cmd/cli/desktop/version.go: -------------------------------------------------------------------------------- 1 | package desktop 2 | 3 | var Version = "dev" 4 | -------------------------------------------------------------------------------- /cmd/cli/docker-bake.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docker-bake.hcl -------------------------------------------------------------------------------- /cmd/cli/docs/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/generate.go -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_compose.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_compose_down.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_compose_down.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_compose_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_compose_metadata.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_compose_up.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_compose_up.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_configure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_configure.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_df.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_df.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_inspect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_inspect.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_install-runner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_install-runner.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_list.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_logs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_logs.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_package.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_ps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_ps.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_pull.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_pull.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_purge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_purge.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_push.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_reinstall-runner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_reinstall-runner.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_requests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_requests.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_restart-runner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_restart-runner.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_rm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_rm.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_run.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_run.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_start-runner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_start-runner.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_status.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_stop-runner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_stop-runner.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_tag.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_uninstall-runner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_uninstall-runner.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_unload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_unload.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/docker_model_version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/docker_model_version.yaml -------------------------------------------------------------------------------- /cmd/cli/docs/reference/model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/model.md -------------------------------------------------------------------------------- /cmd/cli/docs/reference/model_configure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/model_configure.md -------------------------------------------------------------------------------- /cmd/cli/docs/reference/model_df.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/model_df.md -------------------------------------------------------------------------------- /cmd/cli/docs/reference/model_inspect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/model_inspect.md -------------------------------------------------------------------------------- /cmd/cli/docs/reference/model_install-runner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/model_install-runner.md -------------------------------------------------------------------------------- /cmd/cli/docs/reference/model_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/model_list.md -------------------------------------------------------------------------------- /cmd/cli/docs/reference/model_logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/model_logs.md -------------------------------------------------------------------------------- /cmd/cli/docs/reference/model_package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/model_package.md -------------------------------------------------------------------------------- /cmd/cli/docs/reference/model_ps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/model_ps.md -------------------------------------------------------------------------------- /cmd/cli/docs/reference/model_pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/model_pull.md -------------------------------------------------------------------------------- /cmd/cli/docs/reference/model_purge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/model_purge.md -------------------------------------------------------------------------------- /cmd/cli/docs/reference/model_push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/model_push.md -------------------------------------------------------------------------------- /cmd/cli/docs/reference/model_reinstall-runner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/model_reinstall-runner.md -------------------------------------------------------------------------------- /cmd/cli/docs/reference/model_requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/model_requests.md -------------------------------------------------------------------------------- /cmd/cli/docs/reference/model_restart-runner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/model_restart-runner.md -------------------------------------------------------------------------------- /cmd/cli/docs/reference/model_rm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/model_rm.md -------------------------------------------------------------------------------- /cmd/cli/docs/reference/model_run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/model_run.md -------------------------------------------------------------------------------- /cmd/cli/docs/reference/model_start-runner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/model_start-runner.md -------------------------------------------------------------------------------- /cmd/cli/docs/reference/model_status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/model_status.md -------------------------------------------------------------------------------- /cmd/cli/docs/reference/model_stop-runner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/model_stop-runner.md -------------------------------------------------------------------------------- /cmd/cli/docs/reference/model_tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/model_tag.md -------------------------------------------------------------------------------- /cmd/cli/docs/reference/model_uninstall-runner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/model_uninstall-runner.md -------------------------------------------------------------------------------- /cmd/cli/docs/reference/model_unload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/model_unload.md -------------------------------------------------------------------------------- /cmd/cli/docs/reference/model_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/docs/reference/model_version.md -------------------------------------------------------------------------------- /cmd/cli/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/go.mod -------------------------------------------------------------------------------- /cmd/cli/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/go.sum -------------------------------------------------------------------------------- /cmd/cli/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/main.go -------------------------------------------------------------------------------- /cmd/cli/mocks/mock_desktop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/mocks/mock_desktop.go -------------------------------------------------------------------------------- /cmd/cli/pkg/gpu/gpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/pkg/gpu/gpu.go -------------------------------------------------------------------------------- /cmd/cli/pkg/standalone/containers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/pkg/standalone/containers.go -------------------------------------------------------------------------------- /cmd/cli/pkg/standalone/controller_image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/pkg/standalone/controller_image.go -------------------------------------------------------------------------------- /cmd/cli/pkg/standalone/images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/pkg/standalone/images.go -------------------------------------------------------------------------------- /cmd/cli/pkg/standalone/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/pkg/standalone/labels.go -------------------------------------------------------------------------------- /cmd/cli/pkg/standalone/ports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/pkg/standalone/ports.go -------------------------------------------------------------------------------- /cmd/cli/pkg/standalone/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/pkg/standalone/status.go -------------------------------------------------------------------------------- /cmd/cli/pkg/standalone/volumes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/pkg/standalone/volumes.go -------------------------------------------------------------------------------- /cmd/cli/pkg/types/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/pkg/types/engine.go -------------------------------------------------------------------------------- /cmd/cli/readline/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/readline/buffer.go -------------------------------------------------------------------------------- /cmd/cli/readline/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/readline/errors.go -------------------------------------------------------------------------------- /cmd/cli/readline/history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/readline/history.go -------------------------------------------------------------------------------- /cmd/cli/readline/readline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/readline/readline.go -------------------------------------------------------------------------------- /cmd/cli/readline/readline_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/readline/readline_unix.go -------------------------------------------------------------------------------- /cmd/cli/readline/readline_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/readline/readline_windows.go -------------------------------------------------------------------------------- /cmd/cli/readline/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/readline/term.go -------------------------------------------------------------------------------- /cmd/cli/readline/term_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/readline/term_bsd.go -------------------------------------------------------------------------------- /cmd/cli/readline/term_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/readline/term_linux.go -------------------------------------------------------------------------------- /cmd/cli/readline/term_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/readline/term_windows.go -------------------------------------------------------------------------------- /cmd/cli/readline/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/cli/readline/types.go -------------------------------------------------------------------------------- /cmd/mdltool/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/mdltool/main.go -------------------------------------------------------------------------------- /cmd/mdltool/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/cmd/mdltool/main_test.go -------------------------------------------------------------------------------- /demos/embeddings/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/demos/embeddings/.gitignore -------------------------------------------------------------------------------- /demos/embeddings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/demos/embeddings/README.md -------------------------------------------------------------------------------- /demos/embeddings/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/demos/embeddings/index.html -------------------------------------------------------------------------------- /demos/embeddings/indexer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/demos/embeddings/indexer.js -------------------------------------------------------------------------------- /demos/embeddings/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/demos/embeddings/package-lock.json -------------------------------------------------------------------------------- /demos/embeddings/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/demos/embeddings/package.json -------------------------------------------------------------------------------- /demos/embeddings/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/demos/embeddings/search.js -------------------------------------------------------------------------------- /demos/embeddings/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/demos/embeddings/server.js -------------------------------------------------------------------------------- /demos/extractor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/demos/extractor/.gitignore -------------------------------------------------------------------------------- /demos/extractor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/demos/extractor/README.md -------------------------------------------------------------------------------- /demos/extractor/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/demos/extractor/demo.html -------------------------------------------------------------------------------- /demos/extractor/invoice.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/demos/extractor/invoice.pdf -------------------------------------------------------------------------------- /demos/extractor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/demos/extractor/package.json -------------------------------------------------------------------------------- /demos/extractor/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/demos/extractor/server.js -------------------------------------------------------------------------------- /demos/multimodal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/demos/multimodal/README.md -------------------------------------------------------------------------------- /demos/multimodal/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/demos/multimodal/demo.html -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/go.sum -------------------------------------------------------------------------------- /go.work: -------------------------------------------------------------------------------- 1 | go 1.24.0 2 | 3 | use ( 4 | . 5 | cmd/cli 6 | pkg/go-containerregistry 7 | ) 8 | -------------------------------------------------------------------------------- /go.work.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/go.work.sum -------------------------------------------------------------------------------- /llamacpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/llamacpp/Makefile -------------------------------------------------------------------------------- /llamacpp/native/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | *.orig 3 | -------------------------------------------------------------------------------- /llamacpp/native/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/llamacpp/native/CMakeLists.txt -------------------------------------------------------------------------------- /llamacpp/native/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/llamacpp/native/README.md -------------------------------------------------------------------------------- /llamacpp/native/cann.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/llamacpp/native/cann.Dockerfile -------------------------------------------------------------------------------- /llamacpp/native/cuda.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/llamacpp/native/cuda.Dockerfile -------------------------------------------------------------------------------- /llamacpp/native/generic.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/llamacpp/native/generic.Dockerfile -------------------------------------------------------------------------------- /llamacpp/native/install-clang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/llamacpp/native/install-clang.sh -------------------------------------------------------------------------------- /llamacpp/native/install-vulkan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/llamacpp/native/install-vulkan.sh -------------------------------------------------------------------------------- /llamacpp/native/musa.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/llamacpp/native/musa.Dockerfile -------------------------------------------------------------------------------- /llamacpp/native/rocm.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/llamacpp/native/rocm.Dockerfile -------------------------------------------------------------------------------- /llamacpp/native/src/nv-gpu-info/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/llamacpp/native/src/nv-gpu-info/CMakeLists.txt -------------------------------------------------------------------------------- /llamacpp/native/src/nv-gpu-info/nv-gpu-info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/llamacpp/native/src/nv-gpu-info/nv-gpu-info.c -------------------------------------------------------------------------------- /llamacpp/native/src/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/llamacpp/native/src/server/CMakeLists.txt -------------------------------------------------------------------------------- /llamacpp/native/src/server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/llamacpp/native/src/server/Makefile -------------------------------------------------------------------------------- /llamacpp/native/src/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/llamacpp/native/src/server/README.md -------------------------------------------------------------------------------- /llamacpp/native/src/server/httplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/llamacpp/native/src/server/httplib.h -------------------------------------------------------------------------------- /llamacpp/native/src/server/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/llamacpp/native/src/server/server.cpp -------------------------------------------------------------------------------- /llamacpp/native/src/server/server.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/llamacpp/native/src/server/server.patch -------------------------------------------------------------------------------- /llamacpp/native/src/server/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/llamacpp/native/src/server/utils.hpp -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/main_test.go -------------------------------------------------------------------------------- /pkg/diskusage/diskusage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/diskusage/diskusage.go -------------------------------------------------------------------------------- /pkg/distribution/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/LICENSE -------------------------------------------------------------------------------- /pkg/distribution/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/Makefile -------------------------------------------------------------------------------- /pkg/distribution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/README.md -------------------------------------------------------------------------------- /pkg/distribution/assets/dummy-00001-of-00002.gguf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/assets/dummy-00001-of-00002.gguf -------------------------------------------------------------------------------- /pkg/distribution/assets/dummy-00002-of-00002.gguf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/assets/dummy-00002-of-00002.gguf -------------------------------------------------------------------------------- /pkg/distribution/assets/dummy.gguf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/assets/dummy.gguf -------------------------------------------------------------------------------- /pkg/distribution/assets/dummy.mmproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/assets/dummy.mmproj -------------------------------------------------------------------------------- /pkg/distribution/assets/license.txt: -------------------------------------------------------------------------------- 1 | FAKE LICENSE 2 | -------------------------------------------------------------------------------- /pkg/distribution/assets/template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/assets/template.jinja -------------------------------------------------------------------------------- /pkg/distribution/builder/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/builder/builder.go -------------------------------------------------------------------------------- /pkg/distribution/builder/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/builder/builder_test.go -------------------------------------------------------------------------------- /pkg/distribution/distribution/bundle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/distribution/bundle_test.go -------------------------------------------------------------------------------- /pkg/distribution/distribution/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/distribution/client.go -------------------------------------------------------------------------------- /pkg/distribution/distribution/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/distribution/client_test.go -------------------------------------------------------------------------------- /pkg/distribution/distribution/delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/distribution/delete_test.go -------------------------------------------------------------------------------- /pkg/distribution/distribution/ecr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/distribution/ecr_test.go -------------------------------------------------------------------------------- /pkg/distribution/distribution/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/distribution/errors.go -------------------------------------------------------------------------------- /pkg/distribution/distribution/gar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/distribution/gar_test.go -------------------------------------------------------------------------------- /pkg/distribution/distribution/load_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/distribution/load_test.go -------------------------------------------------------------------------------- /pkg/distribution/internal/bundle/bundle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/bundle/bundle.go -------------------------------------------------------------------------------- /pkg/distribution/internal/bundle/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/bundle/parse.go -------------------------------------------------------------------------------- /pkg/distribution/internal/bundle/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/bundle/parse_test.go -------------------------------------------------------------------------------- /pkg/distribution/internal/bundle/unpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/bundle/unpack.go -------------------------------------------------------------------------------- /pkg/distribution/internal/gguf/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/gguf/create.go -------------------------------------------------------------------------------- /pkg/distribution/internal/gguf/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/gguf/metadata.go -------------------------------------------------------------------------------- /pkg/distribution/internal/gguf/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/gguf/model.go -------------------------------------------------------------------------------- /pkg/distribution/internal/gguf/model_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/gguf/model_test.go -------------------------------------------------------------------------------- /pkg/distribution/internal/mutate/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/mutate/model.go -------------------------------------------------------------------------------- /pkg/distribution/internal/mutate/mutate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/mutate/mutate.go -------------------------------------------------------------------------------- /pkg/distribution/internal/mutate/mutate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/mutate/mutate_test.go -------------------------------------------------------------------------------- /pkg/distribution/internal/partial/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/partial/layer.go -------------------------------------------------------------------------------- /pkg/distribution/internal/partial/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/partial/model.go -------------------------------------------------------------------------------- /pkg/distribution/internal/partial/partial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/partial/partial.go -------------------------------------------------------------------------------- /pkg/distribution/internal/partial/partial_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/partial/partial_test.go -------------------------------------------------------------------------------- /pkg/distribution/internal/progress/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/progress/reader.go -------------------------------------------------------------------------------- /pkg/distribution/internal/progress/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/progress/reporter.go -------------------------------------------------------------------------------- /pkg/distribution/internal/progress/reporter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/progress/reporter_test.go -------------------------------------------------------------------------------- /pkg/distribution/internal/safetensors/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/safetensors/create.go -------------------------------------------------------------------------------- /pkg/distribution/internal/safetensors/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/safetensors/metadata.go -------------------------------------------------------------------------------- /pkg/distribution/internal/safetensors/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/safetensors/model.go -------------------------------------------------------------------------------- /pkg/distribution/internal/safetensors/model_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/safetensors/model_test.go -------------------------------------------------------------------------------- /pkg/distribution/internal/store/blobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/store/blobs.go -------------------------------------------------------------------------------- /pkg/distribution/internal/store/blobs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/store/blobs_test.go -------------------------------------------------------------------------------- /pkg/distribution/internal/store/bundles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/store/bundles.go -------------------------------------------------------------------------------- /pkg/distribution/internal/store/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/store/errors.go -------------------------------------------------------------------------------- /pkg/distribution/internal/store/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/store/index.go -------------------------------------------------------------------------------- /pkg/distribution/internal/store/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/store/index_test.go -------------------------------------------------------------------------------- /pkg/distribution/internal/store/layout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/store/layout.go -------------------------------------------------------------------------------- /pkg/distribution/internal/store/manifests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/store/manifests.go -------------------------------------------------------------------------------- /pkg/distribution/internal/store/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/store/model.go -------------------------------------------------------------------------------- /pkg/distribution/internal/store/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/store/store.go -------------------------------------------------------------------------------- /pkg/distribution/internal/store/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/store/store_test.go -------------------------------------------------------------------------------- /pkg/distribution/internal/store/testdata/dummy.gguf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/store/testdata/dummy.gguf -------------------------------------------------------------------------------- /pkg/distribution/internal/store/testdata/dummy.mmproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/store/testdata/dummy.mmproj -------------------------------------------------------------------------------- /pkg/distribution/internal/store/testdata/license.txt: -------------------------------------------------------------------------------- 1 | FAKE LICENSE 2 | -------------------------------------------------------------------------------- /pkg/distribution/internal/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/internal/utils/utils.go -------------------------------------------------------------------------------- /pkg/distribution/packaging/dirtar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/packaging/dirtar.go -------------------------------------------------------------------------------- /pkg/distribution/packaging/dirtar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/packaging/dirtar_test.go -------------------------------------------------------------------------------- /pkg/distribution/packaging/safetensors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/packaging/safetensors.go -------------------------------------------------------------------------------- /pkg/distribution/packaging/safetensors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/packaging/safetensors_test.go -------------------------------------------------------------------------------- /pkg/distribution/registry/artifact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/registry/artifact.go -------------------------------------------------------------------------------- /pkg/distribution/registry/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/registry/client.go -------------------------------------------------------------------------------- /pkg/distribution/registry/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/registry/client_test.go -------------------------------------------------------------------------------- /pkg/distribution/registry/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/registry/errors.go -------------------------------------------------------------------------------- /pkg/distribution/tarball/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/tarball/file.go -------------------------------------------------------------------------------- /pkg/distribution/tarball/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/tarball/reader.go -------------------------------------------------------------------------------- /pkg/distribution/tarball/reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/tarball/reader_test.go -------------------------------------------------------------------------------- /pkg/distribution/tarball/target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/tarball/target.go -------------------------------------------------------------------------------- /pkg/distribution/tarball/target_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/tarball/target_test.go -------------------------------------------------------------------------------- /pkg/distribution/tarball/testdata/archive.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/tarball/testdata/archive.tar -------------------------------------------------------------------------------- /pkg/distribution/tarball/testdata/archive/blobs/sha256/bec7cb2222b54879bf3c7e70504960bdfbd898a05ab1f8247808484869a46bad: -------------------------------------------------------------------------------- 1 | some-blob-contents -------------------------------------------------------------------------------- /pkg/distribution/tarball/testdata/archive/ignore-me/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/distribution/tarball/testdata/archive/manifest.json: -------------------------------------------------------------------------------- 1 | some-manifest-contents -------------------------------------------------------------------------------- /pkg/distribution/types/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/types/config.go -------------------------------------------------------------------------------- /pkg/distribution/types/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/distribution/types/model.go -------------------------------------------------------------------------------- /pkg/environment/environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/environment/environment.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/.codecov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/.codecov.yaml -------------------------------------------------------------------------------- /pkg/go-containerregistry/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/.gitattributes -------------------------------------------------------------------------------- /pkg/go-containerregistry/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/.golangci.yaml -------------------------------------------------------------------------------- /pkg/go-containerregistry/.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/.goreleaser.yml -------------------------------------------------------------------------------- /pkg/go-containerregistry/.ko/debug/.ko.yaml: -------------------------------------------------------------------------------- 1 | defaultBaseImage: gcr.io/distroless/base:debug 2 | -------------------------------------------------------------------------------- /pkg/go-containerregistry/.wokeignore: -------------------------------------------------------------------------------- 1 | vendor/** 2 | -------------------------------------------------------------------------------- /pkg/go-containerregistry/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/CONTRIBUTING.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/LICENSE -------------------------------------------------------------------------------- /pkg/go-containerregistry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/README.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/SECURITY.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cloudbuild.yaml -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/README.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/cmd/append.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/cmd/append.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/cmd/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/cmd/auth.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/cmd/blob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/cmd/blob.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/cmd/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/cmd/catalog.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/cmd/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/cmd/config.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/cmd/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/cmd/copy.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/cmd/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/cmd/delete.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/cmd/digest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/cmd/digest.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/cmd/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/cmd/export.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/cmd/flatten.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/cmd/flatten.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/cmd/gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/cmd/gc.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/cmd/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/cmd/index.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/cmd/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/cmd/list.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/cmd/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/cmd/manifest.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/cmd/mutate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/cmd/mutate.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/cmd/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/cmd/pull.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/cmd/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/cmd/push.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/cmd/rebase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/cmd/rebase.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/cmd/root.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/cmd/serve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/cmd/serve.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/cmd/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/cmd/tag.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/cmd/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/cmd/util.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/cmd/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/cmd/validate.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/cmd/version.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/depcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/depcheck_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_append.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_append.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_auth.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_auth_get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_auth_get.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_auth_login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_auth_login.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_auth_logout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_auth_logout.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_auth_token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_auth_token.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_blob.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_blob.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_catalog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_catalog.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_config.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_copy.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_delete.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_digest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_digest.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_export.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_flatten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_flatten.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_index.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_index_append.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_index_append.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_index_filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_index_filter.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_ls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_ls.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_manifest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_manifest.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_mutate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_mutate.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_pull.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_push.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_rebase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_rebase.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_registry.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_registry_serve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_registry_serve.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_tag.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_validate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_validate.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/doc/crane_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/doc/crane_version.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/help/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/help/README.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/help/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/help/main.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/main.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/rebase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/rebase.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/rebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/rebase.png -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/rebase_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/rebase_test.sh -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/crane/recipes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/crane/recipes.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/gcrane/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/gcrane/Dockerfile -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/gcrane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/gcrane/README.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/gcrane/cmd/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/gcrane/cmd/copy.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/gcrane/cmd/gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/gcrane/cmd/gc.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/gcrane/cmd/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/gcrane/cmd/list.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/gcrane/depcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/gcrane/depcheck_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/gcrane/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/gcrane/main.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/ko/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/ko/README.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/krane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/krane/README.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/krane/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/krane/go.mod -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/krane/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/krane/go.sum -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/krane/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/krane/main.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/registry/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/registry/main.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/cmd/registry/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/cmd/registry/test.sh -------------------------------------------------------------------------------- /pkg/go-containerregistry/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/go.mod -------------------------------------------------------------------------------- /pkg/go-containerregistry/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/go.sum -------------------------------------------------------------------------------- /pkg/go-containerregistry/hack/boilerplate/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/hack/boilerplate/boilerplate.go.txt -------------------------------------------------------------------------------- /pkg/go-containerregistry/hack/bump-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/hack/bump-deps.sh -------------------------------------------------------------------------------- /pkg/go-containerregistry/hack/presubmit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/hack/presubmit.sh -------------------------------------------------------------------------------- /pkg/go-containerregistry/hack/update-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/hack/update-codegen.sh -------------------------------------------------------------------------------- /pkg/go-containerregistry/hack/update-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/hack/update-deps.sh -------------------------------------------------------------------------------- /pkg/go-containerregistry/hack/update-dots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/hack/update-dots.sh -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/containerd.dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/containerd.dot.svg -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/containers.dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/containers.dot.svg -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/crane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/crane.png -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/credhelper-basic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/credhelper-basic.svg -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/credhelper-oauth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/credhelper-oauth.svg -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/docker.dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/docker.dot.svg -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/dot/containerd.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/dot/containerd.dot -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/dot/containers.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/dot/containers.dot -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/dot/docker.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/dot/docker.dot -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/dot/ggcr.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/dot/ggcr.dot -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/dot/image-anatomy.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/dot/image-anatomy.dot -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/dot/index-anatomy-strange.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/dot/index-anatomy-strange.dot -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/dot/index-anatomy.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/dot/index-anatomy.dot -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/dot/mutate.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/dot/mutate.dot -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/dot/remote.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/dot/remote.dot -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/dot/stream.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/dot/stream.dot -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/dot/tarball.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/dot/tarball.dot -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/dot/upload.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/dot/upload.dot -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/gcrane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/gcrane.png -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/ggcr.dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/ggcr.dot.svg -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/image-anatomy.dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/image-anatomy.dot.svg -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/index-anatomy-strange.dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/index-anatomy-strange.dot.svg -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/index-anatomy.dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/index-anatomy.dot.svg -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/mutate.dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/mutate.dot.svg -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/ociimage.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/ociimage.gv -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/ociimage.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/ociimage.jpeg -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/remote.dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/remote.dot.svg -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/stream.dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/stream.dot.svg -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/tarball.dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/tarball.dot.svg -------------------------------------------------------------------------------- /pkg/go-containerregistry/images/upload.dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/images/upload.dot.svg -------------------------------------------------------------------------------- /pkg/go-containerregistry/internal/and/and_closer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/internal/and/and_closer.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/internal/and/and_closer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/internal/and/and_closer_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/internal/cmd/edit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/internal/cmd/edit.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/internal/cmd/edit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/internal/cmd/edit_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/internal/compression/compression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/internal/compression/compression.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/internal/compression/compression_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/internal/compression/compression_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/internal/depcheck/depcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/internal/depcheck/depcheck.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/internal/editor/editor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/internal/editor/editor.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/internal/estargz/estargz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/internal/estargz/estargz.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/internal/estargz/estargz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/internal/estargz/estargz_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/internal/gzip/zip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/internal/gzip/zip.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/internal/gzip/zip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/internal/gzip/zip_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/internal/httptest/httptest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/internal/httptest/httptest.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/internal/redact/redact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/internal/redact/redact.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/internal/retry/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/internal/retry/retry.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/internal/retry/retry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/internal/retry/retry_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/internal/verify/verify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/internal/verify/verify.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/internal/verify/verify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/internal/verify/verify_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/internal/windows/windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/internal/windows/windows.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/internal/windows/windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/internal/windows/windows_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/internal/zstd/zstd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/internal/zstd/zstd.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/internal/zstd/zstd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/internal/zstd/zstd_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/README.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/anon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/anon.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/anon_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/anon_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/auth.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/authn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/authn.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/authn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/authn_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/basic.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/basic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/basic_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/bearer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/bearer.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/bearer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/bearer_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/doc.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/github/keychain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/github/keychain.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/github/keychain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/github/keychain_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/k8schain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/k8schain/README.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/k8schain/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/k8schain/doc.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/k8schain/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/k8schain/go.mod -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/k8schain/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/k8schain/go.sum -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/k8schain/k8schain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/k8schain/k8schain.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/k8schain/tests/explicit/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/k8schain/tests/explicit/main.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/k8schain/tests/implicit/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/k8schain/tests/implicit/main.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/k8schain/tests/noauth/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/k8schain/tests/noauth/main.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/k8schain/tests/noauth/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/k8schain/tests/noauth/test.yaml -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/keychain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/keychain.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/keychain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/keychain_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/kubernetes/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/kubernetes/go.mod -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/kubernetes/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/kubernetes/go.sum -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/kubernetes/keychain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/kubernetes/keychain.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/kubernetes/keychain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/kubernetes/keychain_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/multikeychain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/multikeychain.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/authn/multikeychain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/authn/multikeychain_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/compression/compression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/compression/compression.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/crane/append.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/crane/append.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/crane/append_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/crane/append_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/crane/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/crane/catalog.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/crane/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/crane/config.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/crane/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/crane/copy.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/crane/crane_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/crane/crane_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/crane/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/crane/delete.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/crane/digest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/crane/digest.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/crane/digest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/crane/digest_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/crane/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/crane/doc.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/crane/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/crane/example_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/crane/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/crane/export.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/crane/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/crane/export_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/crane/filemap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/crane/filemap.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/crane/filemap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/crane/filemap_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/crane/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/crane/get.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/crane/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/crane/list.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/crane/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/crane/manifest.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/crane/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/crane/options.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/crane/options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/crane/options_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/crane/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/crane/pull.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/crane/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/crane/push.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/crane/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/crane/tag.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/crane/testdata/content.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/crane/testdata/content.tar -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/crane/testdata/content.tar.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/crane/testdata/content.tar.zst -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/gcrane/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/gcrane/copy.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/gcrane/copy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/gcrane/copy_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/gcrane/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/gcrane/doc.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/gcrane/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/gcrane/options.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/gcrane/options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/gcrane/options_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/legacy/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/legacy/config.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/legacy/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/legacy/doc.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/legacy/tarball/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/legacy/tarball/README.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/legacy/tarball/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/legacy/tarball/doc.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/legacy/tarball/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/legacy/tarball/write.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/legacy/tarball/write_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/legacy/tarball/write_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/logs/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/logs/logs.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/name/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/name/README.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/name/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/name/check.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/name/digest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/name/digest.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/name/digest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/name/digest_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/name/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/name/doc.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/name/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/name/errors.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/name/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/name/errors_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/name/internal/must_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/name/internal/must_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/name/internal/must_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/name/internal/must_test.sh -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/name/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/name/options.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/name/ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/name/ref.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/name/ref_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/name/ref_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/name/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/name/registry.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/name/registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/name/registry_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/name/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/name/repository.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/name/repository_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/name/repository_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/name/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/name/tag.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/name/tag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/name/tag_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/registry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/registry/README.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/registry/blobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/registry/blobs.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/registry/blobs_disk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/registry/blobs_disk.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/registry/blobs_disk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/registry/blobs_disk_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/registry/compatibility_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/registry/compatibility_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/registry/depcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/registry/depcheck_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/registry/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/registry/error.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/registry/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/registry/manifest.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/registry/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/registry/registry.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/registry/registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/registry/registry_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/registry/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/registry/tls.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/registry/tls_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/registry/tls_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/cache/cache.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/cache/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/cache/cache_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/cache/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/cache/example_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/cache/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/cache/fs.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/cache/fs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/cache/fs_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/cache/ro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/cache/ro.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/cache/ro_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/cache/ro_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/compare/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/compare/doc.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/compare/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/compare/image.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/compare/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/compare/image_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/compare/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/compare/index.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/compare/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/compare/index_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/compare/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/compare/layer.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/compare/layer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/compare/layer_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/config.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/config_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/daemon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/daemon/README.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/daemon/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/daemon/doc.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/daemon/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/daemon/image.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/daemon/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/daemon/image_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/daemon/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/daemon/options.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/daemon/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/daemon/write.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/daemon/write_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/daemon/write_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/doc.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/empty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/empty/README.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/empty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/empty/doc.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/empty/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/empty/image.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/empty/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/empty/image_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/empty/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/empty/index.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/empty/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/empty/index_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/fake/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/fake/image.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/fake/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/fake/index.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/google/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/google/README.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/google/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/google/auth.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/google/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/google/auth_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/google/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/google/doc.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/google/keychain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/google/keychain.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/google/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/google/list.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/google/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/google/list_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/google/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/google/options.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/google/testdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/google/testdata/README.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/google/testdata/key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/google/testdata/key.json -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/hash.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/hash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/hash_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/image.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/index.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/layer.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/layout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/layout/README.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/layout/blob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/layout/blob.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/layout/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/layout/doc.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/layout/gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/layout/gc.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/layout/gc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/layout/gc_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/layout/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/layout/image.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/layout/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/layout/image_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/layout/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/layout/index.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/layout/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/layout/index_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/layout/layoutpath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/layout/layoutpath.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/layout/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/layout/options.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/layout/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/layout/read.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/layout/read_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/layout/read_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/layout/testdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/layout/testdata/README.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/layout/testdata/test_gc_image_unknown_mediatype/oci-layout: -------------------------------------------------------------------------------- 1 | { 2 | "imageLayoutVersion": "1.0.0" 3 | } 4 | -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/layout/testdata/test_gc_index/oci-layout: -------------------------------------------------------------------------------- 1 | { 2 | "imageLayoutVersion": "1.0.0" 3 | } 4 | -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/layout/testdata/test_index/oci-layout: -------------------------------------------------------------------------------- 1 | { 2 | "imageLayoutVersion": "1.0.0" 3 | } 4 | -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/layout/testdata/test_index_media_type/blobs/sha256/ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/layout/testdata/test_index_media_type/oci-layout: -------------------------------------------------------------------------------- 1 | { 2 | "imageLayoutVersion": "1.0.0" 3 | } 4 | -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/layout/testdata/test_index_one_image/oci-layout: -------------------------------------------------------------------------------- 1 | {"imageLayoutVersion": "1.0.0"} -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/layout/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/layout/write.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/layout/write_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/layout/write_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/manifest.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/manifest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/manifest_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/match/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/match/match.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/match/match_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/match/match_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/mutate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/mutate/README.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/mutate/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/mutate/doc.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/mutate/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/mutate/image.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/mutate/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/mutate/index.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/mutate/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/mutate/index_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/mutate/mutate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/mutate/mutate.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/mutate/mutate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/mutate/mutate_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/mutate/rebase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/mutate/rebase.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/mutate/rebase_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/mutate/rebase_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/mutate/testdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/mutate/testdata/README.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/mutate/testdata/bar: -------------------------------------------------------------------------------- 1 | bar 2 | -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/mutate/testdata/foo: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/mutate/testdata/source_image.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/mutate/testdata/source_image.tar -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/mutate/testdata/whiteout/bar.txt: -------------------------------------------------------------------------------- 1 | bar 2 | -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/mutate/testdata/whiteout/foo.txt: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/mutate/testdata/whiteout_image.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/mutate/testdata/whiteout_image.tar -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/mutate/whiteout_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/mutate/whiteout_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/partial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/partial/README.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/partial/compressed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/partial/compressed.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/partial/compressed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/partial/compressed_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/partial/configlayer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/partial/configlayer_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/partial/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/partial/doc.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/partial/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/partial/image.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/partial/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/partial/index.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/partial/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/partial/index_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/partial/uncompressed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/partial/uncompressed.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/partial/uncompressed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/partial/uncompressed_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/partial/with.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/partial/with.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/partial/with_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/partial/with_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/platform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/platform.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/platform_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/platform_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/progress.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/random/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/random/doc.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/random/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/random/image.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/random/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/random/image_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/random/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/random/index.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/random/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/random/index_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/random/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/random/options.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/README.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/catalog.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/catalog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/catalog_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/check.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/check_e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/check_e2e_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/check_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/check_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/delete.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/delete_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/descriptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/descriptor.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/descriptor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/descriptor_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/doc.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/error_roundtrip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/error_roundtrip_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/fetcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/fetcher.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/image.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/image_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/index.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/index_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/layer.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/layer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/layer_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/list.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/list_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/mount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/mount.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/mount_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/mount_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/multi_write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/multi_write.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/multi_write_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/multi_write_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/options.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/progress.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/progress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/progress_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/puller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/puller.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/pusher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/pusher.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/referrers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/referrers.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/referrers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/referrers_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/schema1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/schema1.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/schema1_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/schema1_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/transport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/transport/README.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/transport/basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/transport/basic.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/transport/basic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/transport/basic_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/transport/bearer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/transport/bearer.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/transport/bearer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/transport/bearer_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/transport/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/transport/doc.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/transport/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/transport/error.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/transport/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/transport/error_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/transport/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/transport/logger.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/transport/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/transport/logger_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/transport/ping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/transport/ping.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/transport/ping_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/transport/ping_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/transport/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/transport/retry.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/transport/retry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/transport/retry_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/transport/schemer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/transport/schemer.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/transport/scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/transport/scope.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/transport/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/transport/transport.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/transport/transport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/transport/transport_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/transport/useragent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/transport/useragent.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/write.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/remote/write_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/remote/write_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/static/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/static/layer.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/static/static_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/static/static_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/stream/README.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/stream/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/stream/layer.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/stream/layer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/stream/layer_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/tarball/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/tarball/README.md -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/tarball/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/tarball/doc.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/tarball/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/tarball/image.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/tarball/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/tarball/image_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/tarball/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/tarball/layer.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/tarball/layer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/tarball/layer_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/tarball/progress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/tarball/progress_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/tarball/testdata/bar: -------------------------------------------------------------------------------- 1 | bar 2 | -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/tarball/testdata/bat/bat: -------------------------------------------------------------------------------- 1 | bat 2 | -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/tarball/testdata/baz: -------------------------------------------------------------------------------- 1 | baz 2 | -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/tarball/testdata/content.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/tarball/testdata/content.tar -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/tarball/testdata/foo: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/tarball/testdata/no_manifest.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/tarball/testdata/no_manifest.tar -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/tarball/testdata/test_bundle.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/tarball/testdata/test_bundle.tar -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/tarball/testdata/test_link.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/tarball/testdata/test_link.tar -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/tarball/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/tarball/write.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/tarball/write_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/tarball/write_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/types/types.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/types/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/types/types_test.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/validate/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/validate/doc.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/validate/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/validate/image.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/validate/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/validate/index.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/validate/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/validate/layer.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/validate/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/validate/options.go -------------------------------------------------------------------------------- /pkg/go-containerregistry/pkg/v1/zz_deepcopy_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/go-containerregistry/pkg/v1/zz_deepcopy_generated.go -------------------------------------------------------------------------------- /pkg/gpuinfo/gpuinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/gpuinfo/gpuinfo.go -------------------------------------------------------------------------------- /pkg/gpuinfo/memory_darwin_cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/gpuinfo/memory_darwin_cgo.go -------------------------------------------------------------------------------- /pkg/gpuinfo/memory_darwin_nocgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/gpuinfo/memory_darwin_nocgo.go -------------------------------------------------------------------------------- /pkg/gpuinfo/memory_linux_cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/gpuinfo/memory_linux_cgo.go -------------------------------------------------------------------------------- /pkg/gpuinfo/memory_linux_nocgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/gpuinfo/memory_linux_nocgo.go -------------------------------------------------------------------------------- /pkg/gpuinfo/memory_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/gpuinfo/memory_windows.go -------------------------------------------------------------------------------- /pkg/gpuinfo/metal.h: -------------------------------------------------------------------------------- 1 | //go:build darwin 2 | 3 | #include 4 | 5 | size_t getVRAMSize(); -------------------------------------------------------------------------------- /pkg/gpuinfo/metal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/gpuinfo/metal.m -------------------------------------------------------------------------------- /pkg/gpuinfo/nvidia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/gpuinfo/nvidia.c -------------------------------------------------------------------------------- /pkg/gpuinfo/nvidia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/gpuinfo/nvidia.h -------------------------------------------------------------------------------- /pkg/inference/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/api.go -------------------------------------------------------------------------------- /pkg/inference/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/backend.go -------------------------------------------------------------------------------- /pkg/inference/backends/llamacpp/download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/backends/llamacpp/download.go -------------------------------------------------------------------------------- /pkg/inference/backends/llamacpp/download_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/backends/llamacpp/download_darwin.go -------------------------------------------------------------------------------- /pkg/inference/backends/llamacpp/download_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/backends/llamacpp/download_linux.go -------------------------------------------------------------------------------- /pkg/inference/backends/llamacpp/download_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/backends/llamacpp/download_windows.go -------------------------------------------------------------------------------- /pkg/inference/backends/llamacpp/gpuinfo_notwindows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/backends/llamacpp/gpuinfo_notwindows.go -------------------------------------------------------------------------------- /pkg/inference/backends/llamacpp/gpuinfo_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/backends/llamacpp/gpuinfo_windows.go -------------------------------------------------------------------------------- /pkg/inference/backends/llamacpp/llamacpp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/backends/llamacpp/llamacpp.go -------------------------------------------------------------------------------- /pkg/inference/backends/llamacpp/llamacpp_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/backends/llamacpp/llamacpp_config.go -------------------------------------------------------------------------------- /pkg/inference/backends/llamacpp/llamacpp_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/backends/llamacpp/llamacpp_config_test.go -------------------------------------------------------------------------------- /pkg/inference/backends/mlx/mlx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/backends/mlx/mlx.go -------------------------------------------------------------------------------- /pkg/inference/backends/mlx/mlx_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/backends/mlx/mlx_config.go -------------------------------------------------------------------------------- /pkg/inference/backends/mlx/mlx_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/backends/mlx/mlx_config_test.go -------------------------------------------------------------------------------- /pkg/inference/backends/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/backends/runner.go -------------------------------------------------------------------------------- /pkg/inference/backends/vllm/vllm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/backends/vllm/vllm.go -------------------------------------------------------------------------------- /pkg/inference/backends/vllm/vllm_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/backends/vllm/vllm_config.go -------------------------------------------------------------------------------- /pkg/inference/backends/vllm/vllm_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/backends/vllm/vllm_config_test.go -------------------------------------------------------------------------------- /pkg/inference/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/config/config.go -------------------------------------------------------------------------------- /pkg/inference/memory/estimator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/memory/estimator.go -------------------------------------------------------------------------------- /pkg/inference/memory/settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/memory/settings.go -------------------------------------------------------------------------------- /pkg/inference/memory/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/memory/system.go -------------------------------------------------------------------------------- /pkg/inference/models/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/models/adapter.go -------------------------------------------------------------------------------- /pkg/inference/models/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/models/api.go -------------------------------------------------------------------------------- /pkg/inference/models/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/models/handler_test.go -------------------------------------------------------------------------------- /pkg/inference/models/http_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/models/http_handler.go -------------------------------------------------------------------------------- /pkg/inference/models/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/models/manager.go -------------------------------------------------------------------------------- /pkg/inference/platform/platform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/platform/platform.go -------------------------------------------------------------------------------- /pkg/inference/scheduling/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/scheduling/api.go -------------------------------------------------------------------------------- /pkg/inference/scheduling/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/scheduling/errors.go -------------------------------------------------------------------------------- /pkg/inference/scheduling/http_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/scheduling/http_handler.go -------------------------------------------------------------------------------- /pkg/inference/scheduling/installer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/scheduling/installer.go -------------------------------------------------------------------------------- /pkg/inference/scheduling/loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/scheduling/loader.go -------------------------------------------------------------------------------- /pkg/inference/scheduling/loader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/scheduling/loader_test.go -------------------------------------------------------------------------------- /pkg/inference/scheduling/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/scheduling/runner.go -------------------------------------------------------------------------------- /pkg/inference/scheduling/scheduler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/scheduling/scheduler.go -------------------------------------------------------------------------------- /pkg/inference/scheduling/scheduler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/inference/scheduling/scheduler_test.go -------------------------------------------------------------------------------- /pkg/internal/archive/archive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/internal/archive/archive.go -------------------------------------------------------------------------------- /pkg/internal/dockerhub/download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/internal/dockerhub/download.go -------------------------------------------------------------------------------- /pkg/internal/dockerhub/extract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/internal/dockerhub/extract.go -------------------------------------------------------------------------------- /pkg/internal/jsonutil/jsonutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/internal/jsonutil/jsonutil.go -------------------------------------------------------------------------------- /pkg/internal/utils/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/internal/utils/log.go -------------------------------------------------------------------------------- /pkg/logging/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/logging/logging.go -------------------------------------------------------------------------------- /pkg/metrics/aggregated_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/metrics/aggregated_handler.go -------------------------------------------------------------------------------- /pkg/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/metrics/metrics.go -------------------------------------------------------------------------------- /pkg/metrics/openai_recorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/metrics/openai_recorder.go -------------------------------------------------------------------------------- /pkg/metrics/openai_recorder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/metrics/openai_recorder_test.go -------------------------------------------------------------------------------- /pkg/metrics/scheduler_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/metrics/scheduler_proxy.go -------------------------------------------------------------------------------- /pkg/middleware/alias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/middleware/alias.go -------------------------------------------------------------------------------- /pkg/middleware/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/middleware/cors.go -------------------------------------------------------------------------------- /pkg/middleware/cors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/middleware/cors_test.go -------------------------------------------------------------------------------- /pkg/ollama/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/ollama/api.go -------------------------------------------------------------------------------- /pkg/ollama/http_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/ollama/http_handler.go -------------------------------------------------------------------------------- /pkg/routing/routing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/routing/routing.go -------------------------------------------------------------------------------- /pkg/sandbox/sandbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/sandbox/sandbox.go -------------------------------------------------------------------------------- /pkg/sandbox/sandbox_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/sandbox/sandbox_darwin.go -------------------------------------------------------------------------------- /pkg/sandbox/sandbox_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/sandbox/sandbox_other.go -------------------------------------------------------------------------------- /pkg/sandbox/sandbox_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/sandbox/sandbox_test.go -------------------------------------------------------------------------------- /pkg/sandbox/sandbox_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/sandbox/sandbox_windows.go -------------------------------------------------------------------------------- /pkg/sandbox/sandbox_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/sandbox/sandbox_windows_test.go -------------------------------------------------------------------------------- /pkg/tailbuffer/tailbuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/tailbuffer/tailbuffer.go -------------------------------------------------------------------------------- /pkg/tailbuffer/tailbuffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/pkg/tailbuffer/tailbuffer_test.go -------------------------------------------------------------------------------- /scripts/apt-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/scripts/apt-install.sh -------------------------------------------------------------------------------- /scripts/docker-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/scripts/docker-run.sh -------------------------------------------------------------------------------- /scripts/test-docker-ce-in-container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/scripts/test-docker-ce-in-container.sh -------------------------------------------------------------------------------- /scripts/test-docker-ce-installation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker/model-runner/HEAD/scripts/test-docker-ce-installation.sh --------------------------------------------------------------------------------