Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Marche (0.2 sec)

  1. cmd/data-usage-cache_gen.go

    				return
    			}
    		case "Cache":
    			var zb0002 uint32
    			zb0002, err = dc.ReadMapHeader()
    			if err != nil {
    				err = msgp.WrapError(err, "Cache")
    				return
    			}
    			if z.Cache == nil {
    				z.Cache = make(map[string]dataUsageEntry, zb0002)
    			} else if len(z.Cache) > 0 {
    				for key := range z.Cache {
    					delete(z.Cache, key)
    				}
    			}
    			for zb0002 > 0 {
    				zb0002--
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Mar 21 17:21:35 GMT 2024
    - 100.8K bytes
    - Viewed (0)
  2. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // aquarelle : 2014-07-24 Aquarelle.com
    aquarelle
    
    // arab : 2015-11-12 League of Arab States
    arab
    
    // aramco : 2014-11-20 Aramco Services Company
    aramco
    
    // archi : 2014-02-06 Identity Digital Limited
    archi
    
    // army : 2014-03-06 Dog Beach, LLC
    army
    
    // art : 2016-03-24 UK Creative Ideas Limited
    art
    
    // arte : 2014-12-11 Association Relative à la Télévision Européenne G.E.I.E.
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  3. okhttp/src/test/java/okhttp3/CacheTest.kt

    """
        fileSystem.createDirectory(cache.directoryPath)
        writeFile(cache.directoryPath, "$urlKey.0", entryMetadata)
        writeFile(cache.directoryPath, "$urlKey.1", entryBody)
        writeFile(cache.directoryPath, "journal", journalBody)
        cache = Cache(fileSystem, cache.directory.path.toPath(), Int.MAX_VALUE.toLong())
        client =
          client.newBuilder()
            .cache(cache)
            .build()
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 108.6K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/cache/LocalCacheTest.java

     */
    
    package com.google.common.cache;
    
    import static com.google.common.cache.CacheBuilder.NULL_TICKER;
    import static com.google.common.cache.LocalCache.DISCARDING_QUEUE;
    import static com.google.common.cache.LocalCache.DRAIN_THRESHOLD;
    import static com.google.common.cache.LocalCache.nullEntry;
    import static com.google.common.cache.LocalCache.unset;
    import static com.google.common.cache.TestingCacheLoaders.identityLoader;
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 112.3K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

     */
    
    package com.google.common.cache;
    
    import static com.google.common.cache.CacheBuilder.NULL_TICKER;
    import static com.google.common.cache.LocalCache.DISCARDING_QUEUE;
    import static com.google.common.cache.LocalCache.DRAIN_THRESHOLD;
    import static com.google.common.cache.LocalCache.nullEntry;
    import static com.google.common.cache.LocalCache.unset;
    import static com.google.common.cache.TestingCacheLoaders.identityLoader;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 110.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/cache/LocalCache.java

        @CheckForNull transient Cache<K, V> delegate;
    
        ManualSerializationProxy(LocalCache<K, V> cache) {
          this(
              cache.keyStrength,
              cache.valueStrength,
              cache.keyEquivalence,
              cache.valueEquivalence,
              cache.expireAfterWriteNanos,
              cache.expireAfterAccessNanos,
              cache.maxWeight,
              cache.weigher,
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 150.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/LocalCache.java

        @CheckForNull transient Cache<K, V> delegate;
    
        ManualSerializationProxy(LocalCache<K, V> cache) {
          this(
              cache.keyStrength,
              cache.valueStrength,
              cache.keyEquivalence,
              cache.valueEquivalence,
              cache.expireAfterWriteNanos,
              cache.expireAfterAccessNanos,
              cache.maxWeight,
              cache.weigher,
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/CallTest.kt

                "ETag",
                "v1",
                "Cache-Control",
                "max-age=60",
                "Vary",
                "Accept-Charset",
              ),
            body = "A",
          ),
        )
        client =
          client.newBuilder()
            .cache(cache)
            .build()
    
        // Store a response in the cache.
        val url = server.url("/")
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        )
        assertThat(connect.headers["Host"]).isEqualTo("android.com:443")
      }
    
      private fun initResponseCache() {
        cache = Cache(tempDir, Int.MAX_VALUE.toLong())
        client =
          client.newBuilder()
            .cache(cache)
            .build()
      }
    
      /** Test which headers are sent unencrypted to the HTTP proxy.  */
      @Test
      fun proxyConnectIncludesProxyHeadersOnly() {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 131.7K bytes
    - Viewed (0)
  10. cmd/object-handlers.go

    					// We did not satisfy any requirement from the cache, update the cache.
    					// this basically means that we do not have the Data for the object
    					// cached yet
    					update = true
    				})
    				if !update {
    					// No update is needed means we have written already to the client just return here.
    					return
    				}
    			}
    		}
    
    		if errors.Is(err, cache.ErrKeyMissing) {
    			update = true
    		}
    	}
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 125K bytes
    - Viewed (0)
Back to top