Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 50 for GOSUMDB (0.15 sec)

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

    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    # Testing that a pseudo-version is based on the semantically-latest
    # prefixed tag in any commit that is a parent of the commit supplied
    # to 'go get', when using a repo with go.mod in a sub directory.
    
    [short] skip
    [!git] skip
    
    # For this test repository go.mod resides in sub/ (only):
    #  master is not tagged
    #  tag v0.2.0 is most recent tag before master
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/00-bug.yml

            GONOPROXY=""
            GONOSUMDB=""
            GOOS="darwin"
            GOPATH="/Users/gopher/go"
            GOPRIVATE=""
            GOPROXY="https://proxy.golang.org,direct"
            GOROOT="/usr/local/go"
            GOSUMDB="sum.golang.org"
            GOTMPDIR=""
            GOTOOLDIR="/usr/local/go/pkg/tool/darwin_arm64"
            GOVCS=""
            GOVERSION="go1.20.7"
            GCCGO="gccgo"
            AR="ar"
            CC="clang"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_query_empty.txt

    env GO111MODULE=on
    env GOSUMDB=off
    
    go mod download example.com/join@v1.1.0
    
    # If the proxy serves a bogus result for the @latest version,
    # reading that version should cause 'go get' to fail.
    env GOPROXY=file:///$WORK/badproxy
    cp go.mod.orig go.mod
    ! go get example.com/join/subpkg
    stderr 'go: example.com/join/subpkg@v0.0.0-20190624000000-123456abcdef: .*'
    
    # If @v/list is empty, the 'go' command should still try to resolve
    # other module paths.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_missing_ziphash.txt

    # the sum. Verifies #44749.
    
    # With a tidy go.sum, go build succeeds. This also populates the module cache.
    cp go.sum.tidy go.sum
    go build -n use
    env GOPROXY=off
    env GOSUMDB=off
    
    # Control case: if we delete the hash for rsc.io/quote v1.5.2,
    # 'go build' reports an error. 'go get' adds the sum.
    cp go.sum.bug go.sum
    ! go build -n use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_list_update_nolatest.txt

    # but has no /@latest (410) because the go.mod at the tip of the default
    # branch has a different major version suffix.
    env testproxy=$GOPROXY
    env GOPROXY=file:///$WORK/proxy
    env GOSUMDB=off
    
    # If the proxy does not return a list of versions (404/410)
    # or a latest version (404/410), we should see no error.
    go list -m example.com/noversion
    stdout '^example.com/noversion v0.0.0$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_pseudo.txt

    env GO111MODULE=on
    
    # Testing git->module converter's generation of +incompatible tags; turn off proxy.
    [!net:github.com] skip
    [!git] skip
    env GOPROXY=direct
    env GOSUMDB=off
    
    # We can resolve the @master branch without unshallowing the local repository
    # (even with older gits), so try that before we do anything else.
    # (This replicates https://golang.org/issue/26713 with git 2.7.4.)
    go get github.com/rsc/legacytest@master
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_prefer_compatible.txt

    # @latest, @upgrade, and @patch should prefer compatible versions over
    # +incompatible ones, even if offered by a proxy.
    
    [!net:github.com] skip
    [!net:proxy.golang.org] skip
    
    env GO111MODULE=on
    env GOPROXY=
    env GOSUMDB=
    
    # github.com/russross/blackfriday v2.0.0+incompatible exists,
    # and should be resolved if we ask for it explicitly.
    
    go list -m github.com/russross/blackfriday@v2.0.0+incompatible
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 17 18:25:37 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_retract_pseudo_base.txt

    # When converting a commit to a pseudo-version, don't use a retracted version
    # as the base.
    # Verifies golang.org/issue/41700.
    
    [short] skip
    [!git] skip
    env GOPROXY=direct
    env GOSUMDB=off
    go mod init m
    
    # Control: check that v1.0.0 is the only version and is retracted.
    go list -m -versions vcs-test.golang.org/git/retract-pseudo.git
    stdout '^vcs-test.golang.org/git/retract-pseudo.git$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_replace_gopkgin.txt

    	# TODO(#54043): Make this test hermetic and re-enable it.
    
    [!net:gopkg.in] skip
    [!git] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    env GOFLAGS=-mod=mod
    
    # Replacing gopkg.in/[…].vN with a repository with a root go.mod file
    # specifying […].vN and a compatible version should succeed, even if
    # the replacement path is not a gopkg.in path.
    cd 4-to-4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/zip_sum_test/zip_sum_test.go

    		}
    		if *debugZipSum {
    			fmt.Fprintf(os.Stderr, "TestZipSums: modCacheDir: %s\n", tmpDir)
    		} else {
    			defer os.RemoveAll(tmpDir)
    		}
    		cfg.BuildContext.GOPATH = tmpDir
    	}
    
    	cfg.GOPROXY = "direct"
    	cfg.GOSUMDB = "off"
    	modload.Init()
    
    	// Shard tests by downloading only every nth module when shard flags are set.
    	// This makes it easier to test small groups of modules quickly. We avoid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 19:33:59 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top