Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,006 for finishes (0.52 sec)

  1. subprojects/core/src/main/java/org/gradle/util/internal/TreeVisitor.java

         */
        public void node(T node) {
        }
    
        /**
         * Starts visiting the children of the most recently visited node.
         */
        public void startChildren() {
        }
    
        /**
         * Finishes visiting the children of the most recently started node.
         */
        public void endChildren() {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:11 UTC 2021
    - 1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/cgo/internal/testcarchive/testdata/main5.c

    			if (verbose) {
    				printf("attempting external signal test\n");
    			}
    
    			fprintf(stderr, "OK\n");
    			fflush(stderr);
    
    			// The program should be interrupted before
    			// this sleep finishes. We use select rather
    			// than sleep because in older versions of
    			// glibc the sleep function does some signal
    			// fiddling to handle SIGCHLD.  If this
    			// program is fiddling signals just when the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 2K 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. pkg/controller/ttlafterfinished/ttlafterfinished_controller.go

    func jobFinishTime(finishedJob *batch.Job) (metav1.Time, error) {
    	for _, c := range finishedJob.Status.Conditions {
    		if (c.Type == batch.JobComplete || c.Type == batch.JobFailed) && c.Status == v1.ConditionTrue {
    			finishAt := c.LastTransitionTime
    			if finishAt.IsZero() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 23:59:28 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top