Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 256 for gopack (0.17 sec)

  1. src/cmd/go/testdata/addmod.go

    		out, err := cmd.Output()
    		if err != nil {
    			fatalf("%s %s: %v\n%s", command, strings.Join(args, " "), err, stderr.Bytes())
    		}
    		return string(out)
    	}
    
    	gopath := strings.TrimSpace(run("go", "env", "GOPATH"))
    	if gopath == "" {
    		fatalf("cannot find GOPATH")
    	}
    
    	exitCode := 0
    	for _, arg := range flag.Args() {
    		if err := os.WriteFile(filepath.Join(tmpdir, "go.mod"), []byte("module m\n"), 0666); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 30 19:41:54 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testplugin/plugin_test.go

    	// Copy testdata into GOPATH/src/testplugin, along with a go.mod file
    	// declaring the same path.
    
    	GOPATH, err := os.MkdirTemp("", "plugin_test")
    	if err != nil {
    		log.Panic(err)
    	}
    	defer os.RemoveAll(GOPATH)
    	tmpDir = GOPATH
    	fmt.Printf("TMPDIR=%s\n", tmpDir)
    
    	modRoot := filepath.Join(GOPATH, "src", "testplugin")
    	altRoot := filepath.Join(GOPATH, "alt", "src", "testplugin")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/work.txt

    cmpenv go.work go.work.want
    go env GOWORK
    stdout '^'$WORK'(\\|/)gopath(\\|/)src(\\|/)go.work$'
    
    ! go run  example.com/b
    stderr 'a(\\|/)a.go:4:8: no required module provides package rsc.io/quote; to add it:\n\tcd '$WORK(\\|/)gopath(\\|/)src(\\|/)a'\n\tgo get rsc.io/quote'
    cd a
    go get rsc.io/quote
    cat go.mod
    go env GOMOD # go env GOMOD reports the module in a single module context
    stdout $GOPATH(\\|/)src(\\|/)a(\\|/)go.mod
    cd ..
    go run example.com/b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. cmd/build-constants.go

    package cmd
    
    import "runtime"
    
    // DO NOT EDIT THIS FILE DIRECTLY. These are build-time constants
    // set through ‘buildscripts/gen-ldflags.go’.
    var (
    	// GOPATH - GOPATH value at the time of build.
    	GOPATH = ""
    
    	// GOROOT - GOROOT value at the time of build.
    	GOROOT = ""
    
    	// Version - version time.RFC3339.
    	Version = "DEVELOPMENT.GOGET"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 17:57:52 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. 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)
  6. pkg/kubelet/apis/podresources/server_v1alpha1_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package podresources
    
    import (
    	"context"
    	"testing"
    
    	"go.uber.org/mock/gomock"
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	podresourcesv1 "k8s.io/kubelet/pkg/apis/podresources/v1"
    	"k8s.io/kubelet/pkg/apis/podresources/v1alpha1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. 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)
  8. tensorflow/c/eager/BUILD

        srcs = [
            "c_api_experimental_reader.h",
        ],
        visibility = ["//tensorflow:__subpackages__"],
    )
    
    cc_library(
        name = "dlpack",
        srcs = ["dlpack.cc"],
        hdrs = ["dlpack.h"],
        copts = tf_copts() + [
            "-fexceptions",
            "-fno-strict-aliasing",
        ],
        features = ["-use_header_modules"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 23:52:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/SnappyDainPacker.java

                }
            });
        }
    
        @Override
        public void unpack(DataSource input, DataTargetFactory targetFactory) throws IOException {
            delegate.unpack(new DelegatingDataSource(input) {
                @Override
                public InputStream openInput() throws IOException {
                    return new SnappyFramedInputStream(super.openInput(), true);
                }
            }, targetFactory);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. 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)
Back to top