MCPcopy
hub / github.com/containerd/containerd / ContainerService

Method ContainerService

client/client.go:700–707  ·  view source on GitHub ↗

ContainerService returns the underlying container Store

()

Source from the content-addressed store, hash-verified

698
699// ContainerService returns the underlying container Store
700func (c *Client) ContainerService() containers.Store {
701 if c.containerStore != nil {
702 return c.containerStore
703 }
704 c.connMu.Lock()
705 defer c.connMu.Unlock()
706 return NewRemoteContainerStore(containersapi.NewContainersClient(c.conn))
707}
708
709// ContentStore returns the underlying content Store
710func (c *Client) ContentStore() content.Store {

Callers 11

ContainersMethod · 0.95
NewContainerMethod · 0.95
LoadContainerMethod · 0.95
CheckpointMethod · 0.80
SetLabelsMethod · 0.80
DeleteMethod · 0.80
UpdateMethod · 0.80
getMethod · 0.80
GetContainerFunction · 0.80
runtimeInfoMethod · 0.80
images.goFile · 0.80

Calls 3

NewRemoteContainerStoreFunction · 0.85
LockMethod · 0.65
UnlockMethod · 0.65

Tested by 1

GetContainerFunction · 0.64