Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 118 for processArgs (0.29 sec)

  1. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/MaxNParallelTestClassProcessorTest.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.TestClassRunInfo
    import org.gradle.api.internal.tasks.testing.TestResultProcessor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/IsolatingIncrementalAnnotationProcessingIntegrationTest.groovy

            file("build/classes/java/main/AHelperResource.txt").delete()
            run "compileJava"
    
            then:
            outputs.recompiledFiles('A', "AHelper", "AHelperResource.txt", "Unrelated")
        }
    
        def "processors must provide an originating element for each source element"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/RestartEveryNTestClassProcessorTest.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.TestClassRunInfo
    import org.gradle.api.internal.tasks.testing.TestResultProcessor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/processors/PatternMatchTestClassProcessor.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.TestClassProcessor;
    import org.gradle.api.internal.tasks.testing.TestClassRunInfo;
    import org.gradle.api.internal.tasks.testing.TestResultProcessor;
    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. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelInterpolator.java

            List<InterpolationPostProcessor> processors = new ArrayList<>(2);
            if (projectDir != null) {
                processors.add(new PathTranslatingPostProcessor(
                        getProjectPrefixes(request), TRANSLATED_PATH_EXPRESSIONS, projectDir, pathTranslator));
            }
            processors.add(new UrlNormalizingPostProcessor(urlNormalizer));
            return processors;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/NonIncrementalProcessor.java

     * Any use of such a processor will result in full recompilation.
     * As opposed to the other processor implementations, this one will not
     * decorate the processing environment, because there are some processors
     * that cast it to its implementation type, e.g. JavacProcessingEnvironment.
     */
    public class NonIncrementalProcessor extends DelegatingProcessor {
    
        private final NonIncrementalProcessingStrategy strategy;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/filter/AnnotationProcessorFilter.java

        public static FilteringClassLoader getFilteredClassLoader(ClassLoader parent) {
            return new FilteringClassLoader(parent, getExtraAllowedPackages());
        }
    
        /**
         * Many popular annotation processors like lombok need access to compiler internals
         * to do their magic, e.g. to inspect or even change method bodies. This is not valid
         * according to the annotation processing spec, but forbidding it would upset a lot of
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/AnnotationProcessorDeclaration.java

    /**
     * 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;
        private final IncrementalAnnotationProcessorType type;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/IncrementalResultStoringCompiler.java

            return merged;
        }
    
        private AnnotationProcessingData getAnnotationProcessingData(JavaCompileSpec spec, WorkResult result) {
            Set<AnnotationProcessorDeclaration> processors = spec.getEffectiveAnnotationProcessors();
            if (processors.isEmpty()) {
                return new AnnotationProcessingData();
            }
            AnnotationProcessingData previousAnnotationProcessingData = null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top