Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 234 for immediatetly (0.29 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/execution/TaskExecutionListener.java

    @Deprecated
    @DeprecatedInGradleScope
    public interface TaskExecutionListener {
        /**
         * This method is called immediately before a task is executed.
         *
         * @param task The task about to be executed. Never null.
         */
        void beforeExecute(Task task);
    
        /**
         * This method is called immediately after a task has been executed. It is always called, regardless of whether the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/WebSocket.kt

        code: Int,
        reason: String?,
      ): Boolean
    
      /**
       * Immediately and violently release resources held by this web socket, discarding any enqueued
       * messages. This does nothing if the web socket has already been closed or canceled.
       */
      fun cancel()
    
      fun interface Factory {
        /**
         * Creates a new web socket and immediately returns it. Creating a web socket initiates an
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/CalculatedModelValue.java

         * <p>May be called by any thread. This method returns immediately and does not block to wait for any currently running or pending calls to {@link #update(Function)} to complete.
         */
        T get() throws IllegalStateException;
    
        /**
         * Returns the current value, returning {@code null} if not present.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/session/BuildSessionLifecycleListener.java

        /**
         * Called at the start of the session, immediately after initializing the session services.
         *
         * This method is called before the root build operation has started, so implementations should not perform any expensive work
         * and should not run any user code.
         */
        default void afterStart() {
        }
    
        /**
         * Called at the completion of the session, immediately prior to tearing down the session services.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonLifecycleSpec.groovy

            startBuild()
    
            then:
            busy()
    
            when:
            startBuild()
    
            then:
            busy 2
        }
    
        def "sending stop to idle daemons causes them to terminate immediately"() {
            when:
            startBuild()
    
            then:
            busy()
    
            when:
            completeBuild()
    
            then:
            idle()
    
            when:
            stopDaemons()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. pilot/pkg/server/instance.go

    // Instance is a server that is composed a number of Component tasks.
    type Instance interface {
    	// Start this Server. Any components that were already added
    	// will be run immediately. If any error is returned,
    	// Start will terminate and return the error immediately.
    	//
    	// Once all startup components have been run, starts a polling
    	// loop to continue monitoring for new components and returns nil.
    	Start(stop <-chan struct{}) error
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. pkg/kube/watcher/configmapwatcher/configmapwatcher.go

    	}))
    
    	return c
    }
    
    func (c *Controller) Run(stop <-chan struct{}) {
    	// Start informer immediately instead of with the rest. This is because we use configmapwatcher for
    	// single types (so its never shared), and for use cases where we need the results immediately
    	// during startup.
    	c.configmaps.Start(stop)
    	if !kube.WaitForCacheSync("configmap "+c.configMapName, stop, c.configmaps.HasSynced) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 07:11:52 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. releasenotes/notes/45329.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 45329
    releaseNotes:
    - |
      **Fixed** when creating a `WorkloadGroup`, `WorkloadEntry` auto-registration will occur immediately for proxies
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 19 20:41:55 UTC 2023
    - 246 bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/execution/TaskExecutionGraph.java

         * @param action The action to execute when this graph has been populated.
         *
         * @since 3.1
         */
        void whenReady(Action<TaskExecutionGraph> action);
    
        /**
         * <p>Adds a closure to be called immediately before a task is executed. The task is passed to the closure as a
         * parameter.</p>
         *
         * @param closure The closure to execute when a task is about to be executed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 20:29:51 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  10. pkg/envoy/agent.go

    	}
    	// If we drained now, skip draining + waiting later
    	// When we terminate, we will instead exit immediately
    	a.DisableDraining()
    }
    
    // terminate starts exiting the process.
    func (a *Agent) terminate() {
    	log.Infof("Agent draining Proxy for termination")
    	if a.skipDrain.Load() {
    		log.Infof("Agent already drained, exiting immediately")
    		a.abortCh <- errAbort
    		return
    	}
    	e := a.proxy.Drain(false)
    	if e != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top