Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 272 for uwcache (0.13 sec)

  1. 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)
  2. pkg/kubelet/server/stats/fs_resource_analyzer.go

    	newCache := make(statCache)
    
    	// Copy existing entries to new map, creating/starting new entries for pods missing from the cache
    	for _, pod := range s.statsProvider.GetPods() {
    		if value, found := oldCache[pod.GetUID()]; !found {
    			newCache[pod.GetUID()] = newVolumeStatCalculator(s.statsProvider, s.calcPeriod, pod, s.eventRecorder).StartOnce()
    		} else {
    			newCache[pod.GetUID()] = value
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 09 16:16:37 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_fuzz_seed_corpus.txt

    ! stdout 'Failing input written to testdata[/\\]fuzz[/\\]FuzzWithTestdata[/\\]'
    stdout FAIL
    
    # Write a crashing input to the cache
    mkdir $GOCACHE/fuzz/example.com/x/FuzzRunNoneWithCache
    cp cache-file $GOCACHE/fuzz/example.com/x/FuzzRunNoneWithCache/1
    
    # Test that fuzzing a target (with -run=None set) with a failure in the cache
    # prints the crash and writes this as a "new" crash to testdata/fuzz
    ! go test -fuzz=FuzzRunNoneWithCache -run=None -fuzztime=1x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:51:29 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/cached/AbstractCachedIndex.java

            return cacheAccessCoordinator.createCache(persistentCacheName, keySerializer, valueSerializer);
        }
    
        public V lookup(final K key) {
            assertKeyNotNull(key);
    
            V result = cacheAccessCoordinator.useCache(() -> {
                V found = getIndexedCache().getIfPresent(key);
                if (found == null) {
                    return null;
                } else if (found.isMissing() || found.getCachedFile().exists()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/cache/internal/DefaultFileContentCacheFactoryTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.cache.internal
    
    
    import org.gradle.cache.AsyncCacheAccess
    import org.gradle.cache.CacheDecorator
    import org.gradle.cache.CrossProcessCacheAccess
    import org.gradle.cache.MultiProcessSafeIndexedCache
    import org.gradle.cache.internal.scopes.DefaultCacheScopeMapping
    import org.gradle.cache.internal.scopes.DefaultGlobalScopedCacheBuilderFactory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/cache/internal/AbstractCrossBuildInMemoryCacheTest.groovy

            cache.get("a", function) == a
        }
    
        def "creates each entry once"() {
            def a = new Object()
            def b = new Object()
            def c = new Object()
            def function = Mock(Function)
    
            given:
            def cache = newCache()
            cache.put("c", c)
    
            when:
            def r1 = cache.get("a", function)
            def r2 = cache.get("b", function)
            def r3 = cache.get("a", function)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rocache/AbstractReadOnlyCacheDependencyResolutionTest.groovy

            boolean inCache = false
            while (artifactFile != null) {
                if (artifactFile == roCachePath) {
                    inCache = true
                    break
                }
                artifactFile = artifactFile.parent
            }
            inCache
        }
    
        void assertNotInReadOnlyCache(File file) {
            boolean inCache = isInRoCache(file)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_fuzz_minimize_dirty_cov.txt

    # an expected value appears in the cache. If a dirty coverage map is used
    # (i.e. the coverage map generated during the last minimization step,
    # rather than the map provided with the initial input) then this value
    # is unlikely to appear in the cache, since the map generated during
    # the last minimization step should not increase the coverage.
    
    [short] skip
    [!fuzz-instrumented] skip
    
    env GOCACHE=$WORK/gocache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. proguard/cache.pro

    # Striped64 appears to make some assumptions about object layout that
    # really might not be safe. This should be investigated.
    -keepclassmembers class com.google.common.cache.Striped64 {
      *** base;
      *** busy;
    }
    -keepclassmembers class com.google.common.cache.Striped64$Cell {
      <fields>;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 09 00:29:01 UTC 2023
    - 341 bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/Cache.java

     * limitations under the License.
     */
    package org.gradle.cache;
    
    import javax.annotation.Nullable;
    import java.util.function.Function;
    import java.util.function.Supplier;
    
    public interface Cache<K, V>  {
        /**
         * Locates the given entry, using the supplied factory when the entry is not present or has been discarded, to recreate the entry in the cache.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top