Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 997 for Commands (0.11 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	}
    	sort.Strings(commands)
    
    	var help string
    	if commandLine {
    		help = "  Output formats (select at most one):\n"
    	} else {
    		help = "  Commands:\n"
    		commands = append(commands, fmtHelp("o/options", "List options and their current values"))
    		commands = append(commands, fmtHelp("q/quit/exit/^D", "Exit pprof"))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/generate/generate.go

    }
    
    // setShorthand installs a new shorthand as defined by a -command directive.
    func (g *Generator) setShorthand(words []string) {
    	// Create command shorthand.
    	if len(words) == 1 {
    		g.errorf("no command specified for -command")
    	}
    	command := words[1]
    	if g.commands[command] != nil {
    		g.errorf("command %q multiply defined", command)
    	}
    	g.commands[command] = slices.Clip(words[2:])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/README

    Commands are executed one at a time, and errors are checked for each command;
    if any command fails unexpectedly, no subsequent commands in the script are
    executed. The command prefix ! indicates that the command on the rest of the
    line (typically go or a matching predicate) must fail instead of succeeding.
    The command prefix ? indicates that the command may or may not succeed, but the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/interactive.go

    			ui.Print(`No samples were found with the default sample value type.`)
    			ui.Print(`Try "sample_index" command to analyze different sample values.`, "\n")
    		}
    	}
    	ui.Print(`Entering interactive mode (type "help" for commands, "o" for options)`)
    }
    
    // shortcuts represents composite commands that expand into a sequence
    // of other commands.
    type shortcuts map[string][]string
    
    func (a shortcuts) expand(input string) []string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  5. pkg/collateral/control.go

    }
    
    func findCommands(commands map[string]*cobra.Command, cmd *cobra.Command) {
    	cmd.InitDefaultHelpCmd()
    	cmd.InitDefaultHelpFlag()
    
    	commands[cmd.CommandPath()] = cmd
    	for _, c := range cmd.Commands() {
    		findCommands(commands, c)
    	}
    }
    
    const help = "help"
    
    func genHTMLFragment(cmd *cobra.Command, path string, p Predicates) error {
    	commands := make(map[string]*cobra.Command)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  6. src/cmd/go/main.go

    }
    
    // lookupCmd interprets the initial elements of args
    // to find a command to run (cmd.Runnable() == true)
    // or else a command group that ran out of arguments
    // or had an unknown subcommand (len(cmd.Commands) > 0).
    // It returns that command and the number of elements of args
    // that it took to arrive at that command.
    func lookupCmd(args []string) (cmd *base.Command, used int) {
    	cmd = base.Go
    	for used < len(args) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. src/cmd/go/internal/script/engine.go

    //
    // Commands are executed one at a time, and errors are checked for each command;
    // if any command fails unexpectedly, no subsequent commands in the script are
    // executed. The command prefix ! indicates that the command on the rest of the
    // line (typically go or a matching predicate) must fail instead of succeeding.
    // The command prefix ? indicates that the command may or may not succeed, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/script/cmds.go

    		})
    }
    
    // Wait waits for the completion of background commands.
    //
    // When Wait returns, the stdout and stderr buffers contain the concatenation of
    // the background commands' respective outputs in the order in which those
    // commands were started.
    func Wait() Cmd {
    	return Command(
    		CmdUsage{
    			Summary: "wait for completion of background commands",
    			Args:    "",
    			Detail: []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/selection/DefaultBuildTaskSelector.java

        private final List<BuiltInCommand> commands;
        private final InternalProblems problemsService;
    
        @Inject
        public DefaultBuildTaskSelector(BuildStateRegistry buildRegistry, TaskSelector taskSelector, List<BuiltInCommand> commands, InternalProblems problemsService) {
            this.buildRegistry = buildRegistry;
            this.taskSelector = taskSelector;
            this.commands = commands;
            this.problemsService = problemsService;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. istioctl/cmd/root.go

    	seenCommands := make(map[*cobra.Command]bool)
    	var commandStack []*cobra.Command
    
    	commandStack = append(commandStack, rootCmd)
    
    	for len(commandStack) > 0 {
    		n := len(commandStack) - 1
    		curCmd := commandStack[n]
    		commandStack = commandStack[:n]
    		seenCommands[curCmd] = true
    		for _, command := range curCmd.Commands() {
    			if !seenCommands[command] {
    				commandStack = append(commandStack, command)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top