Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 343 for finishedAt (0.28 sec)

  1. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Finished.java

     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.protocol;
    
    /**
     * Sent from the daemon client to the daemon to indicate it has finished with the connection. This is the last
     * message sent from the client to the daemon.
     */
    public class Finished extends Message {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 871 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. subprojects/core/src/integTest/groovy/org/gradle/api/GradlePluginIntegrationTest.groovy

                    aGradle.buildFinished {
                        println "Gradle Plugin received build finished!"
                    }
                }
            }
            """
            then:
            def executed = succeeds('tasks')
            executed.output.contains("Gradle Plugin received build finished!")
        }
    
        @ToBeFixedForConfigurationCache(because = "Gradle.buildFinished")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 18 22:31:11 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  4. 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)
  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. 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)
  7. subprojects/core/src/test/groovy/org/gradle/execution/DefaultCancellableOperationManagerTest.groovy

                        instant.cancelled
                    }
                    thread.blockUntil.cancelled
                }
                instant.finished
            }
    
            thread.blockUntil.started
            writeEnd.close()
            thread.blockUntil.finished
    
            then:
            cancellationToken.isCancellationRequested()
            executorService.shutdownNow().empty
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 07 08:18:46 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  8. 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)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/task/TaskFinishEvent.java

    import org.gradle.tooling.events.FinishEvent;
    
    /**
     * An event that informs about a task having finished its execution. You can query the result of the task using {@link #getResult()}.
     *
     * @since 2.5
     */
    public interface TaskFinishEvent extends TaskProgressEvent, FinishEvent {
    
        /**
         * Returns the result of the finished task operation. Currently, the result will be one of the following sub-types:
         *
         * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkQueueIntegrationTest.groovy

                        workQueue1.await()
    
                        signal("finished")
                    }
                }
            """
    
            def started = blockingHttpServer.expectConcurrentAndBlock("item1", "item2", "item3", "submitted")
            def finished = blockingHttpServer.expectConcurrentAndBlock("finished")
    
            when:
            def gradle = executer.withTasks("runWork").start()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top