Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 118 for processArgs (0.34 sec)

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

            return delegate.execute(spec);
        }
    
        /**
         * Scans the processor path for processor declarations. Filters them if the explicit <code>-processor</code> argument is given.
         * Treats explicit processors that didn't have a matching declaration on the path as non-incremental.
         */
        private Set<AnnotationProcessorDeclaration> getEffectiveAnnotationProcessors(JavaCompileSpec spec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/AggregatingIncrementalAnnotationProcessingIntegrationTest.groovy

            !file("build/generated/sources/annotationProcessor/java/main/ServiceRegistryResource.txt").exists()
    
            and:
            outputs.deletedClasses("ServiceRegistry")
        }
    
        def "processors can generate identical resources in different locations"() {
            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)
  3. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/TestMainActionTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.tasks.testing.processors
    
    import org.gradle.api.internal.tasks.testing.TestClassProcessor
    import org.gradle.api.internal.tasks.testing.TestResultProcessor
    import org.gradle.internal.time.Clock
    import org.gradle.internal.work.WorkerLeaseRegistry
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. 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.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/AggregatingProcessorTest.groovy

                }
            }
    
            when:
            processor.process(annotationTypes, roundEnvironment)
    
            then:
            result.getAggregatedTypes() == ["A", "C"] as Set
        }
    
        def "aggregating processors do not work with source retention annotations"() {
            given:
            def sourceRetentionAnnotation = annotation("Broken", RetentionPolicy.SOURCE)
    
            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)
  6. 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)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecatedFeatureUsage.java

         */
        @Nullable
        public String getAdvice() {
            return advice;
        }
    
        /**
         * Advice on what to do about the notice, specific to this usage.
         *
         * Example: Annotation processors Foo, Bar and Baz were found on the compile classpath.
         */
        @Nullable
        public String getContextualAdvice() {
            return contextualAdvice;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSetOutput.java

         *
         * @return a new instance of registered dirs with resolved files
         */
        FileCollection getDirs();
    
        /**
         * Returns the directories containing generated source files (e.g. by annotation processors during compilation).
         *
         * @return The generated sources directories. Never returns null.
         * @since 5.2
         */
        FileCollection getGeneratedSourcesDirs();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestExecuter.java

    import org.gradle.api.internal.tasks.testing.TestClassRunInfo;
    import org.gradle.api.internal.tasks.testing.TestExecuter;
    import org.gradle.api.internal.tasks.testing.TestResultProcessor;
    import org.gradle.api.internal.tasks.testing.processors.TestMainAction;
    import org.gradle.api.tasks.testing.TestOutputEvent;
    import org.gradle.internal.SystemProperties;
    import org.gradle.internal.id.IdGenerator;
    import org.gradle.internal.id.LongIdGenerator;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  10. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/worker/TestWorker.java

                        processor.stop();
                    } finally {
                        state = State.STOPPED;
                        // Clean the interrupted status
                        // because some test class processors do work here, e.g. JUnitPlatform
                        Thread.interrupted();
                    }
                }
            });
        }
    
        private synchronized void submitToRun(Runnable command) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top