- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 3,962 for commands (0.17 sec)
-
src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go
) // commands describes the commands accepted by pprof. type commands map[string]*command // command describes the actions for a pprof command. Includes a // function for command-line completion, the report format to use // during report generation, any postprocessing functions, and whether // the command expects a regexp parameter (typically a function name). type command struct {
Registered: 2024-06-12 16:32 - Last Modified: 2024-02-16 15:19 - 18.5K bytes - Viewed (0) -
staging/src/k8s.io/cli-runtime/pkg/genericclioptions/command_headers_test.go
} }) } } // Builds a hierarchy of commands in order from the passed slice of commands, // by adding each subsequent command as a child of the previous command, // returning the last leaf command. func buildCommandChain(commands []*cobra.Command) *cobra.Command { var currCmd *cobra.Command if len(commands) > 0 { currCmd = commands[0] } for i := 1; i < len(commands); i++ { cmd := commands[i]
Registered: 2024-06-15 01:39 - Last Modified: 2021-08-20 20:34 - 4.6K bytes - Viewed (0) -
src/cmd/go/internal/base/base.go
Flag flag.FlagSet // CustomFlags indicates that the command will do its own // flag parsing. CustomFlags bool // Commands lists the available commands and help topics. // The order here is the order in which they are printed by 'go help'. // Note that subcommands are in general best avoided. Commands []*Command } var Go = &Command{ UsageLine: "go",
Registered: 2024-06-12 16:32 - Last Modified: 2024-05-03 18:15 - 5.3K bytes - Viewed (0) -
src/cmd/go/internal/help/help.go
base.Exit() } if len(cmd.Commands) > 0 { PrintUsage(os.Stdout, cmd) } else { tmpl(os.Stdout, helpTemplate, cmd) } // not exit 2: succeeded at 'go help cmd'. return } var usageTemplate = `{{.Long | trim}} Usage: {{.UsageLine}} <command> [arguments] The commands are: {{range .Commands}}{{if or (.Runnable) .Commands}} {{.Name | printf "%-11s"}} {{.Short}}{{end}}{{end}}
Registered: 2024-06-12 16:32 - Last Modified: 2024-05-03 18:15 - 4.7K bytes - Viewed (0) -
tools/istio-docker.mk
.PHONY: docker .PHONY: docker.all .PHONY: docker.save .PHONY: docker.push ### Docker commands ### # Below provides various commands to build/push docker images. # These are all wrappers around ./tools/docker, the binary that controls docker builds. # Builds can also be done through direct ./tools/docker invocations. # When using these commands the flow is: # 1) make target calls ./tools/docker
Registered: 2024-06-14 15:00 - Last Modified: 2022-03-31 21:56 - 2.1K bytes - Viewed (0) -
cmd/genman/gen_kube_man.go
if len(command.Example) > 0 { fmt.Fprintf(out, "# EXAMPLE\n") fmt.Fprintf(out, "```\n%s\n```\n", command.Example) } if len(command.Commands()) > 0 || len(parent) > 0 { fmt.Fprintf(out, "# SEE ALSO\n") if len(parent) > 0 { fmt.Fprintf(out, "**%s(1)**, ", dparent) } for _, c := range command.Commands() { fmt.Fprintf(out, "**%s-%s(1)**, ", dname, c.Name()) genMarkdown(c, name, docsDir)
Registered: 2024-06-15 01:39 - Last Modified: 2023-04-05 12:03 - 6.3K bytes - Viewed (0) -
src/cmd/go/testdata/script/build_cache_disabled.txt
# The build cache is required to build anything. It also may be needed to # initialize the build system, which is needed for commands like 'go env'. # However, there are lots of commands the cache is not needed for, and we # shouldn't require it when it won't be used. # # TODO(golang.org/issue/39882): commands below should work, too. # * go clean -modcache # * go env # * go fix # * go fmt # * go generate # * go get
Registered: 2024-06-12 16:32 - Last Modified: 2021-09-28 17:19 - 965 bytes - Viewed (0) -
cmd/kubeadm/app/cmd/phases/workflow/doc.go
after their parent phase. The phase runner can be bound to a cobra command; this operation sets the command description giving evidence of the list of phases, and automatically creates sub commands for invoking phases atomically. Autogenerated sub commands get flags according to the following rule: - global flags will be always inherited by autogenerated commands (this is managed by cobra)
Registered: 2024-06-15 01:39 - Last Modified: 2019-02-14 23:49 - 2.6K bytes - Viewed (0) -
cmd/kubeadm/app/cmd/options/doc.go
limitations under the License. */ /* Package options provide a central point for defining flags for kubeadm cobra commands, no matter if hard coded commands or autogenerated command for phases. New kubeadm flags should always be defined in this package as a constant before their usage, in order to enforce naming consistency across different commands and to control flag proliferation.
Registered: 2024-06-15 01:39 - Last Modified: 2018-11-04 18:46 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/chain/CommandChain.java
protected int executeCommand(final String[] commands, final String username, final String password) { if (commands == null || commands.length == 0) { throw new CommandExecutionException("command is empty."); } if (logger.isInfoEnabled()) { logger.info("Command: {}", String.join(" ", commands)); } final String[] cmds = stream(commands).get(stream -> stream.map(s -> {
Registered: 2024-06-12 13:08 - Last Modified: 2024-02-22 01:37 - 9.3K bytes - Viewed (0)