Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 118 for processArgs (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/SuiteTestClassProcessor.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing;
    
    import org.gradle.api.internal.tasks.testing.processors.CaptureTestOutputTestResultProcessor;
    import org.gradle.api.internal.tasks.testing.redirector.JULRedirector;
    import org.gradle.api.internal.tasks.testing.results.AttachParentTestResultProcessor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/processors/TestMainAction.java

     * 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.DefaultTestSuiteDescriptor;
    import org.gradle.api.internal.tasks.testing.TestClassProcessor;
    import org.gradle.api.internal.tasks.testing.TestCompleteEvent;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSet.java

         *
         * @param classpath The classpath. Should not be null.
         */
        void setCompileClasspath(FileCollection classpath);
    
        /**
         * Returns the classpath used to load annotation processors when compiling this source set.
         * This path is also used for annotation processor discovery. The classpath can be empty,
         * which means use the compile classpath; if you want to disable annotation processing,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  7. 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)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/UnknownIncrementalAnnotationProcessingIntegrationTest.groovy

            a.text = "@Thing class A { public void foo() {} }"
            run "compileJava"
    
            then:
            outputs.recompiledClasses("A", "AThing", "B")
        }
    
        def "the user is informed about non-incremental processors"() {
            def a = java "@Thing class A {}"
    
            when:
            run "compileJava"
            a.text = "@Thing class A { public void foo() {} }"
            run "compileJava", "--info"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/processors/CaptureTestOutputTestResultProcessor.java

     * 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.TestCompleteEvent;
    import org.gradle.api.internal.tasks.testing.TestDescriptorInternal;
    import org.gradle.api.internal.tasks.testing.TestResultProcessor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/CaptureTestOutputTestResultProcessorTest.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.*
    import org.gradle.api.internal.tasks.testing.redirector.TestOutputRedirector
    import spock.lang.Specification
    import spock.lang.Subject
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top