Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,006 for finishes (0.13 sec)

  1. guava/src/com/google/common/util/concurrent/TimeLimiter.java

       * is also performed for calls to {@link Object#equals}, {@link Object#hashCode}, and {@link
       * Object#toString}.
       *
       * <p>If the target method call finishes before the limit is reached, the return value or
       * exception is propagated to the caller exactly as-is. If, on the other hand, the time limit is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/util/ConcurrentSpecificationTest.groovy

        def "can check that an action blocks until an asynchronous action is finished"() {
            Runnable action = Mock()
            def operation = waitsForAsyncActionToComplete()
            def latch = new CountDownLatch(1)
    
            when:
            operation.start {
                start { action.run() }
                latch.await()
            }
            finished()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 07 08:18:50 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeLifecycleController.java

         */
        <T> T withEmptyBuild(Function<? super SettingsInternal, T> action);
    
        /**
         * Schedules the work graph for the tasks specified in the {@link org.gradle.StartParameter} associated with the build, runs the scheduled work and finishes up the build.
         * When this method returns, all user code will have completed, including 'build finished' hooks.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 02 00:39:25 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/TimeLimiter.java

       * is also performed for calls to {@link Object#equals}, {@link Object#hashCode}, and {@link
       * Object#toString}.
       *
       * <p>If the target method call finishes before the limit is reached, the return value or
       * exception is propagated to the caller exactly as-is. If, on the other hand, the time limit is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeFinishExecutor.java

    import javax.annotation.Nullable;
    import java.util.List;
    
    public interface BuildTreeFinishExecutor {
        /**
         * Finishes any work and runs any pending user clean up code such as build finished hooks, build service cleanup and so on.
         *
         * @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.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 22 06:21:00 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/integTest/groovy/org/gradle/internal/work/ProjectLockStatisticsIntegrationTest.groovy

    package org.gradle.internal.work
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    class ProjectLockStatisticsIntegrationTest extends AbstractIntegrationSpec {
        def "displays project lock statistics after build finishes"() {
            createDirs("child")
            settingsFile << """
                include ':child'
            """
            buildFile << """
                apply plugin: "java"
    
                task wait {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. docs/contribute/debug_logging.md

    ```
    
    ### Task Runner Logging 
    
    This logs task enqueues, starts, and finishes.
    
    ```
    [2020-01-01 00:00:00] Q10000 scheduled after   0 µs: OkHttp ConnectionPool
    [2020-01-01 00:00:00] Q10000 starting              : OkHttp ConnectionPool
    [2020-01-01 00:00:00] Q10000 run again after 300 s : OkHttp ConnectionPool
    [2020-01-01 00:00:00] Q10000 finished run in   1 ms: OkHttp ConnectionPool
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/ExecuteDeferredWorkProgressDetails.java

     * limitations under the License.
     */
    
    package org.gradle.operations.execution;
    
    import javax.annotation.Nullable;
    
    /**
     * Fired when a deferred work execution finishes.
     *
     * @since 8.7
     */
    public interface ExecuteDeferredWorkProgressDetails {
    
        /**
         * Type of work being executed.
         * <p>
         * @since 8.7
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 16:13:07 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ResolvedComponentVisitor.java

        /**
         * Visit variants of the component.
         */
        void visitComponentVariants(List<ResolvedVariantResult> allVariants);
    
        /**
         * Finishes visiting a component.
         */
        void endVisitComponent();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/transform/TransformOutputs.java

         *     }
         * }
         * </pre>
         *
         * <p>
         *     <strong>Note:</strong> it is an error if the registered directory does not exist when the {@link TransformAction#transform(TransformOutputs)} method finishes.
         * </p>
         *
         * @param path path of the output directory
         * @return determined location of the output
         */
        File dir(Object path);
    
        /**
         * Registers an output file.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 05 15:49:03 UTC 2019
    - 5.1K bytes
    - Viewed (0)
Back to top