Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for finishing (0.13 sec)

  1. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationListener.java

     * Implementations must take care to be threadsafe.
     *
     * Related signals are guaranteed to be serialized.
     * That is, a listener will not concurrently be notified of the same operation starting and finishing.
     *
     * @since 3.5
     */
    @EventScope(Global.class)
    public interface BuildOperationListener {
    
        void started(BuildOperationDescriptor buildOperation, OperationStartEvent startEvent);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/operations/DefaultBuildOperationQueue.java

    import java.util.concurrent.locks.ReentrantLock;
    
    class DefaultBuildOperationQueue<T extends BuildOperation> implements BuildOperationQueue<T> {
        private enum QueueState {
            Working, Finishing, Cancelled, Done
        }
    
        private final boolean allowAccessToProjectState;
        private final WorkerLeaseService workerLeases;
        private final Executor executor;
        private final QueueWorker<T> queueWorker;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 31 15:18:20 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/util/concurrent/testing/AbstractListenableFutureTest.java

        exec.awaitTermination(100, MILLISECONDS);
      }
    
      /**
       * Tests that all listeners complete, even if they were added before or after the future was
       * finishing. Also acts as a concurrency test to make sure the locking is done correctly when a
       * future is finishing so that no listeners can be lost.
       */
      public void testAllListenersCompleteSuccessfully()
          throws InterruptedException, ExecutionException {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 18:30:30 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/logging/DaemonMessages.java

        public final static String STARTED_EXECUTING_COMMAND = "Starting executing command: ";
        public final static String FINISHED_EXECUTING_COMMAND = "Finishing executing command: ";
        public final static String STARTED_BUILD = "The daemon has started executing the build.";
        public final static String FINISHED_BUILD = "The daemon has finished executing the build.";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/scan/eob/BuildScanEndOfBuildNotifier.java

     * limitations under the License.
     */
    
    package org.gradle.internal.scan.eob;
    
    import javax.annotation.Nullable;
    
    /**
     * Used by the scan plugin to register a listener to be notified about the build finishing.
     */
    public interface BuildScanEndOfBuildNotifier {
    
        interface BuildResult {
            @Nullable
            Throwable getFailure();
        }
    
        interface BuildScanResult {
    
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeFinishExecutor.java

         *
         * @param failures The failures to report to the build finished hooks.
         * @return The exception to throw, packages up the given failures plus any failures finishing the build.
         */
        @Nullable
        RuntimeException finishBuildTree(List<Throwable> failures);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 22 06:21:00 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/util/concurrent/testing/AbstractListenableFutureTest.java

        exec.awaitTermination(100, MILLISECONDS);
      }
    
      /**
       * Tests that all listeners complete, even if they were added before or after the future was
       * finishing. Also acts as a concurrency test to make sure the locking is done correctly when a
       * future is finishing so that no listeners can be lost.
       */
      public void testAllListenersCompleteSuccessfully()
          throws InterruptedException, ExecutionException {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 18:30:30 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/jvm/AbstractConsoleJvmTestLoggingFunctionalTest.groovy

                        logger.quiet 'Starting test: ' + descriptor.className + ' > ' + descriptor.name
                    }
                    afterTest { descriptor, result ->
                        logger.quiet 'Finishing test: ' + descriptor.className + ' > ' + descriptor.name
                    }
                }
            """
            file(JAVA_TEST_FILE_PATH) << javaTestClass { '' }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 14:21:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/GradleEnterprisePluginBackgroundJobExecutors.java

         * The jobs will be complete before {@link GradleEnterprisePluginEndOfBuildListener#buildFinished(GradleEnterprisePluginEndOfBuildListener.BuildResult)} is called.
         * <p>
         * The job may be rejected if the build is already finishing and the executor is being shut down.
         * In such a case a {@link RejectedExecutionException} is thrown from {@link Executor#execute(Runnable)}.
         * <p>
         * The job should not throw exceptions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/io/LineBuffer.java

      }
    
      /**
       * Subclasses must call this method after finishing character processing, in order to ensure that
       * any unterminated line in the buffer is passed to {@link #handleLine}.
       *
       * @throws IOException if an I/O error occurs
       */
      protected void finish() throws IOException {
        if (sawReturn || line.length() > 0) {
          finishLine(false);
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top