Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 272 for uwcache (0.17 sec)

  1. pkg/wasm/cache.go

    	// sha256 scheme prefix
    	sha256SchemePrefix = "sha256:"
    )
    
    // Cache models a Wasm module cache.
    type Cache interface {
    	Get(url string, opts GetOptions) (string, error)
    	Cleanup()
    }
    
    // LocalFileCache for downloaded Wasm modules. Currently it stores the Wasm module as local file.
    type LocalFileCache struct {
    	// Map from Wasm module checksum to cache entry.
    	modules map[moduleKey]*cacheEntry
    	// Map from tagged URL to checksum
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. pkg/cache/cache.go

    	// expunged from the cache at some point, depending on the eviction policies
    	// of the cache and the options specified when the cache was created.
    	Set(key any, value any)
    
    	// Get retrieves the value associated with the supplied key if the key
    	// is present in the cache.
    	Get(key any) (value any, ok bool)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCacheFactory.java

     * limitations under the License.
     */
    package org.gradle.cache.internal;
    
    import org.gradle.cache.CacheCleanupStrategy;
    import org.gradle.cache.CacheOpenException;
    import org.gradle.cache.FileLockManager;
    import org.gradle.cache.IndexedCache;
    import org.gradle.cache.IndexedCacheParameters;
    import org.gradle.cache.LockOptions;
    import org.gradle.cache.PersistentCache;
    import org.gradle.internal.concurrent.CompositeStoppable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 15:54:23 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/cache.hbs

    Shinsuke Sugaya <******@****.***> 1462510149 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri May 06 04:49:09 UTC 2016
    - 324 bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/orig/view/cache.hbs

    Shinsuke Sugaya <******@****.***> 1462510149 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri May 06 04:49:09 UTC 2016
    - 324 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/cache.go

    // license that can be found in the LICENSE file.
    
    package ssa
    
    import (
    	"cmd/internal/obj"
    	"sort"
    )
    
    // A Cache holds reusable compiler state.
    // It is intended to be re-used for multiple Func compilations.
    type Cache struct {
    	// Storage for low-numbered values and blocks.
    	values [2000]Value
    	blocks [200]Block
    	locs   [2000]Location
    
    	// Reusable stackAllocState.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 15 23:00:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/Cache.java

      /** Discards all entries in the cache. */
      void invalidateAll();
    
      /** Returns the approximate number of entries in this cache. */
      long size();
    
      /**
       * Returns a current snapshot of this cache's cumulative statistics, or a set of default values if
       * the cache is not recording statistics. All statistics begin at zero and never decrease over the
       * lifetime of the cache.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  8. internal/cachevalue/cache.go

    // `.TnitOnce`.
    func New[T any]() *Cache[T] {
    	return &Cache[T]{}
    }
    
    // NewFromFunc allocates a new cached value instance and initializes it with an
    // update function, making it ready for use.
    func NewFromFunc[T any](ttl time.Duration, opts Opts, update func(ctx context.Context) (T, error)) *Cache[T] {
    	return &Cache[T]{
    		ttl:      ttl,
    		updateFn: update,
    		opts:     opts,
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 12:50:46 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CacheSupport.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.cache.internal;
    
    import org.gradle.cache.Cache;
    
    import java.util.function.Function;
    
    public abstract class CacheSupport<K, V> implements Cache<K, V> {
    
        @Override
        public V get(K key, Function<? super K, ? extends V> factory) {
            V value = doGet(key);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/CacheControlJvmTest.kt

      fun parse() {
        val header = (
          "no-cache, no-store, max-age=1, s-maxage=2, private, public, must-revalidate, " +
            "max-stale=3, min-fresh=4, only-if-cached, no-transform"
        )
        val cacheControl =
          parse(
            Headers.Builder()
              .set("Cache-Control", header)
              .build(),
          )
        assertThat(cacheControl.noCache).isTrue()
        assertThat(cacheControl.noStore).isTrue()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top