Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,140 for Commands (0.14 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/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: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. 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: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. cmd/main.go

    	commandsTree := trie.NewTrie()
    
    	// registerCommand registers a cli command.
    	registerCommand := func(command cli.Command) {
    		commands = append(commands, command)
    		commandsTree.Insert(command.Name)
    	}
    
    	findClosestCommands := func(command string) []string {
    		var closestCommands []string
    		closestCommands = append(closestCommands, commandsTree.PrefixMatch(command)...)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseProject.java

        /**
         * Returns the Eclipse build commands configured on the project.
         * <p>
         * Some build commands are automatically added to the result based on the Gradle plugins applied on the project.
         * For example, if the project applies the 'java' plugin the result will contain the
         * {@code "org.eclipse.jdt.core.javabuilder"} build command. Note, that the exact list of automatically
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/go/scriptreadme_test.go

    	            [exit status 1]
    	            FAIL: unexpected go command failure
    
    	        script_test.go:73: failed at testdata/script/install_rebuild_gopath.txt:15 in $WORK/gopath/src
    
    	FAIL
    	exit status 1
    	FAIL	cmd/go	4.875s
    	$
    
    Note that the commands in earlier phases have been hidden, so that the relevant
    commands are more easily found, and the elapsed time for a completed phase
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top