Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 997 for Commands (0.22 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/runtime/runtime-gdb_test.go

    	}
    	cmd := exec.Command(testenv.GoToolPath(t), "build", "-o", "a.exe", "main.go")
    	cmd.Dir = dir
    	out, err := testenv.CleanCmdEnv(cmd).CombinedOutput()
    	if err != nil {
    		t.Fatalf("building source %v\n%s", err, out)
    	}
    
    	// Execute gdb commands.
    	// 'setg_gcc' is the first point where we can reproduce the issue with just one 'run' command.
    	args := []string{"-nx", "-batch",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/build.go

    and test commands:
    
    	-C dir
    		Change to dir before running the command.
    		Any files named on the command line are interpreted after
    		changing directories.
    		If used, this flag must be the first one in the command line.
    	-a
    		force rebuilding of packages that are already up-to-date.
    	-n
    		print the commands but do not run them.
    	-p n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. 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)
  5. docs/sts/ldap.md

    ## Configuring AD/LDAP on MinIO
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    #           «\${var#prefix}», «\${var%suffix}», and «\$( cmd )»;
    #         * compound commands having a testable exit status, especially «case»;
    #         * various built-in commands including «command», «set», and «ulimit».
    #
    #   Important for patching:
    #
    #   (2) This script targets any POSIX shell, so it avoids extensions provided
    #       by Bash, Ksh, etc; in particular arrays are avoided.
    #
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. misc/go_android_exec/main.go

    func adbCopyGoroot() error {
    	goTool, err := goTool()
    	if err != nil {
    		return err
    	}
    	cmd := exec.Command(goTool, "version")
    	cmd.Stderr = os.Stderr
    	out, err := cmd.Output()
    	if err != nil {
    		return fmt.Errorf("%v: %w", cmd, err)
    	}
    	goVersion := string(out)
    
    	// Also known by cmd/dist. The bootstrap command deletes the file.
    	statPath := filepath.Join(os.TempDir(), "go_android_exec-adb-sync-status")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/upgrade/node.go

    	outputWriter          io.Writer
    }
    
    // newCmdNode returns the cobra command for `kubeadm upgrade node`
    func newCmdNode(out io.Writer) *cobra.Command {
    	nodeOptions := newNodeOptions()
    	nodeRunner := workflow.NewRunner()
    
    	cmd := &cobra.Command{
    		Use:   "node",
    		Short: "Upgrade commands for a node in the cluster",
    		RunE: func(cmd *cobra.Command, args []string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. pkg/volume/git_repo/git_repo_test.go

    	if !plug.CanSupport(&volume.Spec{Volume: &v1.Volume{VolumeSource: v1.VolumeSource{GitRepo: &v1.GitRepoVolumeSource{}}}}) {
    		t.Errorf("Expected true")
    	}
    }
    
    // Expected command
    type expectedCommand struct {
    	// The git command
    	cmd []string
    	// The dir of git command is executed
    	dir string
    }
    
    func TestPlugin(t *testing.T) {
    	gitURL := "https://github.com/kubernetes/kubernetes.git"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 08:26:26 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. hack/make-rules/test.sh

      # support collecting coverage across multiple packages at once, so we must issue
      # separate 'go test' commands for each package and then combine at the end.
      # To speed things up considerably, we can at least use xargs -P to run multiple
      # 'go test' commands at once.
      # To properly parse the test results if generating a JUnit test report, we
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top