Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getInstrumentationTypeRegistry (0.18 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/MergeInstrumentationAnalysisTransform.java

        }
    
        private InstrumentationTypeRegistry getInstrumentationTypeRegistry() {
            long contextId = getParameters().getContextId().get();
            CacheInstrumentationDataBuildService buildService = getParameters().getBuildService().get();
            return buildService.getInstrumentationTypeRegistry(contextId);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/services/CacheInstrumentationDataBuildService.java

        public InstrumentationAnalysisSerializer getCachedInstrumentationAnalysisSerializer() {
            return serializer.get();
        }
    
        public InstrumentationTypeRegistry getInstrumentationTypeRegistry(long contextId) {
            InstrumentationTypeRegistry gradleCoreInstrumentationTypeRegistry = internalServices.get().getGradleCoreInstrumentationTypeRegistry();
            if (gradleCoreInstrumentationTypeRegistry.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top