Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 607 for goproxy (0.14 sec)

  1. src/cmd/distpack/pack.go

    //
    // To test that the module downloads are usable with the go command:
    //
    //	./make.bash -distpack
    //	mkdir -p /tmp/goproxy/golang.org/toolchain/
    //	ln -sf $(pwd)/../pkg/distpack /tmp/goproxy/golang.org/toolchain/@v
    //	GOPROXY=file:///tmp/goproxy GOTOOLCHAIN=$(sed 1q ../VERSION) gotip version
    //
    // gotip can be replaced with an older released Go version once there is one.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. hack/verify-import-boss.sh

    # seem to be a simpler way to express "this whole workspace".
    packages=()
    kube::util::read-array packages < <(
        go work edit -json | jq -r '.Use[].DiskPath + "/..."'
    )
    
    GOPROXY=off \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. hack/verify-fieldname-docs.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/fieldnamedocscheck
    
    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
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_vendor_build.txt

    # golang.org/issue/26704
    go list -mod=vendor
    cmp go.mod go.mod.good
    
    # With a clean (and empty) module cache, 'go list -mod=vendor' should not download modules.
    go clean -modcache
    env GOPROXY=off
    ! go list ...
    go list -mod=vendor ...
    
    # However, it should still list packages in the main module.
    go list -mod=vendor m/...
    stdout m
    
    -- go.mod --
    module m
    go 1.12
    -- x.go --
    package x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 931 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_download_private_vcs.txt

    env GO111MODULE=on
    
    # Testing stderr for git ls-remote; turn off proxy.
    [!net:github.com] skip
    [!git] skip
    env GOPROXY=direct
    
    # Redirect git to a test-specific .gitconfig.
    # GIT_CONFIG_GLOBAL suffices for git 2.32.0 and newer.
    # For older git versions we also set $HOME.
    env GIT_CONFIG_GLOBAL=$WORK${/}home${/}gopher${/}.gitconfig
    env HOME=$WORK${/}home${/}gopher
    exec git config --global --show-origin user.name
    stdout 'Go Gopher'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. hack/verify-conformance-requirements.sh

    cd "${KUBE_ROOT}"
    
    errors=()
    # Check conformance tests follow the requirements as https://git.k8s.io/community/contributors/devel/sig-architecture/conformance-tests.md#conformance-test-requirements
    if ! failedLint=$(GOPROXY=off go run hack/conformance/check_conformance_test_requirements.go "${KUBE_ROOT}"/test/e2e/)
    then
      errors+=( "${failedLint}" )
    fi
    
    # Check to be sure all the packages that should pass lint are.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/00-bug.yml

            GOFLAGS=""
            GOHOSTARCH="arm64"
            GOHOSTOS="darwin"
            GOINSECURE=""
            GOMODCACHE="/Users/gopher/go/pkg/mod"
            GONOPROXY=""
            GONOSUMDB=""
            GOOS="darwin"
            GOPATH="/Users/gopher/go"
            GOPRIVATE=""
            GOPROXY="https://proxy.golang.org,direct"
            GOROOT="/usr/local/go"
            GOSUMDB="sum.golang.org"
            GOTMPDIR=""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/README

    	go test -proxy=localhost:1234 &
    	export GOPROXY=http://localhost:1234/mod
    
    and then run go commands as usual.
    
    Modules saved to this directory should be small: a few kilobytes at most.
    It is acceptable to edit the archives created by addmod.go to remove
    or shorten files. It is also acceptable to write module archives by hand: 
    they need not be backed by some public git repo.
    
    Each module archive is named path_vers.txt, where slashes in path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 1.4K bytes
    - Viewed (0)
Back to top