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

Method ContainerStatPath

cli/command/container/client_test.go:118–123  ·  view source on GitHub ↗
(_ context.Context, containerID string, options client.ContainerStatPathOptions)

Source from the content-addressed store, hash-verified

116}
117
118func (f *fakeClient) ContainerStatPath(_ context.Context, containerID string, options client.ContainerStatPathOptions) (client.ContainerStatPathResult, error) {
119 if f.containerStatPathFunc != nil {
120 return f.containerStatPathFunc(containerID, options.Path)
121 }
122 return client.ContainerStatPathResult{}, nil
123}
124
125func (f *fakeClient) CopyFromContainer(_ context.Context, containerID string, options client.CopyFromContainerOptions) (client.CopyFromContainerResult, error) {
126 if f.containerCopyFromFunc != nil {

Callers 2

copyFromContainerFunction · 0.80
copyToContainerFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected