MCPcopy Index your code
hub / github.com/containerd/containerd / NewFileSystemApplierWithMountManager

Function NewFileSystemApplierWithMountManager

core/diff/apply/apply.go:45–50  ·  view source on GitHub ↗

NewFileSystemApplierWithMountManager returns an applier which simply mounts and applies diff onto the mounted filesystem. An optional mount manager can be specified and it will take effect when applying.

(cs content.Provider, mm mount.Manager)

Source from the content-addressed store, hash-verified

43// applies diff onto the mounted filesystem.
44// An optional mount manager can be specified and it will take effect when applying.
45func NewFileSystemApplierWithMountManager(cs content.Provider, mm mount.Manager) diff.Applier {
46 return &fsApplier{
47 store: cs,
48 mount: mm,
49 }
50}
51
52type fsApplier struct {
53 store content.Provider

Callers 2

initFunction · 0.92
NewFileSystemApplierFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…