Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 338 for finishes (0.23 sec)

  1. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/TestResultHandler.groovy

            latch.countDown()
        }
    
        void onFailure(GradleConnectionException failure) {
            this.failure = failure
            latch.countDown()
        }
    
        def finished() {
            finished(20)
        }
    
        def finished(int seconds) {
            if (!latch.await(seconds, TimeUnit.SECONDS)) {
                throw new AssertionError("Timeout waiting for operation to complete.")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/CleanUpVirtualFileSystemAfterBuild.java

    import java.util.concurrent.ExecutionException;
    
    /**
     * Asynchronously cleans up the VFS after a build.
     *
     * Unblocks the client to receive the build finished event while the cleanup is happening.
     * However, the next build is not allowed to start until the cleanup is finished.
     */
    @NonNullApi
    public class CleanUpVirtualFileSystemAfterBuild extends BuildCommandOnly implements Stoppable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/FinishEvent.java

     */
    
    package org.gradle.tooling.events;
    
    /**
     * An event that informs about an operation having finished its execution.
     *
     * @since 2.4
     */
    public interface FinishEvent extends ProgressEvent {
    
        /**
         * Returns the result of the finished operation.
         *
         * @return the result of the finished operation
         */
        OperationResult getResult();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 971 bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/validate.go

    			return err
    		}
    	}
    
    	// Reject duplicates among analyzers.
    	// Precondition:  color[a] == black.
    	// Postcondition: color[a] == finished.
    	for _, a := range analyzers {
    		if color[a] == finished {
    			return fmt.Errorf("duplicate analyzer: %s", a.Name)
    		}
    		color[a] = finished
    	}
    
    	return nil
    }
    
    func validIdent(name string) bool {
    	for i, r := range name {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DefaultIncomingConnectionHandler.java

                }
    
                Object finished = daemonConnection.receive(60, TimeUnit.SECONDS);
                if (finished != null) {
                    LOGGER.debug("Received finished message: {}", finished);
                } else {
                    LOGGER.warn(String.format("Timed out waiting for finished message from client %s. Discarding connection.", connection));
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/ReportDaemonStatusClientTest.groovy

            1 * connection.dispatch({it instanceof Finished})
            1 * connection.stop()
    
            and:
            1 * connector.maybeConnect(daemon2) >>> connection
            _ * connection.daemon >> daemon2
            1 * connection.dispatch({it instanceof ReportStatus})
            1 * connection.receive() >> new Success(new Status(12346, "3.0", "BOGUS"))
            1 * connection.dispatch({it instanceof Finished})
            1 * connection.stop()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. src/crypto/tls/prf.go

    	finishedVerifyLength = 12 // Length of verify_data in a Finished message.
    )
    
    var masterSecretLabel = []byte("master secret")
    var extendedMasterSecretLabel = []byte("extended master secret")
    var keyExpansionLabel = []byte("key expansion")
    var clientFinishedLabel = []byte("client finished")
    var serverFinishedLabel = []byte("server finished")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 16:29:49 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. operator/pkg/util/progress/progress.go

    		cmp := p.components[component]
    		// The component has completed
    		cmp.mu.Lock()
    		finished := cmp.finished
    		cmpErr := cmp.err
    		cmp.mu.Unlock()
    		successIcon := "✅"
    		if icon, found := name.IstioComponentSuccessIcons[cmpName]; found {
    			successIcon = icon
    		}
    		if finished || cmpErr != "" {
    			if finished {
    				p.SetMessage(fmt.Sprintf(`%s %s installed`, successIcon, cliName), true)
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

                }
            }
    
            /**
             * @param finished
             *            The finished to set.
             */
            public void setFinished(final boolean finished) {
                this.finished = finished;
            }
    
            /**
             * @return Returns the teminated.
             */
            public boolean isTeminated() {
                return teminated;
            }
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/hooks.go

    // error until the poststarthook is finished.
    type postStartHookHealthz struct {
    	name string
    
    	// done will be closed when the postStartHook is finished
    	done chan struct{}
    }
    
    var _ healthz.HealthChecker = postStartHookHealthz{}
    
    func (h postStartHookHealthz) Name() string {
    	return h.name
    }
    
    var errHookNotFinished = errors.New("not finished")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top