Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 334 for processJob (0.19 sec)

  1. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/results/AttachParentTestResultProcessor.java

    public class AttachParentTestResultProcessor implements TestResultProcessor {
        private Object rootId;
        private final TestResultProcessor processor;
    
        public AttachParentTestResultProcessor(TestResultProcessor processor) {
            this.processor = processor;
        }
    
        @Override
        public void started(TestDescriptorInternal test, TestStartEvent event) {
            if (rootId == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/redirector/TestOutputRedirector.java

        static class Forwarder implements StandardOutputRedirector.OutputListener {
            final TestResultProcessor processor;
            final TestOutputEvent.Destination dest;
            Object outputOwner;
    
            public Forwarder(TestResultProcessor processor, TestOutputEvent.Destination dest) {
                this.processor = processor;
                this.dest = dest;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/TestClassProcessor.java

    import org.gradle.internal.concurrent.Stoppable;
    
    /**
     * A processor for executing tests. Implementations are not required to be thread-safe.
     */
    public interface TestClassProcessor extends Stoppable {
        /**
         * Performs any initialisation which this processor needs to perform.
         *
         * @param resultProcessor The processor to send results to during test execution.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestScraper.java

        private StringBuilder textBuilder = new StringBuilder();
    
        XCTestScraper(TestOutputEvent.Destination destination, TestResultProcessor processor, IdGenerator<?> idGenerator, Clock clock, String rootTestSuiteId, Deque<XCTestDescriptor> testDescriptors) {
            this.processor = processor;
            this.destination = destination;
            this.idGenerator = idGenerator;
            this.clock = clock;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/FirNonStaticMembersScope.kt

        override fun processDeclaredConstructors(processor: (FirConstructorSymbol) -> Unit) {
            delegate.processDeclaredConstructors(processor)
        }
    
        override fun getClassifierNames(): Set<Name> = delegate.getClassifierNames()
    
        override fun processClassifiersByNameWithSubstitution(name: Name, processor: (FirClassifierSymbol<*>, ConeSubstitutor) -> Unit) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 10 13:38:00 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/AnnotationProcessorFixture.groovy

    /**
     * Base class for all annotation processor test fixtures. Each processor listens to a single annotation.
     * It provides the basic scaffolding, like fields for the filer, element utils and messager as well as
     * finding the annotated elements. Subclasses only need to provide the processing logic given those elements.
     *
     * The declared type of the processor can be overwritten to test various error cases, e.g. a processor that
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 29 15:12:07 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/integTest/groovy/org/gradle/integtests/ScalaAnnotationProcessingIntegrationTest.groovy

            skipped(':compileJava')
            executedAndNotSkipped(':compileScala')
            new File(testDirectory, 'generated.txt').exists()
        }
    
        def "processes annotation for Java class with processor option if annotation processor is available on processor path"() {
            when:
            AnnotationProcessorPublisher annotationProcessorPublisher = new AnnotationProcessorPublisher()
            annotationProcessorPublisher.writeSourceFiles()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. 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)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompileJavaBuildOperationType.java

            /**
             * Details about an annotation processor used during compilation.
             */
            interface AnnotationProcessorDetails {
    
                /**
                 * Returns the fully-qualified class name of this annotation processor.
                 */
                String getClassName();
    
                /**
                 * Returns the type of this annotation processor.
                 */
                Type getType();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. 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)
Back to top