Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 791 for immediatetly (0.31 sec)

  1. tests/integration/telemetry/api/accesslogs_test.go

    		}
    		// For positive test, we use the same ID and repeatedly send requests and check the count
    		// Retry a bit to get the logs. There is some delay before they are output(MeshConfig will not take effect immediately),
    		// so they may not be immediately ready. If not ready, we retry sending a call again.
    		err := retry.UntilSuccess(func() error {
    			if hasTargetRef {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. subprojects/core-api/src/main/java/org/gradle/api/invocation/Gradle.java

         * is executed immediately. Otherwise, the action is executed when the root project becomes available.
         *
         * @param action The action to execute.
         */
        void rootProject(Action<? super Project> action);
    
        /**
         * Adds an action to execute against all projects of this build.
         *
         * The action is executed immediately against all projects which are
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/RateLimiter.java

       *     arbitrary past or present time
       */
      abstract long queryEarliestAvailable(long nowMicros);
    
      /**
       * Reserves the requested number of permits and returns the time that those permits can be used
       * (with one caveat).
       *
       * @return the time that the permits may be used, or, if the permits may be used immediately, an
       *     arbitrary past or present time
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top