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

Method ImageList

cli/command/image/client_test.go:97–102  ·  view source on GitHub ↗
(_ context.Context, options client.ImageListOptions)

Source from the content-addressed store, hash-verified

95}
96
97func (cli *fakeClient) ImageList(_ context.Context, options client.ImageListOptions) (client.ImageListResult, error) {
98 if cli.imageListFunc != nil {
99 return cli.imageListFunc(options)
100 }
101 return client.ImageListResult{}, nil
102}
103
104func (cli *fakeClient) ImageInspect(_ context.Context, img string, _ ...client.ImageInspectOption) (client.ImageInspectResult, error) {
105 if cli.imageInspectFunc != nil {

Callers 1

runImagesFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected