Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 115 for Dispatching (0.3 sec)

  1. guava/src/com/google/common/eventbus/Subscriber.java

    import java.lang.reflect.Method;
    import java.util.concurrent.Executor;
    import javax.annotation.CheckForNull;
    
    /**
     * A subscriber method on a specific object, plus the executor that should be used for dispatching
     * events to it.
     *
     * <p>Two subscribers are equivalent when they refer to the same method on the same object (not
     * class). This property is used to ensure that no subscriber method is registered more than once.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/ReturnResult.java

        @Override
        public void execute(DaemonCommandExecution execution) {
            execution.proceed();
    
            Result result = new Success(execution.getResult());
    
            LOGGER.debug("Daemon is dispatching the build result: {}", result);
            execution.getConnection().completed(result);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/StartBuildOrRespondWithBusy.java

            try {
                Runnable command = new Runnable() {
                    @Override
                    public void run() {
                        LOGGER.info("Daemon is about to start building {}. Dispatching build started information...", build);
                        execution.getConnection().buildStarted(new BuildStarted(diagnostics));
                        execution.proceed();
                    }
                };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. tensorflow/c/eager/c_api_unified_experimental_internal.h

        }
      }
    };
    }  // namespace internal
    
    using TracingOperationPtr =
        std::unique_ptr<TracingOperation, internal::TracingOperationDeleter>;
    
    // This holds the context for the execution: dispatching operations either to an
    // MLIR implementation or to a graph implementation.
    class TracingContext : public AbstractContext {
     protected:
      explicit TracingContext(AbstractContextKind kind) : AbstractContext(kind) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 13 22:20:40 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/reflect/Reflection.java

          } catch (ClassNotFoundException e) {
            throw new AssertionError(e);
          }
        }
      }
    
      /**
       * Returns a proxy instance that implements {@code interfaceType} by dispatching method
       * invocations to {@code handler}. The class loader of {@code interfaceType} will be used to
       * define the proxy class. To implement multiple interfaces or specify a class loader, use {@link
       * Proxy#newProxyInstance}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/reflect/Reflection.java

          } catch (ClassNotFoundException e) {
            throw new AssertionError(e);
          }
        }
      }
    
      /**
       * Returns a proxy instance that implements {@code interfaceType} by dispatching method
       * invocations to {@code handler}. The class loader of {@code interfaceType} will be used to
       * define the proxy class. To implement multiple interfaces or specify a class loader, use {@link
       * Proxy#newProxyInstance}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/actor/Actor.java

        /**
         * Stops accepting new method calls, and blocks until all method calls have been executed by the target object.
         *
         * @throws DispatchException When there were any failures dispatching method calls to the target object.
         */
        @Override
        void stop() throws DispatchException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. 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)
  9. subprojects/core/src/main/java/org/gradle/api/internal/project/antbuilder/AntBuilderDelegate.java

            builder.invokeMethod("setParent", parent, child);
        }
    
        @Override
        protected void nodeCompleted(Object parent, Object node) {
            if (parent == null && node == null) {// happens when dispatching to taskdef via createNode()
                return;
            }
            builder.invokeMethod("nodeCompleted", parent, node);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 10 10:55:07 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/dispatch/AsyncDispatch.java

            this.maxQueueSize = maxQueueSize;
            state = State.Init;
            if (dispatch != null) {
                dispatchTo(dispatch);
            }
        }
    
        /**
         * Starts dispatching messages to the given handler. The handler does not need to be thread-safe.
         */
        public void dispatchTo(final Dispatch<? super T> dispatch) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top