Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,212 for notified (0.14 sec)

  1. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationListenerManager.java

     *
     * There is one global listener for the life of the build runtime.
     * Listeners must be sure to remove themselves if they want to only listen for a single build.
     *
     * Listeners are notified in registration order.
     * Started and progress notifications are emitted in registration order,
     * while finished notifications are emitted in reverse registration order.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. pkg/kubelet/pluginmanager/cache/types.go

    	ValidatePlugin(pluginName string, endpoint string, versions []string) error
    	// RegisterPlugin is called so that the plugin can be registered by any
    	// plugin consumer
    	// Error encountered here can still be Notified to the plugin.
    	RegisterPlugin(pluginName, endpoint string, versions []string, pluginClientTimeout *time.Duration) error
    	// DeRegisterPlugin is called once the pluginwatcher observes that the socket has
    	// been deleted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/BuildOperationMapper.java

        boolean isEnabled(BuildEventSubscriptions subscriptions);
    
        Class<DETAILS> getDetailsType();
    
        /**
         * Returns the trackers that are used by this mapper. If this mapper is enabled, then the trackers should be notified of
         * build operation execution. If this mapper is not enabled, the trackers can be ignored.
         */
        default List<? extends BuildOperationTracker> getTrackers() {
            return Collections.emptyList();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/session/BuildSessionLifecycleListener.java

     * limitations under the License.
     */
    
    package org.gradle.internal.session;
    
    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    
    /**
     * A listener that is notified when a session is started and completed. No more than one session may be active at any time.
     *
    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. src/os/signal/signal_test.go

    	for range sig {
    		// Receive signals until the sender closes sig.
    	}
    }
    
    func testCancel(t *testing.T, ignore bool) {
    	// Ask to be notified on c1 when a SIGWINCH is received.
    	c1 := make(chan os.Signal, 1)
    	Notify(c1, syscall.SIGWINCH)
    	defer Stop(c1)
    
    	// Ask to be notified on c2 when a SIGHUP is received.
    	c2 := make(chan os.Signal, 1)
    	Notify(c2, syscall.SIGHUP)
    	defer Stop(c2)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/scaninfo/DefaultDaemonScanInfo.java

            return singleRun;
        }
    
        @Override
        public void notifyOnUnhealthy(final Action<? super String> listener) {
            /*
                The semantics of this method are that the given action should be notified if the
                Daemon is going to be terminated at the end of this build.
                It is not a generic outlet for “expiry events”.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/BuildActionExecuter.java

             *
             * <p>If the operation fails, build will fail with the appropriate exception. The handler won't be notified in case of failure.
             *
             * @param buildAction The action to run in the specified build phase.
             * @param handler The handler to supply the result of the given action to.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:31:25 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. src/runtime/sema.go

    	lockWithRank(&l.lock, lockRankNotifyList)
    	s := l.head
    	l.head = nil
    	l.tail = nil
    
    	// Update the next ticket to be notified. We can set it to the current
    	// value of wait because any previous waiters are already in the list
    	// or will notice that they have already been notified when trying to
    	// add themselves to the list.
    	atomic.Store(&l.notify, l.wait.Load())
    	unlock(&l.lock)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfo.java

         * The action will be invoked at-most once during a build.
         * It will only be invoked for the build in which it was registered (i.e. not subsequent builds).
         * Each action provided to each invocation of this message will be notified.
         * <p>
         * The action receives a free-form, human friendly, string describing why the Daemon needs to be shut down.
         */
        void notifyOnUnhealthy(Action<? super String> listener);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/ObjectConnectionBuilder.java

         * thread-safe. Messages are delivered to the handler by a single thread.
         *
         * <p>A handler instance may also implement {@link org.gradle.internal.dispatch.StreamCompletion}, in which case it will be notified when no further messages will be forwarded to it.
         * This may happen because the peer has signalled that it has finished sending messages, or closes the connection, or crashes. It may also happen when
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top