Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 403 for finishes (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. subprojects/build-events/src/main/java/org/gradle/build/event/BuildEventsListenerRegistry.java

         * task execution and other work, so event handling does not block task execution. This means that a task finish event is delivered to the listener some time "soon" after the task
         * has completed. The events contain timestamps to allow you collect timing information.
         * </p>
         *
         * <p>The listener is automatically unsubscribed when the build finishes.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 30 09:10:51 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/ByteOutput.java

        /**
         * Returns the number of byte written since {@link #start(long)} was called.
         */
        public long getBytesWritten() {
            return countingOutputStream.getCount();
        }
    
        /**
         * Finishes writing, flushing and resetting any buffered state
         */
        public void done() throws IOException {
            countingOutputStream.flush();
            countingOutputStream = null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationContext.java

         *
         * @param failure Can be null, in which case this method does nothing.
         */
        void failed(@Nullable Throwable failure);
    
        /**
         * Finishes the build operation which should only be done once.
         */
        void setResult(@Nullable Object result);
    
        /**
         * Record a status or outcome for given build operation.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/ByteInput.java

        }
    
        /**
         * Returns the number of bytes read since {@link #start(long)} was called.
         */
        public long getBytesRead() {
            return countingInputStream.getCount();
        }
    
        /**
         * Finishes reading, resetting any buffered state.
         */
        public void done() {
            countingInputStream = null;
        }
    
        private static class ResettableBufferedInputStream extends BufferedInputStream {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherRegistry.java

        /**
         * Updates the VFS and the watchers before the build finishes.
         *
         * For example, this removes everything from the root which can't be kept after the current build finished.
         * This is anything which is not within a watchable hierarchy or in a cache directory.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top