Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CmdEnv (0.06 sec)

  1. src/syscall/mksyscall_windows.go

    	listCmd.Env = append(os.Environ(), "GO111MODULE=on")
    
    	var (
    		cmdEnv  []string
    		modArgs []string
    	)
    	if out, err := listCmd.Output(); err == nil && string(bytes.TrimSpace(out)) == "std" {
    		// Force module mode to use mkwinsyscall at the same version as the x/sys
    		// module vendored into the standard library.
    		cmdEnv = append(os.Environ(), "GO111MODULE=on")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2K bytes
    - Viewed (0)
  2. src/cmd/dist/main.go

    `)
    	xexit(2)
    }
    
    // commands records the available commands.
    var commands = map[string]func(){
    	"banner":    cmdbanner,
    	"bootstrap": cmdbootstrap,
    	"clean":     cmdclean,
    	"env":       cmdenv,
    	"install":   cmdinstall,
    	"list":      cmdlist,
    	"test":      cmdtest,
    	"version":   cmdversion,
    }
    
    // main takes care of OS-specific startup and dispatches to xmain.
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top