Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,044 for STARTED (0.19 sec)

  1. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/CaptureTestOutputTestResultProcessorTest.groovy

            def testEvent = new TestStartEvent(2, "1")
    
            processor.started(new DefaultTestSuiteDescriptor("1", "Foo"), new TestStartEvent(1))
    
            when: processor.started(test, testEvent)
    
            then:
            1 * target.started(test, testEvent)
            1 * redirector.setOutputOwner("2")
            0 * _
        }
    
        def "when test completes its parent will be the owner of output"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkQueueIntegrationTest.groovy

                }
            """
    
            def started = blockingHttpServer.expectConcurrentAndBlock("item1", "item2", "item3", "submitted")
            def finished = blockingHttpServer.expectConcurrentAndBlock("finished")
    
            when:
            def gradle = executer.withTasks("runWork").start()
    
            then:
            started.waitForAllPendingCalls()
    
            then:
            started.release("submitted")
            started.release("item1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationFixture.groovy

                return op.detailsType == detailsClass.name && op.details.subMap(details.keySet()) == details
            }
            return found
        }
    
        void started(Class<?> type, Predicate<? super Map<String, ?>> payloadTest) {
            has(true, type, payloadTest)
        }
    
        void started(Class<?> type, Map<String, ?> payload = null) {
            has(true, type, (Map) payload)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 20 11:47:00 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  4. src/runtime/testdata/testprogcgo/bindm.go

    var (
    	mutex      = sync.Mutex{}
    	cThreadToM = map[uintptr]uintptr{}
    	started    = atomic.Uint32{}
    )
    
    // same as CTHREADS in C, make sure all the C threads are actually started.
    const cThreadNum = 2
    
    func init() {
    	register("EnsureBindM", EnsureBindM)
    }
    
    //export GoCheckBindM
    func GoCheckBindM(thread uintptr) {
    	// Wait all threads start
    	if started.Load() != cThreadNum {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/AbstractTestLoggerTest.groovy

            when:
            logger.logEvent(rootDescriptor, TestLogEvent.STARTED)
    
            then:
            textOutputFactory.toString() == "{TestEventLogger}{INFO}${sep}Test Run STARTED${sep}"
        }
    
        def "log Gradle worker event"() {
            createLogger(LogLevel.INFO)
    
            when:
            logger.logEvent(workerDescriptor, TestLogEvent.STARTED)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/DefaultLoggingManager.java

            if (stdoutListeners.add(listener) && started) {
                loggingOutput.addStandardOutputListener(listener);
            }
        }
    
        @Override
        public void addStandardErrorListener(StandardOutputListener listener) {
            if (stderrListeners.add(listener) && started) {
                loggingOutput.addStandardErrorListener(listener);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonTcpServerConnector.java

            try {
                if (stopped) {
                    throw new IllegalStateException("server connector cannot be started as it is either stopping or has been stopped");
                }
                if (started) {
                    throw new IllegalStateException("server connector cannot be started as it has already been started");
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonReuseIntegrationTest.groovy

                    doLast {
                        new URL("${getUrl('started')}").text
                        new URL("${getUrl('block')}").text
                    }
                }
            """
    
            given:
            executer.beforeExecute {
                executer.withStackTraceChecksDisabled()
            }
            expectEvent("started")
            expectEvent("block")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/ClientBuildEventGeneratorTest.groovy

            def generator = new ClientBuildEventGenerator(consumer, subscriptions, [mapper], fallback)
    
            when:
            generator.started(operation, startEvent)
    
            then:
            1 * tracker1.started(operation, startEvent)
            1 * tracker2.started(operation, startEvent)
            1 * tracker3.started(operation, startEvent)
            0 * tracker1._
            0 * tracker2._
            0 * tracker3._
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/TestWorkerProgressListenerTest.groovy

            def testDescriptor1 = createTestDescriptor(testEvent1)
            def testDescriptor2 = createTestDescriptor(testEvent2)
    
            when:
            testWorkerProgressListener.started(testDescriptor1, createTestStartEvent())
            testWorkerProgressListener.started(testDescriptor2, createTestStartEvent())
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top