Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 53 for GOSUMDB (0.11 sec)

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

    [!net:golang.org] skip
    [!git] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    # Regression test for golang.org/issue/27171: after resolving an older
    # pseudo-version of a commit, future resolution of that commit by hash should
    # choose the highest appropriate pseudo-version instead of the cached one.
    
    go mod download -json golang.org/x/text@v0.0.0-20171215141712-a1b916ed6726
    stdout '"Version": "v0.0.0-20171215141712-a1b916ed6726",'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_pseudo_other_branch.txt

    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    # Testing that a pseudo-version is based on the semantically-latest
    # tag that appears in any commit that is a (transitive) parent of the commit
    # supplied to 'go get', regardless of branches
    
    [short] skip
    [!git] skip
    
    # For this test repository:
    #  tag v0.2.1 is most recent tag on master itself
    #  tag v0.2.2 is on branch2, which was then merged to master
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. 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)
  4. .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)
  5. 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)
  6. 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)
  7. src/cmd/go/internal/modload/help.go

    The privacy policies for these services are available at
    https://proxy.golang.org/privacy and https://sum.golang.org/privacy,
    respectively.
    
    The go command's download behavior may be configured using GOPROXY, GOSUMDB,
    GOPRIVATE, and other environment variables. See 'go help environment'
    and https://golang.org/ref/mod#private-module-privacy for more information.
    	`,
    }
    
    var HelpGoMod = &base.Command{
    	UsageLine: "go.mod",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 30 17:07:46 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top