Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 116 for processDir (0.16 sec)

  1. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessorTest.groovy

            then: 1 * processor.started({ it.id == 2 && it.name == 'Gradle test' && it.className == null }, { it.parentId == 1 })
            then: 1 * processor.started({ it.id == 3 && it.name == 'ok' && it.className == ATestNGClass.name }, { it.parentId == 2 })
            then: 1 * processor.completed(3, { it.resultType == ResultType.SUCCESS })
            then: 1 * processor.completed(2, { it.resultType == null })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/AnnotationProcessingCompileTask.java

                    Processor processor = instantiateProcessor(processorClass);
                    supportedOptionsCollectingProcessor.addProcessor(processor);
                    processor = decorateForIncrementalProcessing(processor, declaredProcessor.getType(), processorResult);
                    processor = decorateForTimeTracking(processor, processorResult);
                    processors.add(processor);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:42:29 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/CaptureTestOutputTestResultProcessorTest.groovy

            def testEvent = new TestStartEvent(2, null)
            def complete = new TestCompleteEvent(1)
    
            processor.started(new DefaultTestSuiteDescriptor("1", "Foo"), new TestStartEvent(1))
            processor.started(test, testEvent)
            processor.completed("2", complete)
    
            when: processor.completed("1", complete)
    
            then:
            1 * redirector.stopRedirecting()
            1 * target.completed("1", complete)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/ConfigurationCacheInstrumentationProcessor.java

    import org.gradle.internal.instrumentation.processor.extensibility.CodeGeneratorContributor;
    import org.gradle.internal.instrumentation.processor.extensibility.InstrumentationProcessorExtension;
    import org.gradle.internal.instrumentation.processor.extensibility.ResourceGeneratorContributor;
    import org.gradle.internal.instrumentation.processor.features.withstaticreference.WithExtensionReferencesExtra;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:31:26 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/processors/CaptureTestOutputTestResultProcessor.java

        private final TestResultProcessor processor;
        private final TestOutputRedirector outputRedirector;
        private Object rootId;
        private Map<Object, Object> parents = new ConcurrentHashMap<Object, Object>();
    
        public CaptureTestOutputTestResultProcessor(TestResultProcessor processor, StandardOutputRedirector outputRedirector) {
            this(processor, new TestOutputRedirector(processor, outputRedirector));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/results/AttachParentTestResultProcessorTest.groovy

            TestDescriptorInternal other = suite('suite1')
            TestDescriptorInternal test = test('test')
    
            processor.started(root, new TestStartEvent(100L))
            processor.completed('root', new TestCompleteEvent(200L))
            processor.started(other, new TestStartEvent(200L))
    
            when:
            processor.started(test, new TestStartEvent(200L))
    
            then:
            1 * target.started(test, { it.parentId == 'suite1' })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/SuiteTestClassProcessorTest.groovy

        def firesSuiteStartEventOnStartProcessing() {
            when:
            processor.startProcessing(resultProcessor)
    
            then:
            1 * resultProcessor.started(suiteDescriptor, !null)
            1 * targetProcessor.startProcessing(!null) >> { args ->
                def processor = args[0]
                processor instanceof AttachParentTestResultProcessor && args[0].processor == resultProcessor
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top