Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 354 for Dispatch (0.33 sec)

  1. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/queue/QueueInitializer.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.remote.internal.hub.queue;
    
    import org.gradle.internal.dispatch.Dispatch;
    import org.gradle.internal.remote.internal.hub.protocol.EndOfStream;
    import org.gradle.internal.remote.internal.hub.protocol.InterHubMessage;
    
    public class QueueInitializer {
        private EndOfStream endOfStream;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/actor/internal/DefaultActorFactorySpec.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.actor.internal
    
    import org.gradle.internal.concurrent.ThreadSafe
    import org.gradle.internal.dispatch.DispatchException
    import org.gradle.internal.dispatch.MethodInvocation
    import org.gradle.test.fixtures.concurrent.ConcurrentSpec
    
    class DefaultActorFactorySpec extends ConcurrentSpec {
        private final TargetObject target = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/eventbus/AsyncEventBus.java

    /**
     * An {@link EventBus} that takes the Executor of your choice and uses it to dispatch events,
     * allowing dispatch to occur asynchronously.
     *
     * @author Cliff Biffle
     * @since 10.0
     */
    @ElementTypesAreNonnullByDefault
    public class AsyncEventBus extends EventBus {
    
      /**
       * Creates a new AsyncEventBus that will use {@code executor} to dispatch events. Assigns {@code
       * identifier} as the bus's name for logging purposes.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/ListenerBroadcast.java

     * limitations under the License.
     */
    
    package org.gradle.internal.event;
    
    import org.gradle.api.Action;
    import org.gradle.internal.dispatch.Dispatch;
    import org.gradle.internal.dispatch.MethodInvocation;
    import org.gradle.internal.dispatch.ProxyDispatchAdapter;
    
    import java.util.Collection;
    
    /**
     * <p>Manages a set of listeners of type T. Provides an implementation of T which can be used to broadcast to all
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ListenerCallQueue.java

     * using a lock, however it is dangerous to dispatch listeners while holding a lock because they
     * might run on the {@code directExecutor()} or be otherwise re-entrant (call back into your
     * object). So it is important to not call {@link #dispatch} while holding any locks. This is why
     * {@link #enqueue} and {@link #dispatch} are 2 different methods. It is expected that the decision
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/listener/ClosureBackedMethodInvocationDispatch.java

     * limitations under the License.
     */
    
    package org.gradle.listener;
    
    import groovy.lang.Closure;
    import org.gradle.internal.dispatch.Dispatch;
    import org.gradle.internal.dispatch.MethodInvocation;
    
    import java.util.Arrays;
    
    public class ClosureBackedMethodInvocationDispatch implements Dispatch<MethodInvocation> {
        private final String methodName;
        private final Closure closure;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 12:43:02 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/classpath/BasicCallInterceptionTest.groovy

            "no argument"           | "Groovy dynamic dispatch" | { test() }                                | true           | "test()"
            "one argument"          | "Groovy dynamic dispatch" | { test(it) }                              | true           | "test(InterceptorTestReceiver)"
            "one null argument"     | "Groovy dynamic dispatch" | { test(null) }                            | true           | "test(InterceptorTestReceiver)"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 09:44:54 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/MessageHubBackedObjectConnection.java

    import org.gradle.internal.concurrent.ThreadSafe;
    import org.gradle.internal.dispatch.BoundedDispatch;
    import org.gradle.internal.dispatch.Dispatch;
    import org.gradle.internal.dispatch.MethodInvocation;
    import org.gradle.internal.dispatch.ProxyDispatchAdapter;
    import org.gradle.internal.dispatch.ReflectionDispatch;
    import org.gradle.internal.dispatch.StreamCompletion;
    import org.gradle.internal.exceptions.DefaultMultiCauseException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/testFixtures/groovy/org/gradle/internal/actor/TestActorFactory.java

     */
    
    package org.gradle.internal.actor;
    
    import org.gradle.internal.concurrent.ThreadSafe;
    import org.gradle.internal.dispatch.DispatchException;
    import org.gradle.internal.dispatch.MethodInvocation;
    import org.gradle.internal.dispatch.ProxyDispatchAdapter;
    import org.gradle.internal.dispatch.ReflectionDispatch;
    
    public class TestActorFactory implements ActorFactory {
        @Override
        public Actor createActor(Object target) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/queue/MultiEndPointQueue.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.remote.internal.hub.queue;
    
    import org.gradle.internal.dispatch.Dispatch;
    import org.gradle.internal.remote.internal.hub.protocol.EndOfStream;
    import org.gradle.internal.remote.internal.hub.protocol.InterHubMessage;
    
    import java.util.ArrayDeque;
    import java.util.ArrayList;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top