Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for gotoolchain (0.14 sec)

  1. src/cmd/go/alldocs.go

    //		The root of the go tree.
    //	GOSUMDB
    //		The name of checksum database to use and optionally its public key and
    //		URL. See https://golang.org/ref/mod#authenticating.
    //	GOTOOLCHAIN
    //		Controls which Go toolchain is used. See https://go.dev/doc/toolchain.
    //	GOTMPDIR
    //		The directory where the go command will write
    //		temporary source files, packages, and binaries.
    //	GOVCS
    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

    	linker() string
    }
    
    type noToolchain struct{}
    
    func noCompiler() error {
    	log.Fatalf("unknown compiler %q", cfg.BuildContext.Compiler)
    	return nil
    }
    
    func (noToolchain) compiler() string {
    	noCompiler()
    	return ""
    }
    
    func (noToolchain) linker() string {
    	noCompiler()
    	return ""
    }
    
    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. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.nativeplatform.toolchain.GccCommandLineToolConfiguration.getExecutable()> does not have raw return type assignable to org.gradle.api.provider.Property in (GccCommandLineToolConfiguration.java:0)
    Method <org.gradle.nativeplatform.toolchain.VisualCpp.getInstallDir()> does not have raw return type assignable to org.gradle.api.provider.Property in (VisualCpp.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    		if p.Module.Path == "bootstrap" && cfg.GOROOT == os.Getenv("GOROOT_BOOTSTRAP") {
    			// During bootstrapping, the bootstrap toolchain is built in module
    			// "bootstrap" (instead of "std"), with GOROOT set to GOROOT_BOOTSTRAP
    			// (so the bootstrap toolchain packages don't even appear to be in GOROOT).
    			goto omitVCS
    		}
    		repoDir, vcsCmd, err = vcs.FromDir(base.Cwd(), "", allowNesting)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/callback.go

    // into Go.
    func testCallbackCallers(t *testing.T) {
    	if runtime.Compiler != "gc" {
    		// The exact function names are not going to be the same.
    		t.Skip("skipping for non-gc toolchain")
    	}
    	pc := make([]uintptr, 100)
    	n := 0
    	name := []string{
    		"runtime.cgocallbackg1",
    		"runtime.cgocallbackg",
    		"runtime.cgocallback",
    		"runtime.systemstack_switch",
    		"runtime.cgocall",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 111.5K bytes
    - Viewed (0)
Back to top