Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 568 for cache (0.01 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cache.kt

       * default, OkHttp will perform lazy initialization upon the first usage of the cache.
       */
      @Throws(IOException::class)
      fun initialize() {
        cache.initialize()
      }
    
      /**
       * Closes the cache and deletes all of its stored values. This will delete all files in the cache
       * directory including files that weren't created by the cache.
       */
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-05-27 14:51
    - 26.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/Cache.java

      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.
       *
       * <p><b>Warning:</b> this cache may not be recording statistical data. For example, a cache
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-22 03:38
    - 8.3K bytes
    - Viewed (0)
  3. internal/cachevalue/cache.go

    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: 2025-05-25 19:28
    - Last Modified: 2024-05-24 12:50
    - 4.4K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/orig/view/cache.hbs

    Shinsuke Sugaya <******@****.***> 1462510149 +0900
    Registered: 2025-05-26 08:04
    - Last Modified: 2016-05-06 04:49
    - 324 bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/cache.hbs

    Shinsuke Sugaya <******@****.***> 1462510149 +0900
    Registered: 2025-05-26 08:04
    - Last Modified: 2016-05-06 04:49
    - 324 bytes
    - Viewed (0)
  6. guava-gwt/src/com/google/common/cache/Cache.gwt.xml

    cpovirk <******@****.***> 1721404771 -0700
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-07-19 16:02
    - 1.6K bytes
    - Viewed (0)
  7. 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: 2025-05-25 19:28
    - Last Modified: 2025-03-30 00:56
    - 8K bytes
    - Viewed (0)
  8. cmd/data-usage-cache.go

    // dataUsageCacheV2 contains a cache of data usage entries version 2.
    type dataUsageCacheV2 struct {
    	Info  dataUsageCacheInfo
    	Cache map[string]dataUsageEntryV2
    }
    
    // dataUsageCacheV3 contains a cache of data usage entries version 3.
    type dataUsageCacheV3 struct {
    	Info  dataUsageCacheInfo
    	Cache map[string]dataUsageEntryV3
    }
    
    // dataUsageCacheV4 contains a cache of data usage entries version 4.
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-03-30 00:56
    - 34.7K bytes
    - Viewed (0)
  9. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.cache-miss-monitor.gradle.kts

        )
    
    fun Project.isExpectedCompileCacheMiss() =
    // Expected cache-miss:
    // 1. CompileAll is the seed build
    // 2. Gradleception which re-builds Gradle with a new Gradle version
    // 3. buildScanPerformance test, which doesn't depend on compileAll
    // 4. buildScanPerformance test, which doesn't depend on compileAll
    // 5. Compile All for the experimental build cache NG
    // 6. BuildCommitDistribution may build a commit which is not built before
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-04-11 20:57
    - 4.8K bytes
    - Viewed (0)
  10. build-logic-settings/configuration-cache-compatibility/src/main/kotlin/gradlebuild.configuration-cache-compatibility.settings.gradle.kts

            tasks.configureEach {
                val task = this
                if (isIncompatible(task)) {
                    task.notCompatibleWithConfigurationCache("Task is not compatible with the configuration cache")
                }
            }
        }
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-01-15 16:07
    - 4.1K bytes
    - Viewed (0)
Back to top