Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 65 for uwcache (0.43 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/binder.go

    //     i.  If PVC binding is required, cache in-memory only:
    //     * For manual binding: update PV objects for prebinding to the corresponding PVCs.
    //     * For dynamic provisioning: update PVC object with a selected node from c)
    //     * For the pod, which PVCs and PVs need API updates.
    //     ii. Afterwards, the main scheduler caches the Pod->Node binding in the scheduler's pod cache,
    //     This is handled in the scheduler and not here.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. cmd/iam-store.go

    		cache.iamGroupPolicyMap = newCache.iamGroupPolicyMap
    		cache.iamGroupsMap = newCache.iamGroupsMap
    		cache.iamPolicyDocsMap = newCache.iamPolicyDocsMap
    		cache.iamUserGroupMemberships = newCache.iamUserGroupMemberships
    		cache.iamUserPolicyMap = newCache.iamUserPolicyMap
    		cache.iamUsersMap = newCache.iamUsersMap
    		// For STS policy map, we need to merge the new cache with the existing
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/NativeDependencyCache.java

            final String hash = moduleMap.getHashCode().toCompactString();
            return cache.useCache(() -> {
                File dir = new File(cache.getBaseDir(), "maps/" + hash + "/" + moduleMap.getModuleName());
                File moduleMapFile = new File(dir, "module.modulemap");
                if (!moduleMapFile.isFile()) {
                    generateFile(moduleMapFile, moduleMap.getModuleName(), moduleMap.getPublicHeaderPaths());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. 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: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/RemoteScriptUpToDateChecker.kt

                    val downloadAction = DownloadAction(externalResourceName, temporaryFileProvider, null)
                    externalResource.withContentIfPresent(downloadAction)
    
                    lockingAccessCoordinator.useCache {
                        val cachedResource = externalResourceFileStore.move(externalResource.toString(), downloadAction.destination)
                        val fileInFileStore = cachedResource.file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    f4j-log4j12-1.7.5.jar:/home/tcagent1/agent/lib/trove4j.jar:/home/tcagent1/agent/lib/common-impl.jar:/home/tcagent1/agent/lib/ehcache-1.6.0-patch.jar:/home/tcagent1/agent/lib/buildAgent-updates-applying.jar:/home/tcagent1/agent/lib/agent-upgrade.jar:/home/tcagent1/agent/lib/commons-beanutils-core.jar:/home/tcagent1/agent/lib/app-wrapper.jar:/home/tcagent1/agent/lib/ehcache-1.7.2.jar:/home/tcagent1/agent/lib/jdom.jar:/home/tcagent1/agent/lib/spring-scripting/spring-scripting-jruby.jar:/home/tcagen...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/cache/CacheStrategy.kt

    import okhttp3.internal.http.toHttpDateOrNull
    import okhttp3.internal.toNonNegativeInt
    
    /**
     * Given a request and cached response, this figures out whether to use the network, the cache, or
     * both.
     *
     * Selecting a cache strategy may add conditions to the request (like the "If-Modified-Since" header
     * for conditional GETs) or warnings to the cached response (if the cached data is potentially
     * stale).
     */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. src/cmd/go/go_test.go

    		t.Skip("skipping lengthy test in short mode")
    	}
    
    	tg := testgo(t)
    	defer tg.cleanup()
    	tg.parallel()
    
    	// Set GOCACHE to an empty directory so that a previous run of
    	// this test does not affect the staleness of the packages it builds.
    	tg.tempDir("gocache")
    	tg.setenv("GOCACHE", tg.path("gocache"))
    
    	// Copy the runtime packages into a temporary GOROOT
    	// so that we can change files.
    	var dirs []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DependencyManagementGradleUserHomeScopeServices.java

    import org.gradle.api.internal.cache.CacheConfigurationsInternal;
    import org.gradle.cache.Cache;
    import org.gradle.cache.CacheBuilder;
    import org.gradle.cache.UnscopedCacheBuilderFactory;
    import org.gradle.cache.internal.CrossBuildInMemoryCache;
    import org.gradle.cache.internal.CrossBuildInMemoryCacheFactory;
    import org.gradle.cache.internal.UsedGradleVersions;
    import org.gradle.cache.scopes.GlobalScopedCacheBuilderFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/buildid.go

    		}
    		if cfg.BuildN {
    			return nil
    		}
    	}
    
    	c := cache.Default()
    
    	// Cache output from compile/link, even if we don't do the rest.
    	switch a.Mode {
    	case "build":
    		cache.PutBytes(c, cache.Subkey(a.actionID, "stdout"), a.output)
    	case "link":
    		// Even though we don't cache the binary, cache the linker text output.
    		// We might notice that an installed binary is up-to-date but still
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top