Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NoExperiment (0.11 sec)

  1. src/cmd/go/alldocs.go

    //		generated by running a "go build -cover" binary.
    //		Requires that GOEXPERIMENT=coverageredesign is enabled.
    //
    // Special-purpose environment variables:
    //
    //	GCCGOTOOLDIR
    //		If set, where to find gccgo tools, such as cgo.
    //		The default is based on how gccgo was configured.
    //	GOEXPERIMENT
    //		Comma-separated list of toolchain experiments to enable or disable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    		}
    
    		// GOARM, GOMIPS, etc.
    		key, val, _ := cfg.GetArchEnv()
    		fmt.Fprintf(h, "%s=%s\n", key, val)
    
    		if cfg.CleanGOEXPERIMENT != "" {
    			fmt.Fprintf(h, "GOEXPERIMENT=%q\n", cfg.CleanGOEXPERIMENT)
    		}
    
    		// TODO(rsc): Convince compiler team not to add more magic environment variables,
    		// or perhaps restrict the environment variables passed to subprocesses.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    			appendSetting(name, cfg.Getenv(name))
    		}
    	}
    	appendSetting("GOARCH", cfg.BuildContext.GOARCH)
    	if cfg.RawGOEXPERIMENT != "" {
    		appendSetting("GOEXPERIMENT", cfg.RawGOEXPERIMENT)
    	}
    	appendSetting("GOOS", cfg.BuildContext.GOOS)
    	if key, val, _ := cfg.GetArchEnv(); key != "" && val != "" {
    		appendSetting(key, val)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top