Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for uwcache (0.43 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

     */
    
    package org.gradle.internal.classpath;
    
    import com.google.common.collect.ImmutableList;
    import org.gradle.api.NonNullApi;
    import org.gradle.cache.FileLockManager;
    import org.gradle.cache.GlobalCacheLocations;
    import org.gradle.cache.PersistentCache;
    import org.gradle.cache.scopes.GlobalScopedCacheBuilderFactory;
    import org.gradle.internal.Either;
    import org.gradle.internal.classpath.transforms.ClassTransform;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/envcmd/env.go

    				env[i].Changed = true
    			}
    		case "GOBIN", "GOEXPERIMENT", "GOFLAGS", "GOINSECURE", "GOPRIVATE", "GOTMPDIR", "GOVCS":
    			if env[i].Value != "" {
    				env[i].Changed = true
    			}
    		case "GOCACHE":
    			env[i].Value, env[i].Changed = cache.DefaultDir()
    		case "GOTOOLCHAIN":
    			env[i].Value, env[i].Changed = cfg.EnvOrAndChanged("GOTOOLCHAIN", "")
    		case "GODEBUG":
    			env[i].Changed = env[i].Value != ""
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/KotlinSourceModernTest.kt

      }
    
      @Test
      fun cache() {
        val cache = Cache(File("/cache/"), Integer.MAX_VALUE.toLong())
        cache.initialize()
        cache.delete()
        cache.evictAll()
        val urls: MutableIterator<String> = cache.urls()
        val writeAbortCount: Int = cache.writeAbortCount()
        val writeSuccessCount: Int = cache.writeSuccessCount()
        val size: Long = cache.size()
        val maxSize: Long = cache.maxSize()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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