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

Method CheckpointRemove

cli/command/checkpoint/client_test.go:23–28  ·  view source on GitHub ↗
(_ context.Context, container string, options client.CheckpointRemoveOptions)

Source from the content-addressed store, hash-verified

21}
22
23func (cli *fakeClient) CheckpointRemove(_ context.Context, container string, options client.CheckpointRemoveOptions) (client.CheckpointRemoveResult, error) {
24 if cli.checkpointDeleteFunc != nil {
25 return cli.checkpointDeleteFunc(container, options)
26 }
27 return client.CheckpointRemoveResult{}, nil
28}
29
30func (cli *fakeClient) CheckpointList(_ context.Context, container string, options client.CheckpointListOptions) (client.CheckpointListResult, error) {
31 if cli.checkpointListFunc != nil {

Callers 1

newRemoveCommandFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected