Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 365 for gopark (0.35 sec)

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

    go list -e -f '{{with .Error}}{{.}}{{end}}' -deps driver.go
    stdout '^driver.go:3:8: "./mypkg" is relative, but relative import paths are not supported in module mode$'
    ! stderr .
    
    
    # In GOPATH mode, they're still allowed (but only outside of GOPATH/src).
    env GO111MODULE=off
    
    [!short] go run driver.go
    
    go list -deps driver.go
    
    
    -- $WORK/go.mod --
    module example
    
    go 1.17
    -- $WORK/driver.go --
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 16 19:10:58 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/get_insecure_no_longer_supported.txt

    # GOPATH: Set up
    env GO111MODULE=off
    
    # GOPATH: Fetch with insecure, should error
    ! go get -insecure test
    stderr 'go: -insecure flag is no longer supported; use GOINSECURE instead'
    
    # Modules: Set up
    env GO111MODULE=on
    
    # Modules: Fetch with insecure, should error
    ! go get -insecure test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 364 bytes
    - Viewed (0)
  3. src/cmd/go/internal/cfg/cfg.go

    	// Override defaults computed in go/build with defaults
    	// from go environment configuration file, if known.
    	ctxt.GOPATH, GOPATHChanged = EnvOrAndChanged("GOPATH", gopath(ctxt))
    	ctxt.GOOS = Goos
    	ctxt.GOARCH = Goarch
    
    	// Clear the GOEXPERIMENT-based tool tags, which we will recompute later.
    	var save []string
    	for _, tag := range ctxt.ToolTags {
    		if !strings.HasPrefix(tag, "goexperiment.") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/import_cycle.txt

    env GO111MODULE=off
    
    ! go build selfimport
    stderr -count=1 'import cycle not allowed'
    
    # 'go list' shouldn't hang forever.
    go list -e -json selfimport
    
    -- $GOPATH/src/selfimport/selfimport.go --
    package selfimport
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 28 19:09:53 UTC 2020
    - 235 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/fileline.txt

    env GO111MODULE=off
    
    # look for short, relative file:line in error message
    ! go run ../../gopath/x/y/z/err.go
    stderr ^..[\\/]x[\\/]y[\\/]z[\\/]err.go:
    
    -- ../x/y/z/err.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 19 19:57:03 UTC 2019
    - 201 bytes
    - Viewed (0)
  6. src/cmd/go/internal/modcmd/vendor.go

    		// identity function for packages outside of the standard library.
    		//
    		// Part of the purpose of the vendor directory is to allow the packages in
    		// the module to continue to build in GOPATH mode, and GOPATH-mode users
    		// won't know about replacement aliasing. How important is it to maintain
    		// compatibility?
    		fmt.Fprintf(os.Stderr, "warning: %s imported as both %s and %s; making two copies.\n", realPath, realPath, pkg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_retract.txt

    [!short] ! stderr .
    [!short] cmp go.mod go.mod.orig
    
    # Neither 'go list' nor 'go build' should download go.mod from the version
    # that would list retractions.
    exists $GOPATH/pkg/mod/cache/download/example.com/retract/@v/v1.0.0-bad.mod
    ! exists $GOPATH/pkg/mod/cache/download/example.com/retract/@v/v1.1.0.mod
    
    # Importing a package from a module with a retracted latest version will
    # select the latest non-retracted version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/list_testdata.txt

    # Issue 65406. The testdata directory in GOROOT/src
    # shouldn't be treated as a standard package.
    
    go list -f '{{.ImportPath}} {{.Dir}}' testdata
    ! stderr 'found package testdata in multiple modules'
    stdout 'testdata '$WORK${/}'gopath'${/}'src'
    
    -- go.mod --
    module testdata
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 18:16:28 UTC 2024
    - 295 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_replace.txt

    stdout '^rsc.io/quote/v3 v3.0.0 '$GOPATH'[/\\]pkg[/\\]mod[/\\]not-rsc.io[/\\]quote@v0.1.0-nomod '$GOPATH'[/\\]pkg[/\\]mod[/\\]cache[/\\]download[/\\]not-rsc.io[/\\]quote[/\\]@v[/\\]v0.1.0-nomod.mod => not-rsc.io/quote v0.1.0-nomod '$GOPATH'[/\\]pkg[/\\]mod[/\\]not-rsc.io[/\\]quote@v0.1.0-nomod '$GOPATH'[/\\]pkg[/\\]mod[/\\]cache[/\\]download[/\\]not-rsc.io[/\\]quote[/\\]@v[/\\]v0.1.0-nomod.mod$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  10. hack/jenkins/update-dockerized.sh

    export ARTIFACTS=${ARTIFACTS:-"${WORKSPACE}/artifacts"}
    # Produce a JUnit-style XML test report
    export KUBE_JUNIT_REPORT_DIR="${ARTIFACTS}"
    
    export LOG_LEVEL=4
    
    cd "${GOPATH}/src/k8s.io/kubernetes"
    source "${PWD}/hack/lib/init.sh"
    kube::etcd::install
    export PATH=${GOPATH}/bin:${PWD}/third_party/etcd:/usr/local/go/bin:${PATH}
    
    make update
    
    if [[ -d "${ARTIFACTS:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 08 00:02:03 UTC 2022
    - 1.3K bytes
    - Viewed (0)
Back to top