Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newClassCache (0.4 sec)

  1. 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)
  2. 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