Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for cmdLines (0.09 sec)

  1. src/cmd/internal/testdir/testdir_test.go

    					cmdline[2] += " " + strings.TrimPrefix(flag, "--gcflags=")
    				case flag == "-gcflags", flag == "--gcflags":
    					i++
    					if i < len(flags) {
    						cmdline[2] += " " + flags[i]
    					}
    				default:
    					cmdline = append(cmdline, flag)
    				}
    			}
    
    			cmdline = append(cmdline, long)
    			cmd := exec.Command(goTool, cmdline...)
    			cmd.Env = append(os.Environ(), env.Environ()...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    // The command will be run in dir, and Stdout and Stderr will go to os.Stdout
    // and os.Stderr.
    func (t *tester) dirCmd(dir string, cmdline ...interface{}) *exec.Cmd {
    	bin, args := flattenCmdline(cmdline)
    	cmd := exec.Command(bin, args...)
    	if filepath.IsAbs(dir) {
    		setDir(cmd, dir)
    	} else {
    		setDir(cmd, filepath.Join(goroot, dir))
    	}
    	cmd.Stdout = os.Stdout
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

    # running. A standard `Restart-Service` may fail because
    # the process is sometimes unstoppable, so this function works around it
    # by killing the processes.
    function Restart-LogService([string]$service, [string]$cmdline) {
      Stop-Service -NoWait -ErrorAction Ignore $service
    
      # Wait (if necessary) for service to stop.
      $timeout = 10
      $stopped = (Get-service $service).Status -eq 'Stopped'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. cmd/test-utils_test.go

    	}
    	endpoints := mustGetNewEndpoints(poolIdx, drivesPerSet, args...)
    	return []PoolEndpoints{{
    		SetCount:     setCount,
    		DrivesPerSet: drivesPerSet,
    		Endpoints:    endpoints,
    		CmdLine:      strings.Join(args, " "),
    	}}
    }
    
    func mustGetNewEndpoints(poolIdx int, drivesPerSet int, args ...string) (endpoints Endpoints) {
    	endpoints, err := NewEndpoints(args...)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
Back to top