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

Method IntrospectionService

client/client.go:769–776  ·  view source on GitHub ↗

IntrospectionService returns the underlying Introspection Client

()

Source from the content-addressed store, hash-verified

767
768// IntrospectionService returns the underlying Introspection Client
769func (c *Client) IntrospectionService() introspection.Service {
770 if c.introspectionService != nil {
771 return c.introspectionService
772 }
773 c.connMu.Lock()
774 defer c.connMu.Unlock()
775 return introspectionproxy.NewIntrospectionProxy(c.conn)
776}
777
778// LeasesService returns the underlying Leases Client
779func (c *Client) LeasesService() leases.Manager {

Callers 13

getInstallPathMethod · 0.95
ServerMethod · 0.95
RuntimeInfoMethod · 0.95
waitForStartMethod · 0.80
StatusMethod · 0.80
NewCRIServiceFunction · 0.80
NewClientFunction · 0.80
plugins.goFile · 0.80
deprecations.goFile · 0.80

Calls 2

LockMethod · 0.65
UnlockMethod · 0.65