Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,036 for cachez (0.17 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_test.go

    		// successful responses are cached
    		{name: "alice successful request", attr: aliceAttr, allow: true, statusCode: 200, expectedErr: false, expectedAuthorized: true, expectedCalls: 1},
    		// later requests within the cache window don't hit the backend
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIntegrationTest.groovy

        def "configuration cache is out of incubation"() {
            given:
            settingsFile << ""
    
            when:
            run("help", "--configuration-cache")
    
            then:
            result.assertHasPostBuildOutput("Configuration cache entry stored.")
            !output.contains("Configuration cache is an incubating feature.")
        }
    
        def "configuration cache for Help plugin task '#task' on empty project"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/cri_stats_provider.go

    	usage, err := func() (*uint64, error) {
    		p.mutex.Lock()
    		defer p.mutex.Unlock()
    
    		cached, ok := p.cpuUsageCache[id]
    		if !ok || cached.stats.UsageCoreNanoSeconds == nil || stats.Cpu.UsageCoreNanoSeconds.Value < cached.stats.UsageCoreNanoSeconds.Value {
    			// Cannot compute the usage now, but update the cached stats anyway
    			p.cpuUsageCache[id] = &cpuUsageRecord{stats: stats.Cpu, usageNanoCores: nil}
    			return nil, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  4. pkg/controller/serviceaccount/tokens_controller.go

    	// updatedSecrets is a wrapper around the shared cache which allows us to record
    	// and return our local mutations (since we're very likely to act on an updated
    	// secret before the watch reports it).
    	updatedSecrets cache.MutationCache
    
    	// Since we join two objects, we'll watch both of them with controllers.
    	serviceAccountSynced cache.InformerSynced
    	secretSynced         cache.InformerSynced
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ArtifactCacheUnusedEntryCleanupIntegrationTest.groovy

            executer.withTasks('help').start().waitForFinish()
    
            then:
            resource.assertExists()
            files[0].assertExists()
            files[1].assertExists()
    
            where:
            cleanupMethod << CleanupMethod.values()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 12:06:23 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/caching_object.go

    		invalidationCacheTimestamp = now
    		return true
    	}
    	return false
    }
    
    func (o *cachingObject) invalidateCacheLocked() {
    	if cache, ok := o.serializations.Load().(serializationsCache); ok && len(cache) == 0 {
    		return
    	}
    	// We don't expect cache invalidation to happen - so we want
    	// to log the stacktrace to allow debugging if that will happen.
    	// OTOH, we don't want to spam logs with it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 18:03:48 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenRemoteDependencyWithGradleMetadataResolutionIntegrationTest.groovy

        def setup() {
            resolve.prepare()
            resolve.addDefaultVariantDerivationStrategy()
            server.start()
    
            settingsFile << "rootProject.name = 'test'"
    
        }
    
        def "downloads and caches the module metadata when present"() {
            def m = mavenHttpRepo.module("test", "a", "1.2").withModuleMetadata().publish()
    
            given:
            buildFile << """
    repositories {
        maven {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/CacheBuilder.java

     * by the garbage collector. Entries with reclaimed keys or values may be removed from the cache on
     * each cache modification, on occasional cache accesses, or on calls to {@link Cache#cleanUp}; such
     * entries may be counted in {@link Cache#size}, but will never be visible to read or write
     * operations.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/cache/internal/GradleUserHomeCleanupServiceTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.cache.internal
    
    import org.gradle.api.internal.cache.CacheConfigurationsInternal
    import org.gradle.api.internal.cache.CacheResourceConfigurationInternal
    import org.gradle.api.internal.file.TestFiles
    import org.gradle.api.provider.Property
    import org.gradle.cache.CleanupFrequency
    import org.gradle.cache.scopes.GlobalScopedCacheBuilderFactory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:46:34 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    		id, text, treeMsg, err := tlog.ParseRecord(data)
    		if err != nil {
    			return cached{nil, err}
    		}
    		if err := c.mergeLatest(treeMsg); err != nil {
    			return cached{nil, err}
    		}
    		if err := c.checkRecord(id, text); err != nil {
    			return cached{nil, err}
    		}
    
    		// Now that we've validated the record,
    		// save it to the on-disk cache (unless that's where it came from).
    		if writeCache {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
Back to top