Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 387 for Processors (0.42 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/AggregatingIncrementalAnnotationProcessingIntegrationTest.groovy

        }
    
        def "an isolating processor is also a valid aggregating processor"() {
            given:
            withProcessor(new HelperProcessorFixture().withDeclaredType(IncrementalAnnotationProcessorType.AGGREGATING))
            java "@Helper class A {}"
    
            expect:
            succeeds "compileJava"
        }
    
        def "processors can provide multiple originating elements"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 29 15:12:07 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/IncrementalFiler.java

    import javax.tools.FileObject;
    import javax.tools.JavaFileManager;
    import javax.tools.JavaFileObject;
    import java.io.IOException;
    
    /**
     * A decorator for the {@link Filer} which ensures that incremental
     * annotation processors don't break the incremental processing contract.
     */
    public class IncrementalFiler implements Filer {
        private final Filer delegate;
        private final IncrementalProcessingStrategy strategy;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/initialization/ParallelismConfigurationCommandLineConverterTest.groovy

            when:
            def result = convert("--max-workers", "$maxWorkerCount")
    
            then:
            result.maxWorkerCount == maxWorkerCount
        }
    
        def "converts empty arguments set max workers to number of processors"() {
            when:
            def result = convert()
    
            then:
            result.maxWorkerCount == Runtime.getRuntime().availableProcessors()
        }
    
        def "converts invalid max workers (#value)"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 07 06:09:06 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/IsolatingProcessingStrategy.java

    import javax.tools.JavaFileManager;
    import java.util.Set;
    
    import static org.gradle.api.internal.tasks.compile.incremental.processing.IncrementalAnnotationProcessorType.ISOLATING;
    
    /**
     * The strategy for isolating annotation processors.
     *
     * @see IsolatingProcessor
     */
    class IsolatingProcessingStrategy extends IncrementalProcessingStrategy {
    
        IsolatingProcessingStrategy(AnnotationProcessorResult result) {
            super(result);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompileOptions.java

         * <p>
         * Annotation processing of Groovy code works by having annotation processors visit the Java stubs generated by the
         * Groovy compiler in order to support joint compilation of Groovy and Java source.
         * <p>
         * When set to {@code true}, stubs will be unconditionally generated for all Groovy sources, and Java annotations processors will be executed on those stubs.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/AggregatingProcessorTest.groovy

        AnnotationProcessorResult processorResult = new AnnotationProcessorResult(result, "")
        Processor delegate = Stub(Processor)
        AggregatingProcessor processor = new AggregatingProcessor(delegate, processorResult)
    
        def "sets processor type"() {
            expect:
            processorResult.type == IncrementalAnnotationProcessorType.AGGREGATING
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. src/internal/trace/traceviewer/http.go

    </ul>
    {{end}}
    {{end}}
    <p>
      This view displays a series of timelines for a type of resource.
      The "by proc" view consists of a timeline for each of the GOMAXPROCS
      logical processors, showing which goroutine (if any) was running on that
      logical processor at each moment.
      The "by thread" view (if available) consists of a similar timeline for each
      OS thread.
    
      Each goroutine has an identifying number (e.g. G123), main function,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  8. ci/official/containers/linux_arm64/devel.usertools/repack_libtensorflow.sh

    # Helper function to copy a srcjar after moving any source files
    # directly under the root to the "maven-style" src/main/java layout
    #
    # Source files generated by annotation processors appear directly
    # under the root of srcjars jars created by bazel, rather than under
    # the maven-style src/main/java subdirectory.
    #
    # Bazel manages annotation generated source as follows: First, it
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. ci/official/utilities/repack_libtensorflow.sh

    # Helper function to copy a srcjar after moving any source files
    # directly under the root to the "maven-style" src/main/java layout
    #
    # Source files generated by annotation processors appear directly
    # under the root of srcjars jars created by bazel, rather than under
    # the maven-style src/main/java subdirectory.
    #
    # Bazel manages annotation generated source as follows: First, it
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 12 19:47:53 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    == Annotation processors and Kotlin
    
    The <<caching_java_projects.adoc#annotation_processors,advice above>> for pure Java projects also applies to Android projects.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top