Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for newClassCache (0.22 sec)

  1. subprojects/core/src/main/java/org/gradle/cache/internal/DefaultCrossBuildInMemoryCacheFactory.java

            listenerManager.addListener(cache);
            return cache;
        }
    
        @Override
        public <V> CrossBuildInMemoryCache<Class<?>, V> newClassCache() {
            // Should use some variation of DefaultClassMap below to associate values with classes, as currently we retain a strong reference to each value for one session after the ClassLoader
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 11 20:23:28 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/DefaultTypeMetadataStore.java

            this.displayName = calculateDisplayName(propertyAnnotationHandlers);
            this.propertyTypeResolver = propertyTypeResolver;
            this.cache = cacheFactory.newClassCache();
            this.missingPropertyAnnotationHandler = missingPropertyAnnotationHandler;
        }
    
        private static String calculateDisplayName(Collection<? extends PropertyAnnotationHandler> annotationHandlers) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStore.java

            CrossBuildInMemoryCache<Class<?>, TypeAnnotationMetadata> result = cacheFactory.newClassCache();
            for (Class<?> ignoredSuperType : ignoredSuperTypes) {
                result.put(ignoredSuperType, EMPTY_TYPE_ANNOTATION_METADATA);
            }
            return result;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 37.6K bytes
    - Viewed (0)
Back to top