Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,159 for Commands (0.28 sec)

  1. 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)
  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/internal/browser/browser.go

    func Open(url string) bool {
    	for _, args := range Commands() {
    		cmd := exec.Command(args[0], append(args[1:], url)...)
    		if cmd.Start() == nil && appearsSuccessful(cmd, 3*time.Second) {
    			return true
    		}
    	}
    	return false
    }
    
    // appearsSuccessful reports whether the command appears to have run successfully.
    // If the command runs longer than the timeout, it's deemed successful.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  4. src/cmd/dist/main.go

    list [-json] [-broken]  list all supported platforms
    test [-h]               run Go test(s)
    version                 print Go version
    
    All commands take -v flags to emit extra information.
    `)
    	xexit(2)
    }
    
    // commands records the available commands.
    var commands = map[string]func(){
    	"banner":    cmdbanner,
    	"bootstrap": cmdbootstrap,
    	"clean":     cmdclean,
    	"env":       cmdenv,
    	"install":   cmdinstall,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. src/cmd/go/chdir_test.go

    	// Test that every command either has a -C flag registered
    	// or has CustomFlags set. In the latter case, the command
    	// must be explicitly tested in TestScript/chdir.
    	script, err := os.ReadFile("testdata/script/chdir.txt")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	var walk func(string, *base.Command)
    	walk = func(name string, cmd *base.Command) {
    		if len(cmd.Commands) > 0 {
    			for _, sub := range cmd.Commands {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 12:16:35 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/go/testdata/script/build_dash_x.txt

    # loading to properly affect the import graph.)
    go build runtime/cgo
    
    go build -x -o main main.go
    cp stderr commands.txt
    cat header.txt commands.txt
    cp stdout test.sh
    
    exec ./main
    cmp stderr hello.txt
    rm ./main
    
    exec /usr/bin/env bash -x test.sh
    exec ./main
    cmp stderr hello.txt
    
    grep '^WORK=(.*)\n' commands.txt
    
    -- main.go --
    package main
    
    import "C"
    
    func main() {
    	print("hello\n")
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:10 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  8. docs/multi-tenancy/README.md

    This topic provides commands to set up different configurations of hosts, nodes, and drives. The examples provided here can be used as a starting point for other configurations.
    
    1. [Standalone Deployment](#standalone-deployment)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modcmd/mod.go

    // Package modcmd implements the “go mod” command.
    package modcmd
    
    import (
    	"cmd/go/internal/base"
    )
    
    var CmdMod = &base.Command{
    	UsageLine: "go mod",
    	Short:     "module maintenance",
    	Long: `Go mod provides access to operations on modules.
    
    Note that support for modules is built into all the go commands,
    not just 'go mod'. For example, day-to-day adding, removing, upgrading,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 807 bytes
    - Viewed (0)
  10. 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)
Back to top