Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 655 for finishedAt (0.25 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectStateRegistryTest.groovy

                        instant.mutating1
                        thread.blockUntil.finished1
                    }
                    state1.applyToMutableState { p ->
                        assert state1.hasMutableState()
                        instant.mutating2
                        thread.blockUntil.finished2
                    }
                }
                start {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGClassIntegrationTest.groovy

            containsEvent(FINISHED, DefaultTestMethodDescriptor, 'TestSuite > LightTest > org.company.SystemOutTest > testOut')
            containsEvent(FINISHED, DefaultTestClassDescriptor, 'TestSuite > LightTest > org.company.SystemOutTest')
            containsEvent(FINISHED, DefaultTestSuiteDescriptor, 'TestSuite > LightTest')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-operations/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationListenerManagerTest.groovy

                progress("2", id2),
                progress("3", id2),
    
                finished("3", id1),
                finished("2", id1),
                progress("1", id1),
                finished("1", id1),
    
                finished("3", id2),
                finished("2", id2),
                progress("1", id2),
                finished("1", id2)
            ]
        }
    
        BuildOperationListener recordingListener(String label) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationBridgeTest.groovy

            broadcast.finished(d5, new OperationFinishEvent(-1, -1, null, null))
            broadcast.finished(d4, new OperationFinishEvent(-1, -1, null, null))
    
            broadcast.finished(d2, new OperationFinishEvent(-1, -1, null, null))
            broadcast.finished(d1, new OperationFinishEvent(-1, -1, null, null))
    
            then:
            1 * listener.started(_) >> { BuildOperationStartedNotification n ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcEventsIntegrationTest.groovy

                gradle.buildFinished {
                    println "root build finished"
                    assert System.getProperty("buildsrc") == "done"
                }
            """
    
            when:
            run()
    
            then:
            output.indexOf("running tasks") < output.indexOf("buildSrc finished")
            output.indexOf("buildSrc finished") < output.indexOf("root build finished")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 13 02:04:27 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildEventsIntegrationTest.groovy

            then:
            outputContains("build A finished")
            outputContains("build B finished")
            outputContains("build C finished")
    
            events(13)
            loggedOncePerBuild("buildListener.buildFinished failure=null", [':buildB'])
            loggedOncePerBuild("gradle.buildFinished failure=null", [':buildB'])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 15:38:24 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/resources/DefaultResourceLockCoordinationServiceTest.groovy

                    return FINISHED
                }
            })
    
            then:
            disposition == expectedDisposition
    
            and:
            !lock1.lockedState
            !lock2.lockedState
    
            where:
            lock1Locked | lock2Locked | expectedDisposition
            true        | true        | FINISHED
            true        | false       | FINISHED
            false       | true        | FINISHED
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 17:16:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. tests/test_dependency_contextmanager.py

        assert middleware_state["context_b"] == "finished b with a: started a"
        assert middleware_state["context_a"] == "finished a"
        assert middleware_state["bg"] == "not set"
        assert state["context_b"] == "finished b with a: started a"
        assert state["context_a"] == "finished a"
        assert state["bg"] == "bg set - b: finished b with a: started a - a: finished a"
    
    
    def test_sync_raise_raises():
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/ClientBuildEventGeneratorTest.groovy

            0 * tracker1._
            0 * tracker2._
            0 * tracker3._
    
            when:
            generator.finished(operation, finishEvent)
    
            then:
            1 * tracker1.finished(operation, finishEvent)
            1 * tracker2.finished(operation, finishEvent)
            1 * tracker3.finished(operation, finishEvent)
    
            then:
            1 * tracker1.discardState(operation)
    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/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/DefaultUserInputReader.java

        private UserInput pending;
        private boolean finished;
    
        @Override
        public void startInput() {
            synchronized (lock) {
                pending = null;
                finished = false;
            }
        }
    
        @Override
        public void putInput(UserInput input) {
            synchronized (lock) {
                if (input == END_OF_INPUT) {
                    finished = true;
                    lock.notifyAll();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top