Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 464 for finishes (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. docs/en/docs/advanced/events.md

    Because this code is executed before the application **starts** taking requests, and right after it **finishes** handling requests, it covers the whole application **lifespan** (the word "lifespan" will be important in a second 😉).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. pkg/zdsapi/zds.proto

    - will send all the existing payloads (that it has in its cache) to the ztunnel using AddWorkload message.
    - the ztunnel will send an ack for each payload (which the CNI will wait for before sending the next one).
    - when the CNI finishes sending the content of its current cache, a SnapshotSent message will be sent.
    - the ztunnel will then remove any entries from its cache that were not sent up to this point (as these entries do not exist in the CNI
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top