Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 342 for finishes (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/jansi/JansiBootPathConfigurer.java

         * The copy operation happens only once. Sets the Jansi-related system property.
         *
         * This hackery is to prevent Jansi from creating a shared lib in a tmp dir which is deleted when
         * the Java process finishes. To avoid performance impacts caused by Jansi's default behavior the
         * library is proactively extracted into a known directory and reused by subsequent invocations.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part2_gradle_tasks.adoc

    Double-click **tutorial > app > build > build**.
    
    image::tutorial/intellij-idea-build.png[]
    
    Once the build finishes, make sure it is successful in the IntelliJ console:
    [source,text]
    ----
    BUILD SUCCESSFUL in 966ms
    7 actionable tasks: 7 executed
    3:18:24 AM: Execution finished 'build'.
    ----
    
    == Step 6. Running Tasks in the Terminal
    Run the following command in your terminal:
    [source,text]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 14:26:07 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParallelBuildOperationsIntegrationTest.groovy

                    doLast {
                        submitWorkItem("workTask")
                    }
                }
    
                // Wait for dependent task, to ensure that work task finishes first
                slowTask.doLast {
                    ${blockingHttpServer.callFromBuild("slowTask2")}
                }
    
                project(':childProject') {
                    task dependsOnWorkTask(type: MultipleWorkItemTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top