Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for goSpin (1.06 sec)

  1. src/cmd/go/internal/envcmd/env.go

    	envFile, envFileChanged, _ := cfg.EnvFile()
    	env := []cfg.EnvVar{
    		{Name: "GO111MODULE", Value: cfg.Getenv("GO111MODULE")},
    		{Name: "GOARCH", Value: cfg.Goarch, Changed: cfg.Goarch != runtime.GOARCH},
    		{Name: "GOBIN", Value: cfg.GOBIN},
    		{Name: "GOCACHE"},
    		{Name: "GOENV", Value: envFile, Changed: envFileChanged},
    		{Name: "GOEXE", Value: cfg.ExeSuffix},
    
    		// List the raw value of GOEXPERIMENT, not the cleaned one.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. src/make.bat

    if...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/cfg/cfg.go

    }
    
    var (
    	GOROOT string
    
    	// Either empty or produced by filepath.Join(GOROOT, …).
    	GOROOTbin string
    	GOROOTpkg string
    	GOROOTsrc string
    
    	GOBIN                         = Getenv("GOBIN")
    	GOMODCACHE, GOMODCACHEChanged = EnvOrAndChanged("GOMODCACHE", gopathDir("pkg/mod"))
    
    	// Used in envcmd.MkEnv and build ID computations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/help/helpdoc.go

    DIR/bin/quux, not DIR/bin/foo/quux. The "foo/" prefix is stripped
    so that you can add DIR/bin to your PATH to get at the
    installed commands. If the GOBIN environment variable is
    set, commands are installed to the directory it names instead
    of DIR/bin. GOBIN must be an absolute path.
    
    Here's an example directory layout:
    
        GOPATH=/home/user/go
    
        /home/user/go/
            src/
                foo/
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    			p.Internal.Build.BinDir = modload.BinDir()
    		}
    		if p.Internal.Build.BinDir != "" {
    			// Install to GOBIN or bin of GOPATH entry.
    			p.Target = filepath.Join(p.Internal.Build.BinDir, elem)
    			if !p.Goroot && strings.Contains(elem, string(filepath.Separator)) && cfg.GOBIN != "" {
    				// Do not create $GOBIN/goos_goarch/elem.
    				p.Target = ""
    				p.Internal.GobinSubdir = true
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testshared/shared_test.go

    	}
    	if testing.Verbose() {
    		fmt.Printf("+ export GOPATH=%s\n", gopath)
    		fmt.Printf("+ cd %s\n", modRoot)
    	}
    	os.Setenv("GOPATH", gopath)
    	// Explicitly override GOBIN as well, in case it was set through a GOENV file.
    	os.Setenv("GOBIN", filepath.Join(gopath, "bin"))
    	os.Chdir(modRoot)
    	os.Setenv("PWD", modRoot)
    
    	// The test also needs to install libraries into GOROOT/pkg, so copy the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testcshared/cshared_test.go

    	cmd := exec.Command(buildcmd[0], buildcmd[1:]...)
    	cmd.Dir = filepath.Join(tmpdir, "src", "testcshared")
    	env := append(cmd.Environ(),
    		"GOPATH="+tmpdir,
    		"GOBIN="+filepath.Join(tmpdir, "bin"),
    		"GO111MODULE=off", // 'go install' only works in GOPATH mode
    	)
    	cmd.Env = env
    	t.Log(buildcmd)
    	out, err := cmd.CombinedOutput()
    	t.Logf("%s", out)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  8. Makefile.core.mk

    -include .istiorc.mk
    
    # Environment for tests, the directory containing istio and deps binaries.
    # Typically same as GOPATH/bin, so tests work seamlessly with IDEs.
    
    export ISTIO_BIN=$(GOBIN)
    
    # If we are running in the Linux build container on non Linux hosts, we add the
    # linux binaries to the build dependencies, BUILD_DEPS, which can be added to other targets
    # that would need the Linux binaries (ex. tests).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    - PMD has been updated to https://pmd.github.io/latest/pmd_release_notes.html#28-july-2019---6170[PMD 6.17.0].
    - JaCoCo has been updated to http://www.jacoco.org/jacoco/trunk/doc/changes.html[0.8.5]. Contributed by link:https://github.com/Godin[Evgeny Mandrikov]
    
    ==== Changes to build and task names in composite builds
    
    Previously, Gradle used the name of the root project as the build name for an included build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    //
    // Executables are installed in the directory named by the GOBIN environment
    // variable, which defaults to $GOPATH/bin or $HOME/go/bin if the GOPATH
    // environment variable is not set. Executables in $GOROOT
    // are installed in $GOROOT/bin or $GOTOOLDIR instead of $GOBIN.
    //
    // If the arguments have version suffixes (like @latest or @v1.0.0), "go install"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top