Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 993 for listener2 (0.15 sec)

  1. 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)
  2. pilot/pkg/config/kube/gateway/testdata/eastwest-tlsoption.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: eastwestgateway
      namespace: istio-system
      labels:
        topology.istio.io/network: "network-1"
    spec:
      gatewayClassName: istio
      listeners:
      - name: istiod-grpc
        port: 15012
        protocol: TLS
        tls:
          mode: Passthrough
      - name: istiod-webhook
        port: 15017
        protocol: TLS
        tls:
          mode: Passthrough
      - name: cross-network
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/basic-http.yaml

        group: acme.io
        kind: Parameters
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: my-gateway
    spec:
      gatewayClassName: acme-lb
      listeners:  # Use GatewayClass defaults for listener definition.
      - name: http
        protocol: HTTP
        port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http-app-1
    spec:
      parentRefs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. src/net/sock_posix.go

    	//   as talking to the protocol stack inside the kernel
    	//
    	// For stream and datagram listeners, they will only require
    	// named sockets, so we can assume that it's just a request
    	// from stream or datagram listeners when laddr is not nil but
    	// raddr is nil. Otherwise we assume it's just for dialers or
    	// the other connection holders.
    
    	if laddr != nil && raddr == nil {
    		switch sotype {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.groovy

            }
    
            then: "task progress events must be forwarded to the attached listeners"
            !events.tasks.empty
            events.operations == events.tasks
        }
    
        def "receive current task progress event even if one of multiple task listeners throws an exception"() {
            given:
            goodCode()
    
            when: "launching a build"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/ListenableFutureTaskTest.java

        assertEquals(1, listenerLatch.getCount());
        assertFalse(task.isDone());
        assertFalse(task.isCancelled());
    
        // Finish the task by unblocking the task latch.  Then wait for the
        // listener to be called by blocking on the listener latch.
        taskLatch.countDown();
        assertEquals(25, task.get().intValue());
        assertTrue(listenerLatch.await(5, TimeUnit.SECONDS));
        assertTrue(task.isDone());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGConsoleLoggingIntegrationTest.groovy

            executer.withStackTraceChecksDisabled()
            fails "test"
    
            then:
            outputContains("org.gradle.api.GradleException: Could not add a test listener with class 'com.listeners.DoesNotExist'")
            outputContains("java.lang.ClassNotFoundException: com.listeners.DoesNotExist")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.6K bytes
    - Viewed (1)
  8. pilot/pkg/networking/core/fake.go

    	pc := f.PushContext()
    	p.SetSidecarScope(pc)
    	p.SetServiceTargets(f.env.ServiceDiscovery)
    	p.SetGatewaysForProxy(pc)
    	p.DiscoverIPMode()
    	return p
    }
    
    func (f *ConfigGenTest) Listeners(p *model.Proxy) []*listener.Listener {
    	return f.ConfigGen.BuildListeners(p, f.PushContext())
    }
    
    func (f *ConfigGenTest) Clusters(p *model.Proxy) []*cluster.Cluster {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ListenerFailedException.java

     * limitations under the License.
     */
    package org.gradle.tooling;
    
    import java.util.List;
    
    /**
     * Thrown whenever a listener fails with an exception, which in general implies that
     * the build completed like it should, but that one of the listeners failed with an
     * exception.
     *
     * @since 2.5
     */
    public class ListenerFailedException extends GradleConnectionException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationBridgeTest.groovy

            then:
            noExceptionThrown()
        }
    
        def "cannot register when valve is closed"() {
            when:
            register(listener)
    
            then:
            thrown IllegalStateException
        }
    
        def "passes recorded events to listeners registering"() {
            def d1 = d(1, null, 1)
            def bridge = getOrCreateBridge()
            bridge.valve.start()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top