Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 3,167 for command1 (0.14 sec)

  1. src/cmd/go/script_test.go

    			"GIT_TRACE_CURL_NO_DATA=1",
    			"GIT_REDACT_COOKIES=o,SSO,GSSO_Uberproxy")
    	}
    	if testing.Short() {
    		// VCS commands are always somewhat slow: they either require access to external hosts,
    		// or they require our intercepted vcs-test.golang.org to regenerate the repository.
    		// Require all tests that use VCS commands to be skipped in short mode.
    		env = append(env, "TESTGOVCS=panic")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/clean/clean.go

    archive or binary (what 'go install' would create).
    
    The -n flag causes clean to print the remove commands it would execute,
    but not run them.
    
    The -r flag causes clean to be applied recursively to all the
    dependencies of the packages named by the import paths.
    
    The -x flag causes clean to print remove commands as it executes them.
    
    The -cache flag causes clean to remove the entire go build cache.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/workflow/runner_test.go

    				}
    
    				if err := cmdHasFlags(cCmd, flags...); err != nil {
    					t.Errorf("command %s didn't have expected flags: %v\n", c, err)
    				}
    			}
    
    		})
    	}
    }
    
    func getCmd(parent *cobra.Command, nestedName string) *cobra.Command {
    	names := strings.Split(nestedName, " ")
    	for i, n := range names {
    		for _, c := range parent.Commands() {
    			if c.Name() == n {
    				if i == len(names)-1 {
    					return c
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 20:03:45 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    type Root int
    
    const (
    	// AutoRoot is the default for most commands. modload.Init will look for
    	// a go.mod file in the current directory or any parent. If none is found,
    	// modules may be disabled (GO111MODULE=auto) or commands may run in a
    	// limited module mode.
    	AutoRoot Root = iota
    
    	// NoRoot is used for commands that run in module mode and ignore any go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/init.go

    			return initRunner.Run(args)
    		},
    		Args: cobra.NoArgs,
    	}
    
    	// add flags to the init command.
    	// init command local flags could be eventually inherited by the sub-commands automatically generated for phases
    	AddInitConfigFlags(cmd.Flags(), initOptions.externalInitCfg)
    	AddClusterConfigFlags(cmd.Flags(), initOptions.externalClusterCfg, &initOptions.featureGatesString)
    	AddInitOtherFlags(cmd.Flags(), initOptions)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 03:37:05 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/certs.go

    `)
    	generateCSRExample = cmdutil.Examples(`
    	# The following command will generate keys and CSRs for all control-plane certificates and kubeconfig files:
    	kubeadm certs generate-csr --kubeconfig-dir /tmp/etc-k8s --cert-dir /tmp/etc-k8s/pki
    `)
    )
    
    // newCmdCertsUtility returns main command for certs phase
    func newCmdCertsUtility(out io.Writer) *cobra.Command {
    	cmd := &cobra.Command{
    		Use:     "certs",
    		Aliases: []string{"certificates"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    	// Env is the additional environment variables for the command.
    	// PATTERN and RANDOM are substituted in the values, but not the names.
    	Env []string
    
    	// Cmd is the command (program name) to run.
    	// PATTERN and RANDOM are not substituted.
    	Cmd string
    
    	// Args is the command arguments.
    	// PATTERN and RANDOM are substituted anywhere they appear.
    	Args []string
    
    	// Command-line flags controlling bisect behavior.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/codehost/codehost.go

    	}
    	return text
    }
    
    var dirLock sync.Map
    
    // Run runs the command line in the given directory
    // (an empty dir means the current directory).
    // It returns the standard output and, for a non-zero exit,
    // a *RunError indicating the command, exit status, and standard error.
    // Standard error is unavailable for commands that exit successfully.
    func Run(ctx context.Context, dir string, cmdline ...any) ([]byte, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/LongRunningOperation.java

         * Examples of supported build arguments: '--info', '-p'.
         * The command line instructions that are actually separate commands (like '-?' and '-v') are not supported.
         * Some other instructions like '--daemon' are also not supported - the tooling API always runs with the daemon.
         * <p>
         * If an unknown or unsupported command line option is specified, {@link org.gradle.tooling.exceptions.UnsupportedBuildArgumentException}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 14K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    "// want ..." comments in the input code.
    
    # Standalone commands
    
    Analyzers are provided in the form of packages that a driver program is
    expected to import. The vet command imports a set of several analyzers,
    but users may wish to define their own analysis commands that perform
    additional checks. To simplify the task of creating an analysis command,
    either for a single analyzer or for a whole suite, we provide the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top