Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 898 for immediatetly (0.3 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pilot/pkg/config/monitor/README.md

    Once created, you simply run the monitor, providing a stop channel.
    
    ```golang
    stop := make(chan struct{})
    ...
    monitor.Start(stop)
    ```
    
    The `Start` method will kick off an asynchronous polling loop and will return immediately.
    
    ## Example
    
    To configure and run a monitor that watches for file changes to update an in-memory config store:
    
    ```golang
    // Configure the config store
    store := memory.Make(configDescriptor)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 2.1K 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/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)
  10. 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)
Back to top