Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 387 for Processors (0.19 sec)

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

    import java.util.stream.Collectors;
    
    import static org.gradle.api.internal.tasks.compile.incremental.processing.IncrementalAnnotationProcessorType.AGGREGATING;
    
    /**
     * The strategy used for aggregating annotation processors.
     * @see AggregatingProcessor
     */
    class AggregatingProcessingStrategy extends IncrementalProcessingStrategy {
    
        AggregatingProcessingStrategy(AnnotationProcessorResult result) {
            super(result);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 29 15:12:07 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompilationClassBackupService.java

     *
     * This service is called by compiler through Compiler API.
     *
     * We don't backup classes/resources generated by annotation processors, since any overwriting of existing generated types
     * that were not deleted by Gradle before annotation processing, would anyway result in full-recompilation, due to annotation processors limitations.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationQueueTest.groovy

            0    | 4
            0    | 10
            1    | 1
            1    | 4
            1    | 10
            5    | 1
            5    | 4
            5    | 10
        }
    
        def "does not submit more work processors than #threads threads"() {
            given:
            setupQueue(threads)
            lease.leaseFinish() // Release worker lease to allow operation to run, when there is max 1 worker thread
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/NonIncrementalProcessor.java

    import javax.annotation.processing.Processor;
    import javax.annotation.processing.RoundEnvironment;
    import javax.lang.model.element.TypeElement;
    import java.util.Set;
    
    /**
     * An annotation processor that did not opt into incremental processing.
     * Any use of such a processor will result in full recompilation.
     * As opposed to the other processor implementations, this one will not
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/RunPreviousFailedFirstTestClassProcessorTest.groovy

        RunPreviousFailedFirstTestClassProcessor processor
    
        def 'previous failed test classes should be passed to delegate first'() {
            given:
            processor = new RunPreviousFailedFirstTestClassProcessor(['Class3'] as Set, delegate)
    
            when:
            processor.startProcessing(testResultProcessor)
            ['Class1', 'Class2', 'Class3'].each { processor.processTestClass(new DefaultTestClassRunInfo(it)) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/AnnotationProcessorDeclaration.java

    import java.io.Serializable;
    
    /**
     * Information about an annotation processor, based on its static metadata
     * in <code>META-INF/services/javax.annotation.processing.Processor</code> and
     * <code>META-INF/gradle/incremental.annotation.processors</code>
     */
    public class AnnotationProcessorDeclaration implements Serializable {
        private final String className;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/processing/IncrementalAnnotationProcessorType.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.compile.incremental.processing;
    
    import java.util.Locale;
    
    /**
     * The different kinds of annotation processors that the incremental compiler knows how to handle.
     * See the user guide chapter on incremental annotation processing for more information.
     */
    public enum IncrementalAnnotationProcessorType {
        ISOLATING,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/processors/RestartEveryNTestClassProcessor.java

            }
    
            if (processor == null) {
                processor = factory.create();
                processor.startProcessing(resultProcessor);
            }
            processor.processTestClass(testClass);
            testCount++;
            if (testCount == restartEvery) {
                endBatch();
            }
        }
    
        @Override
        public void stop() {
            if (processor != null) {
                endBatch();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/DelegatingProcessor.java

    import javax.lang.model.element.TypeElement;
    import java.util.Set;
    
    /**
     * A simple base class for annotation processors that decorate another one.
     */
    abstract class DelegatingProcessor implements Processor {
        private final Processor delegate;
    
        DelegatingProcessor(Processor delegate) {
            this.delegate = delegate;
        }
    
        @Override
        public Set<String> getSupportedOptions() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. samples/open-telemetry/tracing/README.md

    Below is the configuration:
    
    ```yaml
    receivers:
      otlp:
        protocols:
          grpc:
          http:
    processors:
      batch:
    exporters:
      logging:
        loglevel: debug
    service:
      pipelines:
        logs:
          receivers: [otlp]
          processors: [batch]
          exporters: [logging]
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 16:38:12 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top