Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 212 for cacheDir (0.61 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/LoggingEvictionListener.java

        private final AtomicInteger evictionCounter = new AtomicInteger(0);
        private final String cacheId;
        private final int maxSize;
        private final int logInterval;
        private final Logger logger;
        private Cache<Object, Object> cache;
    
        LoggingEvictionListener(String cacheId, int maxSize, Logger logger) {
            this.cacheId = cacheId;
            this.maxSize = maxSize;
            this.logInterval = maxSize / 10;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:36 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/webAppJava6Classpath.xml

    		</attributes>
    	</classpathentry>
    	<classpathentry sourcepath="@CACHE_DIR@/joda-time/joda-time/2.5/@SHA1@/joda-time-2.5-sources.jar" kind="lib" path="@CACHE_DIR@/joda-time/joda-time/2.5/@SHA1@/joda-time-2.5.jar">
    		<attributes>
    			<attribute name="javadoc_location" value="jar:file:@CACHE_DIR@/joda-time/joda-time/2.5/@SHA1@/joda-time-2.5-javadoc.jar!/"/>
    			<attribute name="gradle_used_by_scope" value="main,test"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/commonClasspath.xml

    		<attributes>
    			<attribute name="javadoc_location" value="jar:file:@CACHE_DIR@/joda-time/joda-time/2.5/@SHA1@/joda-time-2.5-javadoc.jar!/"/>
    			<attribute name="gradle_used_by_scope" value="main,test"/>
    			<attribute name="org.eclipse.jst.component.nondependency" value=""/>
    		</attributes>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    			t.Fatalf("Unexpected error: %v", err)
    		}
    	}
    
    	cacher, _, err := newTestCacher(etcdStorage)
    	if err != nil {
    		t.Fatalf("Couldn't create cacher: %v", err)
    	}
    	defer cacher.Stop()
    
    	// Given that cacher is always initialized from the "current" version of etcd,
    	// we now have a cacher with an empty cache of watch events and a resourceVersion of rv.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/InMemoryDecoratedCache.java

        private final Cache<Object, Object> inMemoryCache;
        private final String cacheId;
        private final AtomicReference<FileLock.State> fileLockStateReference;
    
        public InMemoryDecoratedCache(MultiProcessSafeAsyncPersistentIndexedCache<K, V> delegate, Cache<Object, Object> inMemoryCache, String cacheId, AtomicReference<FileLock.State> fileLockStateReference) {
            this.delegate = delegate;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/groovyprojectClasspath.xml

    	<classpathentry sourcepath="@CACHE_DIR@/commons-collections/commons-collections/3.2.2/@SHA1@/commons-collections-3.2.2-sources.jar" kind="lib" path="@CACHE_DIR@/commons-collections/commons-collections/3.2.2/@SHA1@/commons-collections-3.2.2.jar">
    		<attributes>
    			<attribute name="javadoc_location" value="jar:file:@CACHE_DIR@/commons-collections/commons-collections/3.2.2/@SHA1@/commons-collections-3.2.2-javadoc.jar!/"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/ComponentMetadataRuleExecutor.java

        private static final String CACHE_ID = "md-rule";
    
        public static boolean isMetadataRuleExecutorCache(InMemoryCacheController controller) {
            return CACHE_ID.equals(controller.getCacheId());
        }
    
        private static Transformer<Object, ModuleComponentResolveMetadata> getKeyToSnapshotableTransformer() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskActionIntegrationTest.groovy

                task first {
                    outputs.file file("first.txt")
                    outputs.cacheIf { true }
                    doFirst {
                        file("first.txt").text = "Hello from the first task"
                    }
                }
    
                task second {
                    outputs.file file("second.txt")
                    outputs.cacheIf { true }
                    doFirst {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/storage_factory.go

    			Indexers:       indexers,
    			Codec:          storageConfig.Codec,
    		}
    		cacher, err := cacherstorage.NewCacherFromConfig(cacherConfig)
    		if err != nil {
    			return nil, func() {}, err
    		}
    		var once sync.Once
    		destroyFunc := func() {
    			once.Do(func() {
    				cacher.Stop()
    				d()
    			})
    		}
    
    		return cacher, destroyFunc, nil
    	}
    }
    
    func objectTypeToArgs(obj runtime.Object) []interface{} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/DefaultImmutableCapability.java

            //    using a 2-level map (by group, then by name)
            //    using an interned string for the cachedId (interning turned out to cost as much as what we gain from faster checks in maps)
            //
            // And none of them reached the performance of just using a good old string
            this.cachedId = group + ":" + name;
        }
    
        private int computeHashcode(String group, String name, @Nullable String version) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top