Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getInstrumentedTypesHash (0.29 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/types/GradleCoreInstrumentationTypeRegistry.java

        }
    
        @Override
        public boolean isEmpty() {
            return instrumentedSuperTypes.get().isEmpty();
        }
    
        public Optional<HashCode> getInstrumentedTypesHash() {
            return instrumentedHashCode.get();
        }
    
        public Optional<HashCode> getUpgradedPropertiesHash() {
            return upgradedPropertiesHashCode.get();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:29:37 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentingClasspathFileTransformer.java

            Hasher hasher = Hashing.defaultFunction().newHasher();
            hasher.putInt(CACHE_FORMAT);
            hasher.putInt(AsmConstants.MAX_SUPPORTED_JAVA_VERSION);
            gradleCoreInstrumentationTypeRegistry.getInstrumentedTypesHash().ifPresent(hasher::putHash);
            gradleCoreInstrumentationTypeRegistry.getUpgradedPropertiesHash().ifPresent(hasher::putHash);
            classpathElementTransformFactory.applyConfigurationTo(hasher);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 13:36:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/classpath/transforms/ClasspathElementTransformTest.groovy

        def classpathWalker = new ClasspathWalker(TestFiles.fileSystem())
        def gradleCoreInstrumentingRegistry = Stub(GradleCoreInstrumentationTypeRegistry) {
            getInstrumentedTypesHash() >> Optional.empty()
            getUpgradedPropertiesHash() >> Optional.empty()
        }
    
        def "instrumentation for #factory preserves classes"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

            isAgentInstrumentationEnabled() >> false
        }
        def gradleCoreInstrumenting = Stub(GradleCoreInstrumentationTypeRegistry) {
            getInstrumentedTypesHash() >> Optional.empty()
            getUpgradedPropertiesHash() >> Optional.empty()
        }
        def classpathFingerprinter = Stub(ClasspathFingerprinter) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
Back to top