MCPcopy Index your code
hub / github.com/docker/cli / VolumeInspect

Method VolumeInspect

cli/command/volume/client_test.go:25–30  ·  view source on GitHub ↗
(_ context.Context, volumeID string, options client.VolumeInspectOptions)

Source from the content-addressed store, hash-verified

23}
24
25func (c *fakeClient) VolumeInspect(_ context.Context, volumeID string, options client.VolumeInspectOptions) (client.VolumeInspectResult, error) {
26 if c.volumeInspectFunc != nil {
27 return c.volumeInspectFunc(volumeID)
28 }
29 return client.VolumeInspectResult{}, nil
30}
31
32func (c *fakeClient) VolumeList(_ context.Context, options client.VolumeListOptions) (client.VolumeListResult, error) {
33 if c.volumeListFunc != nil {

Callers 3

runInspectFunction · 0.80
runUpdateFunction · 0.80
inspectVolumeFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected