Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 403 for finishes (0.28 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/server/filters/waitgroup.go

    )
    
    // RequestWaitGroup helps with the accounting of request(s) that are in
    // flight: the caller is expected to invoke Add(1) before executing the
    // request handler and then invoke Done() when the handler finishes.
    // NOTE: implementations must ensure that it is thread-safe
    // when invoked from multiple goroutines.
    type RequestWaitGroup interface {
    	// Add adds delta, which may be negative, similar to sync.WaitGroup.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 10 21:18:55 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultRootBuildStateTest.groovy

            then:
            result == null
    
            and:
            1 * action.apply(!null) >> { BuildTreeLifecycleController controller ->
                return null
            }
        }
    
        def "runs tasks and finishes build when requested by action"() {
            when:
            def result = build.run(action)
    
            then:
            result == '<result>'
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdater.java

     * since watched directories can't be deleted on Windows.
     *
     * The build root directories are discovered as included builds are encountered at the start of a build, and then they are removed when the build finishes.
     *
     * This is the lifecycle for the watchable hierarchies:
     * - During a build, there will be various calls to {@link FileWatcherUpdater#registerWatchableHierarchy(File, SnapshotHierarchy)},
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. src/mime/multipart/writer.go

    func (w *Writer) WriteField(fieldname, value string) error {
    	p, err := w.CreateFormField(fieldname)
    	if err != nil {
    		return err
    	}
    	_, err = p.Write([]byte(value))
    	return err
    }
    
    // Close finishes the multipart message and writes the trailing
    // boundary end line to the output.
    func (w *Writer) Close() error {
    	if w.lastpart != nil {
    		if err := w.lastpart.close(); err != nil {
    			return err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top