Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for AGGREGATING (0.18 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

                MavenSession session,
                boolean aggregating,
                Set<Artifact> projectArtifacts)
                throws LifecycleExecutionException {
    
            Set<Artifact> resolvedArtifacts = resolveProjectArtifacts(
                    project, scopesToCollect, scopesToResolve, session, aggregating, projectArtifacts);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/AggregatingIncrementalAnnotationProcessingIntegrationTest.groovy

            !file("build/classes/java/main/A.txt").exists()
        }
    
        def "an isolating processor is also a valid aggregating processor"() {
            given:
            withProcessor(new HelperProcessorFixture().withDeclaredType(IncrementalAnnotationProcessorType.AGGREGATING))
            java "@Helper class A {}"
    
            expect:
            succeeds "compileJava"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 29 15:12:07 UTC 2023
    - 18.5K 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/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysis.java

        }
    
        /**
         * Returns the types that need to be reprocessed based on which classes are due to be recompiled. This includes:
         *
         * - types which are annotated with aggregating annotations, as aggregating processors need to see them regardless of what has changed
         * - the originating types of generated classes that need to be recompiled, since they wouldn't exist if the originating type is not reprocessed
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/build.gradle

                }
            }
            jvmMultiProjectWithCodeCoverageDistribution {
                sampleDirectory = samplesRoot.dir("incubating/java/jvm-multi-project-with-code-coverage-distribution")
                displayName = "Aggregating code coverage with JaCoCo from an application/distribution (Incubating)"
                description = "Report code coverage on the application/distribution of a multi-module project using link:https://www.jacoco.org/jacoco/[JaCoCo]."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    When a source file is deleted, the files generated from it are deleted.
    
    === "Aggregating" annotation processors
    
    These can aggregate several source files into one or more output files or validation messages.
    For instance, a `ServiceRegistryProcessor` could create a single `ServiceRegistry` with one method for each type annotated with `@Service`.
    
    === Example: An aggregating annotation processor
    
    [source,java,indent=0]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesTest.groovy

            'existing' | 'existingValue' | 'existingValue' | true
            'existing' | 'someValue'     | 'existingValue' | false
            'missing'  | 'someValue'     | null            | false
        }
    
        def "aggregating method #methodName reports all properties as inputs"() {
            when:
            operation.accept(getMapUnderTestToRead())
    
            then:
            (1.._) * onAccess.accept('existing', 'existingValue')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/AbstractInstrumentationProcessor.java

        protected abstract Collection<InstrumentationProcessorExtension> getExtensions();
    
        @Override
        public Set<String> getSupportedOptions() {
            return new HashSet<>(Arrays.asList("org.gradle.annotation.processing.aggregating", PROJECT_NAME_OPTIONS));
        }
    
        @Override
        public Set<String> getSupportedAnnotationTypes() {
            return getSupportedAnnotations().stream().map(Class::getName).collect(Collectors.toSet());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

            return pluginManager.getMojoDescriptor(
                    plugin, goal, project.getRemotePluginRepositories(), session.getRepositorySession());
        }
    
        // TODO take repo mans into account as one may be aggregating prefixes of many
        // TODO collect at the root of the repository, read the one at the root, and fetch remote if something is missing
        // or the user forces the issue
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/AbstractRecompilationSpecProvider.java

                    // package-info classes cannot be passed as classes to reprocess to the Java compiler.
                    // Therefore, we need to recompile them every time anything changes if they are processed by an aggregating annotation processor.
                    spec.addClassToCompile(typeToReprocess);
                    spec.addSourcePaths(sourceFileClassNameConverter.getRelativeSourcePaths(typeToReprocess));
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top