Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 719 for finishedAt (0.28 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r86/StreamingBuildActionCrossVersionTest.groovy

            when:
            def models = new CopyOnWriteArrayList<Object>()
            def finished = new CountDownLatch(1)
            def listener = { model -> models.add(model) } as StreamedValueListener
            def handler = { model ->
                models.add(model)
                finished.countDown()
            } as ResultHandler
    
            withConnection {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 03:20:59 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DaemonStopClientTest.groovy

            1 * connection.dispatch({it instanceof Finished})
            1 * connection.stop()
    
            and:
            1 * connector.maybeConnect(daemon2) >>> connection
            _ * connection.daemon >> daemon2
            1 * connection.dispatch({it instanceof StopWhenIdle})
            1 * connection.receive() >> new Success(null)
            1 * connection.dispatch({it instanceof Finished})
            1 * connection.stop()
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/configuration/project/DelayedConfigurationActionsTest.groovy

        def "runs actions and discards actions when finished"() {
            def action1 = Mock(Action)
            def action2 = Mock(Action)
    
            given:
            container.actions >> [action1, action2]
    
            when:
            action.execute(project)
    
            then:
            1 * action1.execute(project)
            1 * action2.execute(project)
    
            and:
            1 * container.finished()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 22:54:35 UTC 2013
    - 1.9K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ConcurrentToolingApiIntegrationSpec.groovy

            buildFile << "apply plugin: 'java'"
    
            when:
            threads.times {
                concurrent.start { useToolingApi(toolingApi) }
            }
    
            then:
            concurrent.finished()
        }
    
        def "handles different target gradle versions concurrently"() {
            given:
            def last = new ReleasedVersionDistributions().getMostRecentRelease()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

        ) {
          lock.assertNotHeld()
    
          var remainingByteCount = byteCount
    
          while (remainingByteCount > 0L) {
            val finished: Boolean
            val flowControlError: Boolean
            ******@****.***ck {
              finished = this.finished
              flowControlError = remainingByteCount + readBuffer.size > maxByteCount
            }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationListener.java

     * However, a finished signal must not be emitted before the signal of the
     * corresponding started event has returned.
     *
     * Implementations may retain the notification values beyond the method that passed them.
     * Started notifications maybe held until a corresponding finished notification, and slightly after.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/concurrent/TaskRunnerTest.kt

          "FINE: Q10000 run again after  50 µs: task",
          "FINE: Q10000 finished run in   0 µs: task",
          "FINE: Q10000 starting              : task",
          "FINE: Q10000 run again after 150 µs: task",
          "FINE: Q10000 finished run in   0 µs: task",
          "FINE: Q10000 starting              : task",
          "FINE: Q10000 finished run in   0 µs: task",
        )
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleHandle.java

         */
        GradleHandle abort();
    
        /**
         * Cancel a build that was started as a cancellable build by closing stdin.  Does not block until the build has finished.
         */
        GradleHandle cancel();
    
        /**
         * Cancel a build that was started as a cancellable build by sending EOT (ctrl-d).  Does not block until the build has finished.
         */
        GradleHandle cancelWithEOT();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

            runs.times {
                barrier.expectConcurrent("child-build-started", "1-started", "2-started")
                barrier.expectConcurrent("child-build-finished", "1-finished", "2-finished")
            }
    
            when:
            runs.times {
                executer.withArgument("--parallel")
                run 'otherBuild'
            }
    
            then:
            noExceptionThrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationBridge.java

            @Override
            public void finished(BuildOperationDescriptor buildOperation, OperationFinishEvent finishEvent) {
                OperationIdentifier id = buildOperation.getId();
                OperationIdentifier parentId = parents.remove(id);
                if (active.remove(id) == null) {
                    return;
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top