Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 898 for immediatetly (0.18 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/apiserver/pkg/server/lifecycle_signals.go

    	- it's time to initiate shutdown of the HTTP Server, server.Shutdown is invoked
    	- as a consequene, the Close function has is called for all listeners
     	- the HTTP Server stops listening immediately
    	- any new request arriving on a new TCP socket is denied with
          a network error similar to 'connection refused'
        - the HTTP Server waits gracefully for existing requests to complete
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:30 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    +
    1. Total tasks present when each task is created or not.
    - `Created immediately` represents tasks created using the eager task APIs.
    - `Created during configuration` represents tasks created using the configuration avoidance APIs, but were realized explicitly (via `TaskProvider#get()`) or implicitly using the eager task query APIs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/Call.kt

     */
    interface Call : Cloneable {
      /** Returns the original request that initiated this call. */
      fun request(): Request
    
      /**
       * Invokes the request immediately, and blocks until the response can be processed or is in error.
       *
       * To avoid leaking resources callers should close the [Response] which in turn will close the
       * underlying [ResponseBody].
       *
       * ```java
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. src/os/wait_wait6.go

    //go:build dragonfly || freebsd || netbsd
    
    package os
    
    import (
    	"runtime"
    	"syscall"
    )
    
    // blockUntilWaitable attempts to block until a call to p.Wait will
    // succeed immediately, and reports whether it has done so.
    // It does not actually call p.Wait.
    func (p *Process) blockUntilWaitable() (bool, error) {
    	var errno syscall.Errno
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 21:25:45 UTC 2022
    - 781 bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/generator/XmlPersistableConfigurationObject.java

        }
    
        public Node getXml() {
            return xml;
        }
    
        /**
         * Called immediately after the XML file has been read.
         */
        protected void load(Node xml) {
            // no-op
        }
    
        /**
         * Called immediately before the XML file is to be written.
         */
        protected void store(Node xml) {
            // no-op
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. src/internal/types/testdata/fixedbugs/issue43190.go

    import .; // ERROR "missing import path"
    import 'x' // ERROR "import path must be a string"
    var _ int
    import /* ERROR "imports must appear before other declarations" */ _ "math"
    
    // Don't repeat previous error for each immediately following import ...
    import ()
    import (.) // ERROR "missing import path"
    import (
    	"fmt"
    	.
    ) // ERROR "missing import path"
    
    // ... but remind with error again if we start a new import section after
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 997 bytes
    - Viewed (0)
  9. src/os/wait_unimp.go

    // waitid/wait6.
    
    //go:build aix || darwin || (js && wasm) || openbsd || solaris || wasip1
    
    package os
    
    // blockUntilWaitable attempts to block until a call to p.Wait will
    // succeed immediately, and reports whether it has done so.
    // It does not actually call p.Wait.
    // This version is used on systems that do not implement waitid,
    // or where we have not implemented it yet. Note that this is racy:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 13:16:52 UTC 2023
    - 831 bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/collections/EventSubscriptionVerifier.java

     */
    
    package org.gradle.api.internal.collections;
    
    import javax.annotation.Nullable;
    
    /**
     * Tracks which types are subscribed to by eager event listeners. Lazy elements of a
     * subscribed type should be immediately realized when added to a container.
     */
    public interface EventSubscriptionVerifier<T> {
    
        /**
         * Determines whether events should be emitted for elements of the given type.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 15:16:51 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top