Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for goSpin (0.12 sec)

  1. src/cmd/internal/moddeps/moddeps_test.go

    	// GO_TEST_SHORT=0 causes it to run this portion of the test.)
    	var modcacheEnv []string
    	{
    		out, err := testenv.Command(t, goBin, "env", "GOMODCACHE").Output()
    		if err != nil {
    			t.Fatalf("%s env GOMODCACHE: %v", goBin, err)
    		}
    		modcacheOk := false
    		if gomodcache := string(bytes.TrimSpace(out)); gomodcache != "" {
    			if _, err := os.Stat(gomodcache); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/generate_invalid.txt

    [short] skip
    
    # Install an echo command because Windows doesn't have it.
    env GOBIN=$WORK/tmp/bin
    go install echo.go
    env PATH=$GOBIN${:}$PATH
    
    # Test go generate for directory with no go files
    ! go generate ./nogo
    ! stdout 'Fail'
    stderr 'no Go files'
    
    # Test go  generate for module which doesn't exist should fail
    ! go generate foo.bar/nothing
    stderr 'no required module provides package foo.bar/nothing'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:48:44 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. src/internal/cfg/cfg.go

    	CGO_FFLAGS
    	CGO_FFLAGS_ALLOW
    	CGO_FFLAGS_DISALLOW
    	CGO_LDFLAGS
    	CGO_LDFLAGS_ALLOW
    	CGO_LDFLAGS_DISALLOW
    	CXX
    	FC
    	GCCGO
    	GO111MODULE
    	GO386
    	GOAMD64
    	GOARCH
    	GOARM
    	GOARM64
    	GOBIN
    	GOCACHE
    	GOCACHEPROG
    	GOENV
    	GOEXE
    	GOEXPERIMENT
    	GOFLAGS
    	GOGCCFLAGS
    	GOHOSTARCH
    	GOHOSTOS
    	GOINSECURE
    	GOMIPS
    	GOMIPS64
    	GOMODCACHE
    	GONOPROXY
    	GONOSUMDB
    	GOOS
    	GOPATH
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 01:33:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. hack/verify-licenses.sh

    cd "${KUBE_TEMP}"/tmp_test_licenses/kubernetes && rm -rf vendor
    
    # Ensure that we find the binaries we build before anything else.
    export GOBIN="${KUBE_OUTPUT_BIN}"
    PATH="${GOBIN}:${PATH}"
    
    function http_code() {
        curl -I -s -o /dev/null -w "%{http_code}" "$1"
    }
    
    packages_flagged=()
    packages_url_missing=()
    exit_code=0
    
    # Install go-licenses
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/cover_list.txt

    # This test is intended to verify that "go list" accepts coverage related
    # build arguments (such as -cover, -covermode). See issue #57785.
    
    [short] skip
    [!GOEXPERIMENT:coverageredesign] skip
    
    env GOBIN=$WORK/bin
    
    # Install a target and then do an ordinary staleness check on it.
    go install m/example
    ! stale m/example
    
    # Run a second staleness check with "-cover" as a build flag. The
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 22:47:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/build.go

    	ctx, span := trace.StartSpan(ctx, "InstallPackages "+strings.Join(patterns, " "))
    	defer span.Done()
    
    	if cfg.GOBIN != "" && !filepath.IsAbs(cfg.GOBIN) {
    		base.Fatalf("cannot install, GOBIN must be an absolute path")
    	}
    
    	pkgs = omitTestOnly(pkgsFilter(pkgs))
    	for _, p := range pkgs {
    		if p.Target == "" {
    			switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/00-bug.yml

          required: true
    
      - type: textarea
        id: go-env
        attributes:
          label: "Output of `go env` in your module/workspace:"
          placeholder: |
            GO111MODULE=""
            GOARCH="arm64"
            GOBIN="/Users/gopher/go/bin"
            GOCACHE="/Users/gopher/go/cache"
            GOENV="/Users/gopher/Library/Application Support/go/env"
            GOEXE=""
            GOEXPERIMENT=""
            GOFLAGS=""
            GOHOSTARCH="arm64"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. src/crypto/ecdh/ecdh_test.go

    		}
    		return string(out)
    	}
    
    	goBin := testenv.GoToolPath(t)
    	run(goBin, "build", "-o", "hello.exe", "hello.go")
    	if out := run("./hello.exe"); out != "OK\n" {
    		t.Error("unexpected output:", out)
    	}
    
    	// List all text symbols under crypto/... and make sure there are some for
    	// P384, but none for the other curves.
    	var consistent bool
    	nm := run(goBin, "tool", "nm", "hello.exe")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 18K bytes
    - Viewed (0)
  9. hack/lib/golang.sh

    #   env-var GOPATH points to our local output dir
    #   env-var GOBIN is unset (we want binaries in a predictable place)
    #   env-var PATH includes the local GOPATH
    kube::golang::setup_env() {
      # Even in module mode, we need to set GOPATH for `go build` and `go install`
      # to work.  We build various tools (usually via `go install`) from a lot of
      # scripts.
      #   * We can't just set GOBIN because that does not work on cross-compiles.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  10. src/cmd/dist/build.go

    	os.Setenv("GORISCV64", goriscv64)
    	os.Setenv("GOROOT", goroot)
    
    	// Set GOBIN to GOROOT/bin. The meaning of GOBIN has drifted over time
    	// (see https://go.dev/issue/3269, https://go.dev/cl/183058,
    	// https://go.dev/issue/31576). Since we want binaries installed by 'dist' to
    	// always go to GOROOT/bin anyway.
    	os.Setenv("GOBIN", gorootBin)
    
    	// Make the environment more predictable.
    	os.Setenv("LANG", "C")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top