Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,210 for cachez (0.11 sec)

  1. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/InMemoryCacheDecoratorFactoryTest.groovy

        def crossProcessCacheAccess = Mock(CrossProcessCacheAccess)
    
        def "caches result from backing cache and reuses for other instances with the same cache id"() {
            given:
            def cache = cacheFactory.decorator(100, true).decorate("path/fileSnapshots.bin", "fileSnapshots", target, crossProcessCacheAccess, asyncCacheAccess)
    
            when:
            def result = cache.getIfPresent("key")
    
            then:
            result == "result"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/CacheControl.kt

      }
    
      companion object {
        /**
         * Cache control request directives that require network validation of responses. Note that such
         * requests may be assisted by the cache via conditional GET requests.
         */
        @JvmField
        val FORCE_NETWORK = commonForceNetwork()
    
        /**
         * Cache control request directives that uses the cache only, even if the cached response is
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. cmd/metrics-v3-cache.go

    )
    
    // metricsCache - cache for metrics.
    //
    // When serving metrics, this cache is passed to the MetricsLoaderFn.
    //
    // This cache is used for metrics that would result in network/storage calls.
    type metricsCache struct {
    	dataUsageInfo       *cachevalue.Cache[DataUsageInfo]
    	esetHealthResult    *cachevalue.Cache[HealthResult]
    	driveMetrics        *cachevalue.Cache[storageMetrics]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/WritableArtifactCacheLockingAccessCoordinator.java

    import org.gradle.cache.UnscopedCacheBuilderFactory;
    import org.gradle.cache.internal.CompositeCleanupAction;
    import org.gradle.cache.internal.LeastRecentlyUsedCacheCleanup;
    import org.gradle.cache.internal.SingleDepthFilesFinder;
    import org.gradle.cache.internal.UnusedVersionsCacheCleanup;
    import org.gradle.cache.internal.UsedGradleVersions;
    import org.gradle.internal.file.FileAccessTimeJournal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepository.java

            this.moduleArtifactsCache = caches.moduleArtifactsCache;
            this.moduleArtifactCache = caches.moduleArtifactCache;
            this.resolveStateFactory = resolveStateFactory;
            this.cachePolicy = cachePolicy;
            this.timeProvider = timeProvider;
            this.metadataProcessor = metadataProcessor;
            this.listener = listener;
        }
    
        @Override
        public String getId() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    [.screenshot]
    image::build-cache/cache-admin-hit-rate.png[build cache hit rate]
    
    == Analyzing performance in build scans
    
    Build scans provide a summary of all cache operations for a build via the _"Build cache"_ section of the _"Performance"_ page.
    
    [.screenshot]
    image::build-cache/build-cache-performance.png[build cache performance]
    
    This page details which tasks were able to be avoided by cache hits, and which missed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    As stated above, caches in Gradle User Home are version-specific.
    Different versions of Gradle will perform maintenance on only the version-specific caches associated with each version.
    
    On the other hand, some caches are shared between versions (e.g., the dependency artifact cache or the artifact transform cache).
    
    Beginning with Gradle version 8.0, the cache cleanup settings can be configured to custom retention periods.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. .github/workflows/codeql-analysis.yml

        - name: Cache Gradle Modules
          uses: actions/cache@v4
          with:
            path: |
              ~/.gradle/caches/modules-2/
              ~/.gradle/caches/build-cache-1/
              ~/.gradle/caches/signatures/
              ~/.gradle/caches/keyrings/
            key: ${{ runner.os }}-gradle-cache-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/par/work.go

    }
    
    var ErrCacheEntryNotFound = errors.New("cache entry not found")
    
    // Get returns the cached result associated with key.
    // It returns ErrCacheEntryNotFound if there is no such result.
    func (c *ErrCache[K, V]) Get(key K) (V, error) {
    	v, ok := c.Cache.Get(key)
    	if !ok {
    		v.err = ErrCacheEntryNotFound
    	}
    	return v.v, v.err
    }
    
    // Cache runs an action once per key and caches the result.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:54:54 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/controller.go

    	c.updateSpecLocked()
    	return nil
    }
    
    // updateSpecLocked updates the cached spec graph.
    func (c *Controller) updateSpecLocked() {
    	specList := make([]cached.Value[*spec.Swagger], 0, len(c.specsByName))
    	for crd := range c.specsByName {
    		specList = append(specList, c.specsByName[crd].mergedVersionSpec)
    	}
    
    	cache := cached.MergeList(func(results []cached.Result[*spec.Swagger]) (*spec.Swagger, string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top