Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 50 for GOSUMDB (0.15 sec)

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

    stderr 'invalid proxy URL.*proxydir'
    
    [!net:proxy.golang.org] stop
    
    # GOPROXY HTTPS paths may elide the "https://" prefix.
    # (See golang.org/issue/32191.)
    env GOPROXY=proxy.golang.org
    env GOSUMDB=
    go list -versions -m golang.org/x/text
    
    -- go.mod --
    module example.com
    go 1.13
    -- $WORK/proxydir/README.md --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 492 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_getx.txt

    [!net:golang.org] skip
    [!git] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    # 'go get -x' should log URLs with an HTTP or HTTPS scheme.
    # A bug had caused us to log schemeless URLs instead.
    go get -x golang.org/x/text@v0.1.0
    stderr '^# get https://golang.org/x/text\?go-get=1$'
    stderr '^# get https://golang.org/x/text\?go-get=1: 200 OK \([0-9.]+s\)$'
    ! stderr '^# get //.*'
    
    -- go.mod --
    module m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 422 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_download_insecure_redirect.txt

    # golang.org/issue/29591: 'go get' was following plain-HTTP redirects even without -insecure (now replaced by GOINSECURE).
    
    [short] skip
    [!git] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    ! go mod download vcs-test.golang.org/insecure/go/insecure@latest
    stderr 'redirected .* to insecure URL'
    
    # insecure host
    env GOINSECURE=vcs-test.golang.org
    go clean -modcache
    go mod download vcs-test.golang.org/insecure/go/insecure@latest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 934 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_proxy_errors.txt

    [short] skip
    
    env GO111MODULE=on
    env GOSUMDB=off
    env GOPROXY=direct
    
    # Server responses should be truncated to some reasonable number of lines.
    # (For now, exactly eight.)
    ! go list -m vcs-test.golang.org/auth/ormanylines@latest
    stderr '\tserver response:\n(.|\n)*\tline 8\n\t\[Truncated: too many lines.\]$'
    
    # Server responses should be truncated to some reasonable number of characters.
    ! go list -m vcs-test.golang.org/auth/oronelongline@latest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 698 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_fossil.txt

    # Regression test for 'go get' to ensure repositories
    # provided by fossil v2.12 and up are able to be fetched
    # and parsed correctly.
    # Verifies golang.org/issue/42323.
    
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    # 'go get' for the fossil repo will fail if fossil
    # is unable to determine your fossil user. Easiest
    # way to set it for use by 'go get' is specifying
    # a any non-empty $USER; the value doesn't otherwise matter.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 773 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_download_hash.txt

    env GO111MODULE=on
    
    # Testing mod download with non semantic versions; turn off proxy.
    [!net:rsc.io] skip
    [!git] skip
    env GOPROXY=direct
    env GOSUMDB=off
    
    go mod download rsc.io/quote@a91498bed0a73d4bb9c1fb2597925f7883bc40a7
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.3-0.20180709162918-a91498bed0a7.info
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.3-0.20180709162918-a91498bed0a7.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 879 bytes
    - Viewed (0)
  7. src/internal/cfg/cfg.go

    	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)
  8. src/cmd/go/testdata/script/mod_download_svn.txt

    # resulting in svn skipping ssh entirely. Alternatives like
    # SVN_SSH="ssh -o StrictHostKeyChecking=no" didn't avoid the prompt.
    env SVN_SSH="svn_do_not_use_ssh"
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    # Attempting to get a module zip using svn should succeed.
    go mod download vcs-test.golang.org/svn/hello.svn@000000000001
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top