Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,252 for Listeners (0.3 sec)

  1. guava/src/com/google/common/util/concurrent/Service.java

       * across calls to multiple listeners. Specifically, a given listener will have its callbacks
       * invoked in the same order as the underlying service enters those states. Additionally, at most
       * one of the listener's callbacks will execute at once. However, multiple listeners' callbacks
       * may execute concurrently, and listeners may execute in an order different from the one in which
       * they were registered.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/AbstractExecHandleBuilder.java

        public AbstractExecHandleBuilder setDisplayName(String displayName) {
            this.displayName = displayName;
            return this;
        }
    
        public AbstractExecHandleBuilder listener(ExecHandleListener listener) {
            this.listeners.add(listener);
            return this;
        }
    
        public ExecHandle build() {
            String executable = getExecutable();
            if (StringUtils.isEmpty(executable)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 06 16:16:31 UTC 2020
    - 6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ListenableFuture.java

       * MoreExecutors#directExecutor}. Otherwise, avoid it: See the warnings on the docs for {@code
       * directExecutor}.
       *
       * <p>This is the most general listener interface. For common operations performed using
       * listeners, see {@link Futures}. For a simplified but general listener interface, see {@link
       * Futures#addCallback addCallback()}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:13:41 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. pilot/pkg/simulation/traffic.go

    	default:
    		return ""
    	}
    }
    
    func matchListener(listeners []*listener.Listener, input Call) *listener.Listener {
    	if input.CallMode == CallModeInbound {
    		return xdstest.ExtractListener(model.VirtualInboundListenerName, listeners)
    	}
    	// First find exact match for the IP/Port, then fallback to wildcard IP/Port
    	// There is no wildcard port
    	for _, l := range listeners {
    		if matchAddress(l.GetAddress(), input.Address, input.Port) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/alias.yaml

    kind: Gateway
    metadata:
      name: third-party-gateway
      namespace: istio-system
    spec:
      addresses:
      - value: istio-ingressgateway
        type: Hostname
      gatewayClassName: third-party-gatewayclass
      listeners:
      - name: default
        hostname: "*.domain.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: All
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildOperationsIntegrationTest.groovy

            graphNotifyOps.size() == 2
            graphNotifyOps[0].displayName == "Notify task graph whenReady listeners (:buildB)"
            graphNotifyOps[0].details.buildPath == ":buildB"
            graphNotifyOps[0].parentId == treeTaskGraphOps[0].id
            graphNotifyOps[1].displayName == 'Notify task graph whenReady listeners'
            graphNotifyOps[1].details.buildPath == ':'
            graphNotifyOps[1].parentId == treeTaskGraphOps[0].id
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/waypoint.status.yaml.golden

          not found'
        reason: AddressNotUsable
        status: "False"
        type: Programmed
      listeners:
      - attachedRoutes: 0
        conditions:
        - lastTransitionTime: fake
          message: Expected a single listener on port 15008 with protocol "HBONE"
          reason: UnsupportedProtocol
          status: "False"
          type: Accepted
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 21:30:40 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. platforms/jvm/java-compiler-plugin/src/main/java/org/gradle/internal/compiler/java/IncrementalCompileTask.java

     */
    package org.gradle.internal.compiler.java;
    
    import com.sun.source.util.JavacTask;
    import org.gradle.internal.compiler.java.listeners.classnames.ClassNameCollector;
    import org.gradle.internal.compiler.java.listeners.constants.ConstantDependentsConsumer;
    import org.gradle.internal.compiler.java.listeners.constants.ConstantsCollector;
    
    import javax.annotation.processing.Processor;
    import javax.tools.JavaCompiler;
    import java.io.File;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcBuildOperationsIntegrationTest.groovy

            graphNotifyOps.size() == 3
            graphNotifyOps[0].displayName == 'Notify task graph whenReady listeners (:buildB:buildSrc)'
            graphNotifyOps[0].details.buildPath == ':buildB:buildSrc'
            graphNotifyOps[0].parentId == treeTaskGraphOps[0].id
            graphNotifyOps[1].displayName == "Notify task graph whenReady listeners (:buildB)"
            graphNotifyOps[1].details.buildPath == ":buildB"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/AbstractFuture.java

        checkNotNull(unit);
        return get();
      }
    
      @Override
      public void addListener(Runnable runnable, Executor executor) {
        Listener listener = new Listener(runnable, executor);
        if (isDone()) {
          listener.execute();
        } else {
          listeners.add(listener);
        }
      }
    
      @CanIgnoreReturnValue
      protected boolean setException(Throwable throwable) {
        checkNotNull(throwable);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 19:37:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top