(cmd *cobra.Command, args []string, toComplete string)
| 71 | } |
| 72 | |
| 73 | func unpauseShellComplete(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) { |
| 74 | // show paused container names |
| 75 | statusFilterFn := func(st containerd.ProcessStatus) bool { |
| 76 | return st == containerd.Paused |
| 77 | } |
| 78 | return completion.ContainerNames(cmd, statusFilterFn) |
| 79 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…