Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 149 for modcache (0.34 sec)

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

    [!fuzz] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # Run chatty fuzz targets with an error.
    ! go test -v chatty_error_fuzz_test.go
    ! stdout '^ok'
    stdout 'FAIL'
    stdout 'error in target'
    
    # Run chatty fuzz targets with a fatal.
    ! go test -v chatty_fatal_fuzz_test.go
    ! stdout '^ok'
    stdout 'FAIL'
    stdout 'fatal in target'
    
    # Run chatty fuzz target with a panic
    ! go test -v chatty_panic_fuzz_test.go
    ! stdout ^ok
    stdout FAIL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. hack/verify-govulncheck.sh

    source "${KUBE_ROOT}/hack/lib/init.sh"
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    # make sure everything is committed
    kube::util::ensure_clean_working_dir
    
    # This sets up the environment, like GOCACHE, which keeps the worktree cleaner.
    kube::golang::setup_env
    
    go install golang.org/x/vuln/cmd/govulncheck@v1.0.1
    
    # KUBE_VERIFY_GIT_BRANCH is populated in verify CI jobs
    BRANCH="${KUBE_VERIFY_GIT_BRANCH:-master}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/envcmd/env.go

    		{Name: "GOFLAGS", Value: cfg.Getenv("GOFLAGS")},
    		{Name: "GOHOSTARCH", Value: runtime.GOARCH},
    		{Name: "GOHOSTOS", Value: runtime.GOOS},
    		{Name: "GOINSECURE", Value: cfg.GOINSECURE},
    		{Name: "GOMODCACHE", Value: cfg.GOMODCACHE, Changed: cfg.GOMODCACHEChanged},
    		{Name: "GONOPROXY", Value: cfg.GONOPROXY, Changed: cfg.GONOPROXYChanged},
    		{Name: "GONOSUMDB", Value: cfg.GONOSUMDB, Changed: cfg.GONOSUMDBChanged},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            private final ConcurrentMap<String, Object> parentCache;
            private final ModelTransformerContextBuilder transformerContextBuilder;
            private final ExecutorService executor;
            private final ModelCache modelCache;
            private final ModelResolver modelResolver;
    
            BuildSession(ProjectBuildingRequest request, boolean localProjects) {
                this.request = request;
                this.session =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_fuzz_mutator_repeat.txt

    # Verify that the fuzzing engine records the actual crashing input, even when
    # a worker process terminates without communicating the crashing input back
    # to the coordinator.
    
    [short] skip
    env GOCACHE=$WORK/cache
    
    # Start fuzzing. The worker crashes after 100 iterations.
    # The fuzz function writes the crashing input to "want" before exiting.
    # The fuzzing engine reconstructs the crashing input and saves it to testdata.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_download_concurrent_read.txt

    			return err
    		}
    	}
    	return nil
    }
    
    // download downloads a module into the given cache using 'go mod download'.
    func download(gopath string) error {
    	cmd := exec.Command("go", "mod", "download", "-modcacherw", "rsc.io/quote@v1.5.2")
    	cmd.Stderr = os.Stderr
    	cmd.Env = append(os.Environ(), "GOPATH="+gopath)
    	return cmd.Run()
    }
    
    // readCache repeatedly globs for go.mod files in the given cache, then opens
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_cache_inputs.txt

    # Test that cached test results are invalidated in response to
    # changes to the external inputs to the test.
    
    [short] skip
    [GODEBUG:gocacheverify=1] skip
    
    # We're testing cache behavior, so start with a clean GOCACHE.
    env GOCACHE=$WORK/cache
    
    # Build a helper binary to invoke os.Chtimes.
    go build -o mkold$GOEXE mkold.go
    
    # Make test input files appear to be a minute old.
    exec ./mkold$GOEXE 1m testcache/file.txt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 22:23:53 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/codehost/codehost.go

    // given repository type and name.
    func WorkDir(ctx context.Context, typ, name string) (dir, lockfile string, err error) {
    	if cfg.GOMODCACHE == "" {
    		return "", "", fmt.Errorf("neither GOPATH nor GOMODCACHE are set")
    	}
    
    	// We name the work directory for the SHA256 hash of the type and name.
    	// We intentionally avoid the actual name both because of possible
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/README

    Each script runs in a fresh temporary work directory tree, available to scripts as $WORK.
    Scripts also have access to other environment variables, including:
    
    	GOARCH=<target GOARCH>
    	GOCACHE=<actual GOCACHE being used outside the test>
    	GOEXE=<executable file suffix: .exe on Windows, empty on other systems>
    	GOOS=<target GOOS>
    	GOPATH=$WORK/gopath
    	GOPROXY=<local module proxy serving from cmd/go/testdata/mod>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_fuzz_mutator.txt

    # use separate log files. check_logs.go verifies that the coordinator only
    # tests seed values and the worker tests mutated values on the fuzz target.
    
    [short] skip
    env GOCACHE=$WORK/cache
    
    go test -fuzz=FuzzA -fuzztime=100x -parallel=1 -log=fuzz
    go run check_logs.go fuzz fuzz.worker
    
    # TODO(b/181800488): remove -parallel=1, here and below. For now, when a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top