Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for GONOSUMDB (0.25 sec)

  1. src/cmd/go/testdata/script/get_insecure.txt

    # Modules: Try again with GOINSECURE (should succeed).
    env GOINSECURE=insecure.go-get-issue-15410.appspot.com
    env GONOSUMDB=insecure.go-get-issue-15410.appspot.com
    go get -d insecure.go-get-issue-15410.appspot.com/pkg/p
    
    # Modules: Try updating without GOINSECURE (should fail).
    env GOINSECURE=''
    env GONOSUMDB=''
    ! go get -d -u -f insecure.go-get-issue-15410.appspot.com/pkg/p
    
    go list -m ...
    stdout 'insecure.go-get-issue'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 937 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_gonoproxy.txt

    env sumdb=$GOSUMDB
    env proxy=$GOPROXY
    env GOPRIVATE GOPROXY GONOPROXY GOSUMDB GONOSUMDB
    env dbname=localhost.localdev/sumdb
    
    # disagree with sumdb fails
    cp go.mod.orig go.mod
    env GOSUMDB=$sumdb' '$proxy/sumdb-wrong
    ! go get rsc.io/quote
    stderr 'SECURITY ERROR'
    
    # GONOSUMDB bypasses sumdb, for rsc.io/quote, rsc.io/sampler, golang.org/x/text
    env GONOSUMDB='*/quote,*/*mple*,golang.org/x'
    go get rsc.io/quote
    rm go.sum
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/get_404_meta.txt

    # golang.org/issue/13037: 'go get' was not parsing <meta> tags in 404 served over HTTPS.
    
    [!net:bazil.org] skip
    [!git] skip
    
    env GONOSUMDB=bazil.org,github.com,golang.org
    env GO111MODULE=on
    env GOPROXY=direct
    go get bazil.org/fuse/fs/fstestutil
    
    
    -- go.mod --
    module m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 278 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/govcs.txt

    stderr '^go: rsc.io/nonexist.bzr/hello: GOVCS disallows using bzr for public rsc.io/nonexist.bzr; see ''go help vcs''$'
    
    # git is OK by default
    env GOVCS=
    env GONOSUMDB='*'
    [net:rsc.io] [git] [!short] go get rsc.io/sampler
    
    # hg is OK by default
    env GOVCS=
    env GONOSUMDB='*'
    [exec:hg] [!short] go get vcs-test.golang.org/go/custom-hg-hello
    
    # git can be disallowed
    env GOVCS=public:hg
    ! go get rsc.io/nonexist.git/hello
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. src/internal/cfg/cfg.go

    	GOARM
    	GOARM64
    	GOBIN
    	GOCACHE
    	GOCACHEPROG
    	GOENV
    	GOEXE
    	GOEXPERIMENT
    	GOFLAGS
    	GOGCCFLAGS
    	GOHOSTARCH
    	GOHOSTOS
    	GOINSECURE
    	GOMIPS
    	GOMIPS64
    	GOMODCACHE
    	GONOPROXY
    	GONOSUMDB
    	GOOS
    	GOPATH
    	GOPPC64
    	GOPRIVATE
    	GOPROXY
    	GORISCV64
    	GOROOT
    	GOSUMDB
    	GOTMPDIR
    	GOTOOLCHAIN
    	GOTOOLDIR
    	GOVCS
    	GOWASM
    	GOWORK
    	GO_EXTLINK_ENABLED
    	PKG_CONFIG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 01:33:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. .github/ISSUE_TEMPLATE/00-bug.yml

            GOEXE=""
            GOEXPERIMENT=""
            GOFLAGS=""
            GOHOSTARCH="arm64"
            GOHOSTOS="darwin"
            GOINSECURE=""
            GOMODCACHE="/Users/gopher/go/pkg/mod"
            GONOPROXY=""
            GONOSUMDB=""
            GOOS="darwin"
            GOPATH="/Users/gopher/go"
            GOPRIVATE=""
            GOPROXY="https://proxy.golang.org,direct"
            GOROOT="/usr/local/go"
            GOSUMDB="sum.golang.org"
            GOTMPDIR=""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_list_issue61423.txt

    [short] skip 'generates a vcstest git repo'
    [!git] skip
    
    mkdir $WORK/mod1
    mkdir $WORK/mod2
    env GONOSUMDB=vcs-test.golang.org
    
    env GOPROXY=direct
    env GOMODCACHE=$WORK/mod1
    
    
    # If we query a module version from a git repo, we expect its
    # Origin data to be reusable.
    
    go list -m -json vcs-test.golang.org/git/issue61415.git@latest
    cp stdout git-latest.json
    stdout '"Version": "v0.0.0-20231114180001-f213069baa68"'
    stdout '"Origin":'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/sumdb.go

    func useSumDB(mod module.Version) bool {
    	if mod.Path == "golang.org/toolchain" {
    		must := true
    		// Downloaded toolchains cannot be listed in go.sum,
    		// so we require checksum database lookups even if
    		// GOSUMDB=off or GONOSUMDB matches the pattern.
    		// If GOSUMDB=off, then the eventual lookup will fail
    		// with a good error message.
    
    		// Exception #1: using GOPROXY=file:// to test a distpack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 15:02:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top