Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,068 for cachez (0.29 sec)

  1. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultCacheBuilderTest.groovy

            then:
            1 * cacheFactory.open(sharedCacheDir, null, [:], mode(OnDemand), _, NO_CLEANUP) >> cache
        }
    
        void canSpecifyDisplayNameForDirectoryCache() {
            when:
            builder.withDisplayName("<cache>").open()
    
            then:
            1 * cacheFactory.open(sharedCacheDir, "<cache>", [:], mode(Shared), _, NO_CLEANUP) >> cache
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:40:49 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. pilot/pkg/xds/discovery.go

    		}
    	}
    }
    
    // dropCacheForRequest clears the cache in response to a push request
    func (s *DiscoveryServer) dropCacheForRequest(req *model.PushRequest) {
    	// If we don't know what updated, cannot safely cache. Clear the whole cache
    	if len(req.ConfigsUpdated) == 0 {
    		s.Cache.ClearAll()
    	} else {
    		// Otherwise, just clear the updated configs
    		s.Cache.Clear(req.ConfigsUpdated)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/GlobalCache.java

     * limitations under the License.
     */
    
    package org.gradle.cache;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.io.File;
    import java.util.List;
    
    /**
     * Represents a location for global Gradle caches.
     *
     * The global cache is managed by Gradle, so we Gradle needs to take care
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache-http/build.gradle.kts

    }
    
    description = "Implementation for interacting with HTTP build caches"
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(projects.serviceProvider)
    
        api(libs.httpcore)
        api(libs.inject)
        api(libs.jsr305)
    
        api(project(":base-services"))
        api(project(":build-cache-spi"))
        api(project(":core-api"))
        api(project(":resources-http"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.publish-public-libraries")
    }
    
    description = """Persistent caches on disk and cross process locking.
        | Mostly for persisting Maps to the disk.
        | Also contains implementations for in-memory caches in front of the disk cache.
    """.trimMargin()
    
    dependencies {
        api(projects.concurrent)
        api(projects.stdlibJavaExtensions)
        api(projects.serialization)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/help/helpdoc.go

    The go command periodically deletes cached data that has not been
    used recently. Running 'go clean -cache' deletes all cached data.
    
    The build cache correctly accounts for changes to Go source files,
    compilers, compiler options, and so on: cleaning the cache explicitly
    should not be necessary in typical use. However, the build cache
    does not detect changes to C libraries imported with cgo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    		return false
    	}
    	if cache.DebugTest {
    		fmt.Fprintf(os.Stderr, "testcache: %s: test ID %x => input ID %x => %x\n", a.Package.ImportPath, testID, testInputsID, testAndInputKey(testID, testInputsID))
    	}
    
    	// Parse cached result in preparation for changing run time to "(cached)".
    	// If we can't parse the cached result, don't use it.
    	data, entry, err = cache.GetBytes(cache.Default(), testAndInputKey(testID, testInputsID))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	w.resizeCacheLocked(event.RecordTime)
    	if w.isCacheFullLocked() {
    		// Cache is full - remove the oldest element.
    		w.startIndex++
    		w.removedEventSinceRelist = true
    	}
    	w.cache[w.endIndex%w.capacity] = event
    	w.endIndex++
    }
    
    // resizeCacheLocked resizes the cache if necessary:
    // - increases capacity by 2x if cache is full and all cached events occurred within last eventFreshDuration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker.go

    	return &defaultFeatureSupportChecker{
    		checkingEndpoint: make(map[string]struct{}),
    	}
    }
    
    // Supports can check the featue from anywhere without storage if it was cached before.
    func (f *defaultFeatureSupportChecker) Supports(feature storage.Feature) bool {
    	switch feature {
    	case storage.RequestWatchProgress:
    		f.lock.Lock()
    		defer f.lock.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/cache/default.go

    	defaultCache Cache
    )
    
    // cacheREADME is a message stored in a README in the cache directory.
    // Because the cache lives outside the normal Go trees, we leave the
    // README as a courtesy to explain where it came from.
    const cacheREADME = `This directory holds cached build artifacts from the Go build system.
    Run "go clean -cache" if the directory is getting too large.
    Run "go clean -fuzzcache" to delete the fuzz cache.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top