Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 434 for goproxy (0.35 sec)

  1. src/cmd/go/internal/modfetch/proxy.go

    	proxyOnce.Do(func() {
    		if cfg.GONOPROXY != "" && cfg.GOPROXY != "direct" {
    			proxyOnce.list = append(proxyOnce.list, proxySpec{url: "noproxy"})
    		}
    
    		goproxy := cfg.GOPROXY
    		for goproxy != "" {
    			var url string
    			fallBackOnError := false
    			if i := strings.IndexAny(goproxy, ",|"); i >= 0 {
    				url = goproxy[:i]
    				fallBackOnError = goproxy[i] == '|'
    				goproxy = goproxy[i+1:]
    			} else {
    				url = goproxy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 15:21:05 UTC 2023
    - 13K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/env_changed.txt

    [GOARCH:amd64] stdout '"GOARCH": "arm64"'
    [!GOARCH:amd64] stdout '"GOARCH": "amd64"'
    
    env GOPROXY=s
    go env -changed GOPROXY
    ! stdout 'GOPROXY'
    env GOPROXY=s2
    go env -changed GOPROXY
    stdout 'GOPROXY=''?s2''?'
    
    env GOROOT=./b
    go env -changed
    ! stdout 'GOTOOLCHAIN=''?local''?'
    
    --  a/go.env --
    GOPROXY=s
    
    --  b/go.env --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:49:03 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_list_issue61423.txt

    ! stdout '"Ref":'
    ! stdout '"TagSum":'
    ! stdout '"Reuse":'
    
    
    # With GOPROXY=direct, the -reuse flag has an effect, but
    # the Origin data from the proxy should not be sufficient
    # for the proxy response to be reused.
    
    env GOPROXY=direct
    
    go list -reuse=proxy-latest.json -m -json vcs-test.golang.org/git/issue61415.git@latest
    stdout '"Version": "v0.0.0-20231114180001-f213069baa68"'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. hack/update-internal-modules.sh

            | while read -r F; do \
                dirname "${F}"; \
            done
        )
    
    # Detect problematic GOPROXY settings that prevent lookup of dependencies
    if [[ "${GOPROXY:-}" == "off" ]]; then
      kube::log::error "Cannot run hack/update-internal-modules.sh with \$GOPROXY=off"
      exit 1
    fi
    
    kube::golang::setup_env
    
    for mod in "${MODULES[@]}"; do
      echo "=== tidying go.mod/go.sum in ${mod}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:38:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. hack/lint-dependencies.sh

    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # Detect problematic GOPROXY settings that prevent lookup of dependencies
    if [[ "${GOPROXY:-}" == "off" ]]; then
      kube::log::error "Cannot run with \$GOPROXY=off"
      exit 1
    fi
    
    kube::golang::setup_env
    kube::util::require-jq
    
    # Set the Go environment, otherwise we get "can't compute 'all' using the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:42 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/govcs.txt

    stderr '^go: github.com/google/go-cmp: unreachable pattern in GOVCS: "github.com:git" after "github.com:hg"$'
    
    # bad GOVCS patterns do not stop commands that do not need to check VCS
    go list
    env GOPROXY=$proxy
    go get rsc.io/quote # ok because used proxy
    env GOPROXY=direct
    
    # svn is disallowed by default
    env GOPRIVATE=
    env GOVCS=
    ! go get rsc.io/nonexist.svn/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)
  7. hack/pin-dependency.sh

    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # Detect problematic GOPROXY settings that prevent lookup of dependencies
    if [[ "${GOPROXY:-}" == "off" ]]; then
      kube::log::error "Cannot run with \$GOPROXY=off"
      exit 1
    fi
    
    kube::golang::setup_env
    kube::util::require-jq
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. hack/_update-generated-protobuf-dockerized.sh

    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    source "${KUBE_ROOT}/hack/lib/protoc.sh"
    
    kube::protoc::check_protoc
    kube::golang::setup_env
    
    GOPROXY=off go install k8s.io/code-generator/cmd/go-to-protobuf
    GOPROXY=off go install k8s.io/code-generator/cmd/go-to-protobuf/protoc-gen-gogo
    
    # requires the 'proto' tag to build (will remove when ready)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top