Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for dispatching (0.17 sec)

  1. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/MessageHubTest.groovy

            then:
            new ArrayList<String>(messages).sort() == 0..19
    
            cleanup:
            connection1.stop()
            connection2.stop()
        }
    
        def "stops dispatching outgoing messages to failed connection"() {
            RemoteConnection<InterHubMessage> outgoing = Mock()
            def connection = new MockOutgoingConnection(outgoing)
            def dispatch = hub.getOutgoing("channel", String)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/eventbus/EventBus.java

       * Returns the identifier for this event bus.
       *
       * @since 19.0
       */
      public final String identifier() {
        return identifier;
      }
    
      /** Returns the default executor this event bus uses for dispatching events to subscribers. */
      final Executor executor() {
        return executor;
      }
    
      /** Handles the given exception thrown by a subscriber with the given context. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 17 16:01:41 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/eventbus/EventBus.java

       * Returns the identifier for this event bus.
       *
       * @since 19.0
       */
      public final String identifier() {
        return identifier;
      }
    
      /** Returns the default executor this event bus uses for dispatching events to subscribers. */
      final Executor executor() {
        return executor;
      }
    
      /** Handles the given exception thrown by a subscriber with the given context. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 25 16:37:57 UTC 2021
    - 12.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    	// If its DesiredNumQueues is zero then its other queuing
    	// parameters retain the settings they had when DesiredNumQueues
    	// was last non-zero (if ever).
    	qCfg fq.QueuingConfig
    
    	// the current dispatching configuration.
    	dCfg fq.DispatchingConfig
    
    	// If `qCfg.DesiredNumQueues` is non-zero then dealer is not nil
    	// and is good for `qCfg`.
    	dealer *shufflesharding.Dealer
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

            Object result;
            try {
                LOGGER.debug("Connected to daemon {}. Dispatching request {}.", connection.getDaemon(), build);
                connection.dispatch(build);
                result = connection.receive();
            } catch (StaleDaemonAddressException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. maven-core/plugin-manager.txt

    h3. Execution of the plugin
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 22:45:13 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher.go

    			res := wc.transform(e)
    			if res == nil {
    				continue
    			}
    			if len(wc.resultChan) == outgoingBufSize {
    				klog.V(3).InfoS("Fast watcher, slow processing. Probably caused by slow dispatching events to watchers", "outgoingEvents", outgoingBufSize, "objectType", wc.watcher.objectType, "groupResource", wc.watcher.groupResource)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/flowcontrol/v1beta3/generated.proto

      // NominalConcurrencyLimit (NominalCL) of this level.
      // This is the number of execution seats nominally reserved for this priority level.
      // This DOES NOT limit the dispatching from this priority level
      // but affects the other priority levels through the borrowing mechanism.
      // The server's concurrency limit (ServerCL) is divided among all the
      // priority levels in proportion to their NCS values:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/flowcontrol/v1beta1/types_swagger_doc_generated.go

    "nominalConcurrencyShares": "`nominalConcurrencyShares` (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level. This is the number of execution seats nominally reserved for this priority level. This DOES NOT limit the dispatching from this priority level but affects the other priority levels through the borrowing mechanism. The server's concurrency limit (ServerCL) is divided among all the priority levels in proportion to their NCS values:\n\nNominalCL(i)  = ceil( ServerCL...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/flowcontrol/v1beta2/generated.proto

      // NominalConcurrencyLimit (NominalCL) of this level.
      // This is the number of execution seats nominally reserved for this priority level.
      // This DOES NOT limit the dispatching from this priority level
      // but affects the other priority levels through the borrowing mechanism.
      // The server's concurrency limit (ServerCL) is divided among all the
      // priority levels in proportion to their NCS values:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top