Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for GOSUMDB (0.12 sec)

  1. src/cmd/go/internal/cfg/cfg.go

    	GOWASM, goWASMChanged       = EnvOrAndChanged("GOWASM", fmt.Sprint(buildcfg.GOWASM))
    
    	GOPROXY, GOPROXYChanged     = EnvOrAndChanged("GOPROXY", "")
    	GOSUMDB, GOSUMDBChanged     = EnvOrAndChanged("GOSUMDB", "")
    	GOPRIVATE                   = Getenv("GOPRIVATE")
    	GONOPROXY, GONOPROXYChanged = EnvOrAndChanged("GONOPROXY", GOPRIVATE)
    	GONOSUMDB, GONOSUMDBChanged = EnvOrAndChanged("GONOSUMDB", GOPRIVATE)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/envcmd/env.go

    		{Name: "GOPRIVATE", Value: cfg.GOPRIVATE},
    		{Name: "GOPROXY", Value: cfg.GOPROXY, Changed: cfg.GOPROXYChanged},
    		{Name: "GOROOT", Value: cfg.GOROOT},
    		{Name: "GOSUMDB", Value: cfg.GOSUMDB, Changed: cfg.GOSUMDBChanged},
    		{Name: "GOTMPDIR", Value: cfg.Getenv("GOTMPDIR")},
    		{Name: "GOTOOLCHAIN"},
    		{Name: "GOTOOLDIR", Value: build.ToolDir},
    		{Name: "GOVCS", Value: cfg.GOVCS},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. src/cmd/go/script_test.go

    		"TESTGO_EXE=" + testGo,
    		"TESTGO_VCSTEST_HOST=" + httpURL.Host,
    		"TESTGO_VCSTEST_TLS_HOST=" + httpsURL.Host,
    		"TESTGO_VCSTEST_CERT=" + srvCertFile,
    		"TESTGONETWORK=panic", // cleared by the [net] condition
    		"GOSUMDB=" + testSumDBVerifierKey,
    		"GONOPROXY=",
    		"GONOSUMDB=",
    		"GOVCS=*:all",
    		"devnull=" + os.DevNull,
    		"goversion=" + gover.Local(),
    		"CMDGO_TEST_RUN_MAIN=true",
    		"HGRCPATH=",
    		"GOTOOLCHAIN=auto",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/reuse_git.txt

    [short] skip
    [!git] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    # go mod download with the pseudo-version should invoke git but not have a TagSum or Ref.
    go mod download -x -json vcs-test.golang.org/git/hello.git@v0.0.0-20170922010558-fc3a09f3dc5c
    stderr 'git( .*)* fetch'
    cp stdout hellopseudo.json
    ! stdout '"(Query|TagPrefix|TagSum|Ref)"'
    stdout '"Version": "v0.0.0-20170922010558-fc3a09f3dc5c"'
    stdout '"VCS": "git"'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_invalid_version.txt

    [!net:golang.org] skip
    [!git] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    env GOFLAGS=-mod=mod
    
    # Regression test for golang.org/issue/27173: if the user (or go.mod file)
    # requests a pseudo-version that does not match both the module path and commit
    # metadata, reject it with a helpful error message.
    #
    # TODO(bcmills): Replace the github.com/pierrec/lz4 examples with something
    # equivalent on vcs-test.golang.org.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 02:54:20 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  6. Makefile.core.mk

    export VERSION
    
    # Base version of Istio image to use
    BASE_VERSION ?= master-2024-06-02T19-03-25
    ISTIO_BASE_REGISTRY ?= gcr.io/istio-release
    
    export GO111MODULE ?= on
    export GOPROXY ?= https://proxy.golang.org
    export GOSUMDB ?= sum.golang.org
    
    # If GOPATH is not set by the env, set it to a sane value
    GOPATH ?= $(shell cd ${ISTIO_GO}/../../..; pwd)
    export GOPATH
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/coderepo_test.go

    	// but this test may include fixes for additional modules that previously
    	// could not be fetched. Since this test isn't executing any of the resolved
    	// code, bypass the sum database.
    	cfg.GOSUMDB = "off"
    
    	dir, err := os.MkdirTemp("", "gitrepo-test-")
    	if err != nil {
    		return err
    	}
    	defer func() {
    		if rmErr := os.RemoveAll(dir); err == nil {
    			err = rmErr
    		}
    	}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 20:10:14 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/fetch.go

    value to verify the file hasn't changed since it was first downloaded. Known
    hashes are stored in a file in the module root directory named go.sum. Hashes
    may also be downloaded from the checksum database depending on the values of
    GOSUMDB, GOPRIVATE, and GONOSUMDB.
    
    For details, see https://golang.org/ref/mod#authenticating.
    `,
    }
    
    var HelpPrivate = &base.Command{
    	UsageLine: "private",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/help/helpdoc.go

    		of module path prefixes that should always be fetched directly
    		or that should not be compared against the checksum database.
    		See https://golang.org/ref/mod#private-modules.
    	GOROOT
    		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.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top