package remotecache
import "github.com/moby/buildkit/cache/remotecache"
Index ¶
- Constants
- type DistributionSourceLabelSetter
- type Exporter
- type Importer
- type ResolveCacheExporterFunc
- type ResolveCacheImporterFunc
Constants ¶
const ( // ExportResponseManifestDesc is a key for the map returned from Exporter.Finalize. // The map value is a JSON string of an OCI desciptor of a manifest. ExporterResponseManifestDesc = "cache.manifest" )
Types ¶
type DistributionSourceLabelSetter ¶
type DistributionSourceLabelSetter interface { SetDistributionSourceLabel(context.Context, digest.Digest) error SetDistributionSourceAnnotation(desc ocispec.Descriptor) ocispec.Descriptor }
type Exporter ¶
type Exporter interface { solver.CacheExporterTarget // Finalize finalizes and return metadata that are returned to the client // e.g. ExporterResponseManifestDesc Finalize(ctx context.Context) (map[string]string, error) }
func NewExporter ¶
type Importer ¶
type Importer interface { Resolve(ctx context.Context, desc ocispec.Descriptor, id string, w worker.Worker) (solver.CacheManager, error) }
func NewImporter ¶
type ResolveCacheExporterFunc ¶
type ResolveCacheExporterFunc func(ctx context.Context, g session.Group, attrs map[string]string) (Exporter, error)
type ResolveCacheImporterFunc ¶
type ResolveCacheImporterFunc func(ctx context.Context, g session.Group, attrs map[string]string) (Importer, ocispec.Descriptor, error)
ResolveCacheImporterFunc returns importer and descriptor.
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
cache/remotecache/inline | |
cache/remotecache/local | |
cache/remotecache/registry | |
cache/remotecache/v1 |
- Version
- v0.9.0-rc1
- Published
- Jul 7, 2021
- Platform
- js/wasm
- Imports
- 24 packages
- Last checked
- 23 minutes ago –
Tools for package owners.