Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 791 for immediatetly (0.2 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/taskgraph/TaskListenerInternal.java

    @EventScope(Scope.Build.class)
    public interface TaskListenerInternal {
        /**
         * This method is called immediately before a task is executed.
         *
         * @param taskIdentity The identity of the task about to be executed. Never null.
         */
        void beforeExecute(TaskIdentity<?> taskIdentity);
    
        /**
         * This method is call 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.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/initialization/RootBuildLifecycleListener.java

    @EventScope(Scope.BuildTree.class)
    @StatefulListener
    public interface RootBuildLifecycleListener {
        /**
         * Called at the start of the root build, immediately after the creation of the root build services.
         */
        void afterStart();
    
        /**
         * Called at the completion of the root build, immediately before destruction of the root build services.
         */
        void beforeComplete();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. 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)
  4. 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
    - 21.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonStateCoordinatorTest.groovy

        }
    
        def "requestForcefulStop stops immediately when idle"() {
            expect:
            notStopped
    
            when:
            coordinator.requestForcefulStop("stop")
    
            then:
            coordinator.willRefuseNewCommands
            stopped
            0 * _._
        }
    
        def "requestForcefulStop causes command to be abandoned immediately"() {
            def command = Mock(Runnable)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top