Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for runEnv (0.23 sec)

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

    			args = args[1:]
    			if goexp != "" {
    				goexp += ","
    			}
    			goexp += args[0]
    			runenv = append(runenv, "GOEXPERIMENT="+goexp)
    
    		case "-godebug": // set GODEBUG environment
    			args = args[1:]
    			if godebug != "" {
    				godebug += ","
    			}
    			godebug += args[0]
    			runenv = append(runenv, "GODEBUG="+godebug)
    
    		default:
    			flags = append(flags, args[0])
    		}
    		args = args[1:]
    	}
    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/build.go

    		goCmd = append(goCmd, "-v")
    	}
    
    	// Force only one process at a time on vx32 emulation.
    	if gohostos == "plan9" && os.Getenv("sysname") == "vx32" {
    		goCmd = append(goCmd, "-p=1")
    	}
    
    	runEnv(workdir, ShowOutput|CheckExit, env, append(goCmd, args...)...)
    }
    
    func checkNotStale(env []string, goBinary string, targets ...string) {
    	goCmd := []string{goBinary, "list"}
    	if noOpt {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top