Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 94 for gopark (0.35 sec)

  1. src/go/build/build_test.go

    	}
    
    	t.Setenv("GO111MODULE", "on")
    	t.Setenv("GOPATH", gopath)
    	ctxt := Default
    	ctxt.GOPATH = gopath
    	ctxt.Dir = filepath.Join(gopath, "src/example.com/p")
    
    	want := "go.mod file not found in current directory or any parent directory"
    	if _, err := ctxt.Import("example.com/p", gopath, FindOnly); err == nil {
    		t.Fatal("importing package when no go.mod is present succeeded unexpectedly")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  2. Makefile.core.mk

    export GO111MODULE ?= on
    export GOPROXY ?= https://proxy.golang.org
    export GOSUMDB ?= sum.golang.org
    
    # If GOPATH is not set by the env, set it to a sane value
    GOPATH ?= $(shell cd ${ISTIO_GO}/../../..; pwd)
    export GOPATH
    
    # If GOPATH is made up of several paths, use the first one for our targets in this Makefile
    GO_TOP := $(shell echo ${GOPATH} | cut -d ':' -f1)
    export GO_TOP
    
    GO ?= go
    
    GOARCH_LOCAL := $(TARGET_ARCH)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. hack/lib/golang.sh

      #   * We could leave GOPATH alone and let `go install` write binaries
      #     wherever the user's GOPATH says (or doesn't say).
      #
      # Instead we set it to a phony local path and process the results ourselves.
      # In particular, GOPATH[0]/bin will be used for `go install`, with
      # cross-compiles adding an extra directory under that.
      export GOPATH="${KUBE_GOPATH}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/cmd/cgo/internal/testshared/shared_test.go

    	// of use-cases where -buildmode=shared still works today.
    	// For now, run the tests in GOPATH mode only.
    	os.Setenv("GO111MODULE", "off")
    
    	// Some tests need to edit the source in GOPATH, so copy this directory to a
    	// temporary directory and chdir to that.
    	gopath := filepath.Join(workDir, "gopath")
    	modRoot, err := cloneTestdataModule(gopath)
    	if err != nil {
    		return 0, err
    	}
    	if testing.Verbose() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/workcmd/edit.go

    		base.Fatalf("go: 'go help work edit' accepts at most one argument")
    	}
    	var gowork string
    	if len(args) == 1 {
    		gowork = args[0]
    	} else {
    		modload.InitWorkfile()
    		gowork = modload.WorkFilePath()
    	}
    	if gowork == "" {
    		base.Fatalf("go: no go.work file found\n\t(run 'go work init' first or specify path using GOWORK environment variable)")
    	}
    
    	if *editGo != "" && *editGo != "none" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. src/cmd/dist/buildtool.go

    	// GOROOT points at Go bootstrap GOROOT,
    	// GOPATH points at our bootstrap workspace,
    	// GOBIN is empty, so that binaries are installed to GOPATH/bin,
    	// and GOOS, GOHOSTOS, GOARCH, and GOHOSTOS are empty,
    	// so that Go bootstrap toolchain builds whatever kind of binary it knows how to build.
    	// Restore GOROOT, GOPATH, and GOBIN when done.
    	// Don't bother with GOOS, GOHOSTOS, GOARCH, and GOHOSTARCH,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. internal/logger/logger.go

    // displayed when an error happens.
    func Init(goPath string, goRoot string) {
    	var goPathList []string
    	var goRootList []string
    	var defaultgoPathList []string
    	var defaultgoRootList []string
    	pathSeparator := ":"
    	// Add all possible GOPATH paths into trimStrings
    	// Split GOPATH depending on the OS type
    	if runtime.GOOS == "windows" {
    		pathSeparator = ";"
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_outside.txt

    stderr 'no modules specified'
    
    # 'go mod download' should download exactly the requested module without dependencies.
    rm -r $GOPATH/pkg/mod/cache/download/example.com
    go mod download example.com/printversion@v1.0.0
    exists $GOPATH/pkg/mod/cache/download/example.com/printversion/@v/v1.0.0.zip
    ! exists $GOPATH/pkg/mod/cache/download/example.com/version/@v/v1.0.0.zip
    
    # 'go mod download all' should fail. "all" is not meaningful outside of a module.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 15:34:40 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top