Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 56 for uwcache (0.17 sec)

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

    [!fuzz] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # Test that running a fuzz target that returns without failing or calling
    # f.Fuzz fails and causes a non-zero exit status.
    ! go test noop_fuzz_test.go
    ! stdout ^ok
    stdout FAIL
    
    # Test that fuzzing a fuzz target that returns without failing or calling
    # f.Fuzz fails and causes a non-zero exit status.
    ! go test -fuzz=Fuzz -fuzztime=1x noop_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
    - 10.2K bytes
    - Viewed (0)
  2. src/cmd/go/script_test.go

    	env := []string{
    		pathEnvName() + "=" + testBin + string(filepath.ListSeparator) + os.Getenv(pathEnvName()),
    		homeEnvName() + "=/no-home",
    		"CCACHE_DISABLE=1", // ccache breaks with non-existent HOME
    		"GOARCH=" + runtime.GOARCH,
    		"TESTGO_GOHOSTARCH=" + goHostArch,
    		"GOCACHE=" + testGOCACHE,
    		"GOCOVERDIR=" + os.Getenv("GOCOVERDIR"),
    		"GODEBUG=" + os.Getenv("GODEBUG"),
    		"GOEXE=" + cfg.ExeSuffix,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultVersionResolver.java

            VersionResult result = new VersionResult(request);
    
            Key cacheKey = null;
            RepositoryCache cache = session.getCache();
            if (cache != null && !ConfigUtils.getBoolean(session, false, "aether.versionResolver.noCache")) {
                cacheKey = new Key(session, request);
    
                Object obj = cache.get(session, cacheKey);
                if (obj instanceof Record) {
                    Record record = (Record) obj;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/cache/prog.go

    	can map[ProgCmd]bool
    
    	// fuzzDirCache is another Cache implementation to use for the FuzzDir
    	// method. In practice this is the default GOCACHE disk-based
    	// implementation.
    	//
    	// TODO(bradfitz): maybe this isn't ideal. But we'd need to extend the Cache
    	// interface and the fuzzing callers to be less disk-y to do more here.
    	fuzzDirCache Cache
    
    	closing      atomic.Bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 19:23:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/help/helpdoc.go

    var HelpCache = &base.Command{
    	UsageLine: "cache",
    	Short:     "build and test caching",
    	Long: `
    The go command caches build outputs for reuse in future builds.
    The default location for cache data is a subdirectory named go-build
    in the standard user cache directory for the current operating system.
    Setting the GOCACHE environment variable overrides this default,
    and running 'go env GOCACHE' prints the current cache directory.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. hack/lib/golang.sh

      # If these are not set, set them now.  This ensures that any subsequent
      # scripts we run (which may call this function again) use the same values.
      export GOCACHE="${GOCACHE:-"${KUBE_GOPATH}/cache/build"}"
      export GOMODCACHE="${GOMODCACHE:-"${KUBE_GOPATH}/cache/mod"}"
    
      # Make sure our own Go binaries are in PATH.
      export PATH="${KUBE_GOPATH}/bin:${PATH}"
    
      # Unset GOBIN in case it already exists in the current session.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/obj7.go

    				q.To.Offset = 0 // Panic.argp
    
    				// B end
    				q = obj.Appendp(q, c.newprog)
    				q.As = AB
    				q.To.Type = obj.TYPE_BRANCH
    				q.To.SetTarget(end)
    			}
    
    		case obj.ARET:
    			nocache(p)
    			if p.From.Type == obj.TYPE_CONST {
    				c.ctxt.Diag("using BECOME (%v) is not supported!", p)
    				break
    			}
    
    			retjmp = p.To.Sym
    			p.To = obj.Addr{}
    			if c.cursym.Func().Text.Mark&LEAF != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  8. pkg/kubelet/pleg/generic_test.go

    	// Does a relist to populate the cache.
    	pleg.Relist()
    	// Delete the pod from runtime. Verify that the cache entry has been
    	// removed after relisting.
    	runtimeMock.EXPECT().GetPods(ctx, true).Return([]*kubecontainer.Pod{}, nil).Times(1)
    	pleg.Relist()
    	actualStatus, actualErr := pleg.cache.Get(pods[0].ID)
    	assert.Equal(t, &kubecontainer.PodStatus{ID: pods[0].ID}, actualStatus)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller.go

    		client:                c.client,
    		maxEndpointsPerSubset: c.maxEndpointsPerSubset,
    		endpointSliceTracker:  c.endpointSliceTracker,
    		metricsCache:          metrics.NewCache(maxEndpointsPerSubset),
    		eventRecorder:         recorder,
    	}
    
    	c.eventBroadcaster = broadcaster
    	c.eventRecorder = recorder
    
    	c.endpointUpdatesBatchPeriod = endpointUpdatesBatchPeriod
    
    	return c
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 23:18:31 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  10. pkg/controller/deployment/deployment_controller.go

    	// Added as a member to the struct to allow injection for testing.
    	dListerSynced cache.InformerSynced
    	// rsListerSynced returns true if the ReplicaSet store has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    	rsListerSynced cache.InformerSynced
    	// podListerSynced returns true if the pod store has been synced at least once.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top