Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 61 for AGGREGATING (0.18 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/processing/AnnotationProcessingResult.java

        /**
         * Contains the types that aggregating annotation processors registered themselves for.
         * These types need to be reprocessed no matter what source changes are made to ensure that the generated types contain all relevant information.
         */
        public Set<String> getAggregatedTypes() {
            return aggregatedTypes;
        }
    
        /**
         * Contains the types that aggregating annotation processors generated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleTaskSegmentCalculator.java

                    boolean aggregating = mojoDescriptor.isAggregator() || !mojoDescriptor.isProjectRequired();
    
                    if (currentSegment == null || currentSegment.isAggregating() != aggregating) {
                        currentSegment = new TaskSegment(aggregating);
                        taskSegments.add(currentSegment);
                    }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

                }
            }
    
            doExecute(session, mojoExecution, dependencyContext);
        }
    
        /**
         * Aggregating mojo executions (possibly) modify all MavenProjects, including those that are currently in use
         * by concurrently running mojo executions. To prevent race conditions, an aggregating execution will block
         * all other executions until finished.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/internal-instrumentation-processor/src/main/resources/META-INF/gradle/incremental.annotation.processors

    org.gradle.internal.instrumentation.processor.ConfigurationCacheInstrumentationProcessor,aggregating...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 101 bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompileJavaBuildOperationReportingCompiler.java

                }
    
                private AnnotationProcessorDetails.Type toType(IncrementalAnnotationProcessorType type) {
                    if (type == IncrementalAnnotationProcessorType.AGGREGATING) {
                        return AnnotationProcessorDetails.Type.AGGREGATING;
                    }
                    if (type == IncrementalAnnotationProcessorType.ISOLATING) {
                        return AnnotationProcessorDetails.Type.ISOLATING;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:33:35 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDebugLogger.java

                logger.debug("Tasks:   " + projectBuild.getTaskSegment().getTasks());
                logger.debug("Style:   " + (projectBuild.getTaskSegment().isAggregating() ? "Aggregating" : "Regular"));
    
                if (it.hasNext()) {
                    logger.debug("-----------------------------------------------------------------------");
                }
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/AggregatingProcessorTest.groovy

        AggregatingProcessor processor = new AggregatingProcessor(delegate, processorResult)
    
        def "sets processor type"() {
            expect:
            processorResult.type == IncrementalAnnotationProcessorType.AGGREGATING
        }
    
        def "when delegate reacts to any class, all root elements are aggregated"() {
            given:
            delegate.getSupportedAnnotationTypes() >> ["*"]
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. pkg/config/doc.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Package config is a common, top-level folder for aggregating Istio-wide config related libraries and utilities.
    // More details can be found here: https://docs.google.com/document/d/1atY5vDHy5sXJP7qIaFQS3ixQZvOxUciPgULH5qTPX_8/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 832 bytes
    - Viewed (0)
  9. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingSetTest.groovy

            then:
            1 * listener.onAccess('missing')
            then:
            1 * listener.onRemove('missing')
            then:
            0 * listener._
        }
    
        def "method #methodName is reported as aggregating"() {
            when:
            operation.accept(set)
    
            then:
            (1.._) * listener.onAggregatingAccess()
            0 * listener._
    
            where:
            methodName            | operation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/processing/IncrementalAnnotationProcessorType.java

     * See the user guide chapter on incremental annotation processing for more information.
     */
    public enum IncrementalAnnotationProcessorType {
        ISOLATING,
        AGGREGATING,
        DYNAMIC,
        UNKNOWN;
    
        public String getProcessorOption() {
            return "org.gradle.annotation.processing." + name().toLowerCase(Locale.ROOT);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top