Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 607 for goproxy (0.13 sec)

  1. hack/verify-description.sh

    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    kube::golang::setup_env
    
    GOPROXY=off go install ./cmd/genswaggertypedocs
    
    find_files() {
      find . -not \( \
          \( \
            -wholename '.git' \
            -o -wholename './_output' \
            -o -wholename './release' \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. build/common.sh

    unset CDPATH
    
    USER_ID=$(id -u)
    GROUP_ID=$(id -g)
    
    DOCKER_OPTS=${DOCKER_OPTS:-""}
    IFS=" " read -r -a DOCKER <<< "docker ${DOCKER_OPTS}"
    DOCKER_HOST=${DOCKER_HOST:-""}
    GOPROXY=${GOPROXY:-""}
    
    # This will canonicalize the path
    KUBE_ROOT=$(cd "$(dirname "${BASH_SOURCE[0]}")"/.. && pwd -P)
    
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # Constants
    readonly KUBE_BUILD_IMAGE_REPO=kube-build
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_list_std.txt

    env GO111MODULE=on
    env GOPROXY=off
    
    [!compiler:gc] skip
    [short] skip
    
    # Outside of GOROOT, our vendored packages should be reported as part of the standard library.
    go list -f '{{if .Standard}}{{.ImportPath}}{{end}}' std cmd
    stdout ^vendor/golang\.org/x/net/http2/hpack
    stdout ^cmd/vendor/golang\.org/x/arch/x86/x86asm
    ! stdout ^golang\.org/x/
    
    # The dependencies of those packages should also be vendored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 28 18:50:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_replace_gopkgin.txt

    skip 'skipping test that depends on an unreliable third-party server; see https://go.dev/issue/54503'
    	# 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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. src/crypto/ed25519/ed25519vectors_test.go

    	// Download the JSON test file from the GOPROXY with `go mod download`,
    	// pinning the version so test and module caching works as expected.
    	goTool := testenv.GoToolPath(t)
    	path := "filippo.io/mostly-harmless/ed25519vectors@v0.0.0-20210322192420-30a2d7243a94"
    	cmd := exec.Command(goTool, "mod", "download", "-modcacherw", "-json", path)
    	// TODO: enable the sumdb once the TryBots proxy supports it.
    	cmd.Env = append(os.Environ(), "GONOSUMDB=*")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 25 14:52:51 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_download.txt

    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.2.1.zip
    
    # download -x with version should print
    # the underlying commands such as contacting GOPROXY.
    go mod download -x rsc.io/quote@v1.0.0
    ! stdout .
    stderr 'get '$GOPROXY
    
    -- go.mod --
    module m
    
    -- update/go.mod.orig --
    module m
    
    go 1.16
    
    require (
    	rsc.io/quote v1.5.2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 04 20:42:35 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  7. hack/update-vendor.sh

    export GOFLAGS=-mod=mod
    # Ensure sort order doesn't depend on locale
    export LANG=C
    export LC_ALL=C
    # Detect problematic GOPROXY settings that prevent lookup of dependencies
    if [[ "${GOPROXY:-}" == "off" ]]; then
      kube::log::error "Cannot run hack/update-vendor.sh with \$GOPROXY=off"
      exit 1
    fi
    
    kube::util::require-jq
    
    TMP_DIR="${TMP_DIR:-$(mktemp -d /tmp/update-vendor.XXXX)}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. hack/lib/protoc.sh

    # Generates $1/api.pb.go from the protobuf file $1/api.proto
    # and formats it correctly
    # $1: Full path to the directory where the api.proto file is
    function kube::protoc::generate_proto() {
      kube::golang::setup_env
      GOPROXY=off go install k8s.io/code-generator/cmd/go-to-protobuf/protoc-gen-gogo
    
      kube::protoc::check_protoc
    
      local package=${1}
      kube::protoc::protoc "${package}"
      kube::protoc::format "${package}"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 20:53:13 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. misc/go_android_exec/main.go

    		}
    	}()
    	cmd := `export TMPDIR="` + deviceGotmp + `"` +
    		`; export GOROOT="` + deviceGoroot + `"` +
    		`; export GOPATH="` + deviceGopath + `"` +
    		`; export CGO_ENABLED=0` +
    		`; export GOPROXY=` + os.Getenv("GOPROXY") +
    		`; export GOCACHE="` + deviceRoot + `/gocache"` +
    		`; export PATH="` + deviceGoroot + `/bin":$PATH` +
    		`; export HOME="` + deviceRoot + `/home"` +
    		`; cd "` + deviceCwd + `"` +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/zip_sum_test/zip_sum_test.go

    			t.Fatal(err)
    		}
    		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