Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,324 for cachez (0.09 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/CachingRuleExecutor.java

     * that is going to be cached, and most likely the thing the caller really cares about
     */
    public interface CachingRuleExecutor<KEY, DETAILS, RESULT> {
        /**
         * Executes a rule, fetching the result from the cache if available, or executing the rule and caches
         * the result in case of cache miss.
         *  @param rule the rule to be executed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/LoadingCache.java

       * Cache.asMap().putIfAbsent} after loading has completed; if another value was associated with
       * {@code key} while the new value was loading then a removal notification will be sent for the
       * new value.
       *
       * <p>If the cache loader associated with this cache is known not to throw checked exceptions,
       * then prefer {@link #getUnchecked} over this method.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testing/testcase.go

    				AdmissionReviewVersions: []string{"v1beta1"},
    			}},
    			ExpectAllow:     true,
    			ExpectCacheMiss: true,
    		},
    		{
    			Name: "cached: service webhook, path 'allow'",
    			Webhooks: []registrationv1.ValidatingWebhook{{
    				Name:                    "cache3",
    				ClientConfig:            ccfgSVC("allow"),
    				Rules:                   newMatchEverythingRules(),
    				NamespaceSelector:       &metav1.LabelSelector{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 47.6K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/cache/debugger/comparer.go

    		actual = append(actual, string(pod.UID))
    	}
    
    	cached := []string{}
    	for _, nodeinfo := range nodeinfos {
    		for _, p := range nodeinfo.Pods {
    			cached = append(cached, string(p.Pod.UID))
    		}
    	}
    	for _, pod := range waitingPods {
    		cached = append(cached, string(pod.UID))
    	}
    
    	return compareStrings(actual, cached)
    }
    
    func compareStrings(actual, cached []string) (missed, redundant []string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiBuildActionIntegrationTest.groovy

            model3[1].message == "It works from project :b"
    
            and:
            // TODO - should not invalidate all cached state
            fixture.assertStateRecreated {
                gradlePropertyChanged()
                buildModelQueries = 1 // TODO:configuration-cache ???
                projectConfigured(":buildSrc")
                projectsConfigured(":", ":a", ":b", ":c")
                modelsCreated(":a", ":b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprint.kt

            /**
             * Whether the instrumentation agent was used when computing the cache.
             * With the agent, the class paths may be stored differently, making the caches incompatible with one another.
             */
            val instrumentationAgentUsed: Boolean,
            /**
             * The file system paths that will be ignored during file system checks tracking for the cache fingerprint.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cache_striped.go

    	caches := []cache{}
    	for i := 0; i < stripeCount; i++ {
    		caches = append(caches, newCacheFunc())
    	}
    	return &stripedCache{
    		stripeCount: uint32(stripeCount),
    		hashFunc:    hash,
    		caches:      caches,
    	}
    }
    
    func (c *stripedCache) get(key string) (*cacheRecord, bool) {
    	return c.caches[c.hashFunc(key)%c.stripeCount].get(key)
    }
    func (c *stripedCache) set(key string, value *cacheRecord, ttl time.Duration) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 22 17:16:59 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    include::sample[dir="snippets/buildCache/http-build-cache/kotlin",files="settings.gradle.kts[tags=http-build-cache]"]
    include::sample[dir="snippets/buildCache/http-build-cache/groovy",files="settings.gradle[tags=http-build-cache]"]
    ====
    
    When attempting to load an entry, a `GET` request is made to `\https://example.com:8123/cachecache-key»`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

            then:
            // FIXME Loading from cache destroys the overlap directory, but the task should not be loaded from cache
            fileTaskOutput.assertDoesNotExist()
            localStateDirTaskOutput.assertExists()
            // Task was loaded from cache, so local state was removed
            localStateDirTaskState.assertDoesNotExist()
            // fileTask can be from the cache, but the dirTask cannot due to a cache miss
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    In practice, this means that the writable cache will only contain dependencies that are unavailable in the read-only cache.
    
    The read-only cache should be sourced from a Gradle dependency cache that already contains some of the required dependencies.
    The cache can be incomplete; however, an empty shared cache will only add overhead.
    
    NOTE: The shared read-only dependency cache is an incubating feature.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
Back to top