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

Method ImagePull

cli/command/container/client_test.go:104–109  ·  view source on GitHub ↗
(ctx context.Context, parentReference string, options client.ImagePullOptions)

Source from the content-addressed store, hash-verified

102}
103
104func (f *fakeClient) ImagePull(ctx context.Context, parentReference string, options client.ImagePullOptions) (client.ImagePullResponse, error) {
105 if f.imagePullFunc != nil {
106 return f.imagePullFunc(ctx, parentReference, options)
107 }
108 return fakeStreamResult{}, nil
109}
110
111func (f *fakeClient) Info(context.Context, client.InfoOptions) (client.SystemInfoResult, error) {
112 if f.infoFunc != nil {

Callers 1

pullImageFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected