Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 607 for goproxy (0.11 sec)

  1. src/cmd/go/proxy_test.go

    )
    
    var (
    	proxyAddr = flag.String("proxy", "", "run proxy on this network address instead of running any tests")
    	proxyURL  string
    )
    
    var proxyOnce sync.Once
    
    // StartProxy starts the Go module proxy running on *proxyAddr (like "localhost:1234")
    // and sets proxyURL to the GOPROXY setting to use to access the proxy.
    // Subsequent calls are no-ops.
    //
    // The proxy serves from testdata/mod. See testdata/mod/README.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 03 09:56:24 UTC 2023
    - 12K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_fallback.txt

    env GO111MODULE=on
    
    [!net:golang.org] skip
    [!net:proxy.golang.org] skip
    
    env GOPROXY=https://proxy.golang.org,direct
    env GOSUMDB=off
    
    go get -x -v golang.org/x/tools/cmd/goimports
    stderr '# get https://proxy.golang.org/golang.org/x/tools/@v/list'
    ! stderr '# get https://golang.org'
    
    -- go.mod --
    module m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 315 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_vcs_missing.txt

    [exec:bzr] skip 'tests NOT having bzr'
    [!net:launchpad.net] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    
    cd empty
    ! go get launchpad.net/gocheck
    stderr '"bzr": executable file not found'
    cd ..
    
    # 1.11 used to give the cryptic error "cannot find module for path" here, but
    # only for a main package.
    cd main
    ! go build -mod=mod
    stderr '"bzr": executable file not found'
    cd ..
    
    -- empty/go.mod --
    module m
    -- main/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 513 bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/sumdb.go

    		// with a good error message.
    
    		// Exception #1: using GOPROXY=file:// to test a distpack.
    		if strings.HasPrefix(cfg.GOPROXY, "file://") && !strings.ContainsAny(cfg.GOPROXY, ",|") {
    			must = false
    		}
    		// Exception #2: the Go proxy+checksum database cannot check itself
    		// while doing the initial download.
    		if strings.Contains(os.Getenv("GIT_HTTP_USER_AGENT"), "proxy.golang.org") {
    			must = false
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 15:02:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  5. src/internal/cfg/cfg.go

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

    [short] skip
    [!git] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    # golang.org/issue/34383: if a module path ends in a major-version suffix,
    # ensure that 'direct' mode can resolve the package to a module.
    
    go get vcs-test.golang.org/git/v3pkg.git/v3@v3.0.0
    
    go list -m vcs-test.golang.org/git/v3pkg.git/v3
    stdout '^vcs-test.golang.org/git/v3pkg.git/v3 v3.0.0$'
    
    go get vcs-test.golang.org/git/empty-v2-without-v1.git/v2@v2.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 616 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_git_export_subst.txt

    env GO111MODULE=on
    env GOPROXY=direct
    
    # Testing that git export-subst is disabled
    [!net:github.com] skip
    [!git] skip
    go build
    
    -- x.go --
    package x
    
    import _ "github.com/jasonkeene/export-subst"
    
    -- go.mod --
    module x
    
    require github.com/jasonkeene/export-subst v0.0.0-20180927204031-5845945ec626
    
    -- go.sum --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 555 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_missing_repo.txt

    # subgroups could not be fetched because the server returned bogus go-import
    # tags for prefixes of the module path.
    
    [short] skip
    [!git] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    ! go mod download vcs-test.golang.org/go/missingrepo/missingrepo-git@latest
    stderr 'vcs-test.golang.org/go/missingrepo/missingrepo-git: git ls-remote .*: exit status .*'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 534 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_hash.txt

    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    [!net:golang.org] skip
    [!git] skip
    
    # fetch commit hash reachable from refs/heads/* and refs/tags/* is OK
    go list -m golang.org/x/time@8be79e1e0910c292df4e79c241bb7e8f7e725959 # on master branch
    
    # fetch other commit hash, even with a non-standard ref, is not OK
    ! go list -m golang.org/x/time@334d83c35137ac2b376c1dc3e4c7733791855a3a # refs/changes/24/41624/3
    stderr 'unknown revision'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 626 bytes
    - Viewed (0)
Back to top