Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for toolChain (0.13 sec)

  1. src/cmd/go/alldocs.go

    //
    //	go get example.com/mod@none
    //
    // To upgrade the minimum required Go version to the latest released Go version:
    //
    //	go get go@latest
    //
    // To upgrade the Go toolchain to the latest patch release of the current Go toolchain:
    //
    //	go get toolchain@patch
    //
    // See https://golang.org/ref/mod#go-get for details.
    //
    // In earlier versions of Go, 'go get' was used to build and install packages.
    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

    		}
    	}
    	if p.Internal.BuildInfo != nil {
    		fmt.Fprintf(h, "modinfo %q\n", p.Internal.BuildInfo.String())
    	}
    
    	// Configuration specific to compiler toolchain.
    	switch cfg.BuildToolchainName {
    	default:
    		base.Fatalf("buildActionID: unknown build toolchain %q", cfg.BuildToolchainName)
    	case "gc":
    		fmt.Fprintf(h, "compile %s %q %q\n", b.toolID("compile"), forcedGcflags, p.Internal.Gcflags)
    		if len(p.SFiles) > 0 {
    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

    		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)
  4. 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)
  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