Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,167 for command1 (0.24 sec)

  1. 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)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/mirror/SetMirrorsSampleModifier.java

                return sample;
            }
            List<Command> commands = sample.getCommands();
            List<Command> modifiedCommands = new ArrayList<Command>();
            for (Command command : commands) {
                if ("gradle".equals(command.getExecutable())) {
                    List<String> args = new ArrayList<String>(command.getArgs());
                    args.add("--init-script");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/go/internal/version/version.go

    )
    
    func runVersion(ctx context.Context, cmd *base.Command, args []string) {
    	if len(args) == 0 {
    		// If any of this command's flags were passed explicitly, error
    		// out, because they only make sense with arguments.
    		//
    		// Don't error if the flags came from GOFLAGS, since that can be
    		// a reasonable use case. For example, imagine GOFLAGS=-v to
    		// turn "verbose mode" on for all Go commands, which should not
    		// break "go version".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 19:27:00 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. 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)
  7. 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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 14 23:49:31 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/toolchain/select.go

    			// If we are racing with another go command and do bin/go first,
    			// then the check of bin/go above might succeed, the other go command
    			// would skip its own mode-setting, and then the go command might
    			// try to run a tool before we get to setting the bits on pkg/tool.
    			// Setting pkg/tool before bin/go avoids that ordering problem.
    			// The only other tool the go command invokes is gofmt,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. cmd/genyaml/gen_kubectl_yaml.go

    	})
    
    	return result
    }
    
    func genYaml(command *cobra.Command, parent, docsDir string) {
    	doc := cmdDoc{}
    
    	doc.Name = command.Name()
    	doc.Synopsis = forceMultiLine(command.Short)
    	doc.Description = forceMultiLine(command.Long)
    
    	flags := command.NonInheritedFlags()
    	if flags.HasFlags() {
    		doc.Options = genFlagResult(flags)
    	}
    	flags = command.InheritedFlags()
    	if flags.HasFlags() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 14:05:23 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/generate/generate_test.go

    	}
    }
    
    // Command-related tests for TestGenerateCommandShortHand2
    // -- Note line numbers included to check substitutions from "build-in" variable - $GOLINE
    var splitTestsLines = []splitTestWithLine{
    	{"-command TEST1 $GOLINE", []string{"-command", "TEST1", "22"}, 22},
    	{"-command TEST2 ${DOLLAR}GOLINE", []string{"-command", "TEST2", "$GOLINE"}, 26},
    	{"TEST1", []string{"22"}, 33},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 20 14:09:12 UTC 2022
    - 7.4K bytes
    - Viewed (0)
Back to top