Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 656 for Listeners (0.13 sec)

  1. pilot/pkg/config/kube/gateway/testdata/grpc.status.yaml.golden

      - lastTransitionTime: fake
        message: Resource programmed, assigned to service(s) istio-ingressgateway.istio-system.svc.domain.suffix:80
        reason: Programmed
        status: "True"
        type: Programmed
      listeners:
      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/alias.status.yaml.golden

      - lastTransitionTime: fake
        message: Resource programmed, assigned to service(s) istio-ingressgateway.istio-system.svc.domain.suffix:80
        reason: Programmed
        status: "True"
        type: Programmed
      listeners:
      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_waypoint.go

    }
    
    func (lb *ListenerBuilder) buildWaypointInbound() []*listener.Listener {
    	listeners := []*listener.Listener{}
    	// We create 3 listeners:
    	// 1. Decapsulation CONNECT listener.
    	// 2. IP dispatch listener, handling both VIPs and direct pod IPs.
    	// 3. Encapsulation CONNECT listener, originating the tunnel
    	wls, wps := findWaypointResources(lb.node, lb.push)
    
    	listeners = append(listeners,
    		lb.buildWaypointInboundConnectTerminate(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/multi-gateway.status.yaml.golden

          to all requested addresses: hostname "istio-ingressgateway.not-default.svc.domain.suffix"
          not found'
        reason: AddressNotUsable
        status: "False"
        type: Programmed
      listeners:
      - attachedRoutes: 0
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/scaninfo/DefaultDaemonScanInfoSpec.groovy

            then:
            1 * listenerManager.addListener({ it instanceof DaemonExpirationListener }) >> { DaemonExpirationListener listener ->
                daemonExpirationListener = listener
            }
            1 * listenerManager.addListener({ it instanceof BuildListener }) >> { BuildListener listener ->
                buildListener = listener
            }
    
            when:
            buildListener.buildFinished(Stub(BuildResult))
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    		push         *model.PushContext
    		listeners    []*listener.Listener
    		skipAdds     bool
    	}
    	tests := []struct {
    		name string
    		args args
    		want []*listener.Listener
    	}{
    		{
    			name: "gateway lds",
    			args: args{
    				patchContext: networking.EnvoyFilter_GATEWAY,
    				proxy:        gatewayProxy,
    				push:         push,
    				listeners:    gatewayIn,
    				skipAdds:     false,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  7. pilot/pkg/xds/rds_test.go

    			[]string{"http.80", "https.443.https.my-gateway.testns"},
    		},
    		{
    			// Even if we get a bad route, we should still send Envoy an empty response, rather than
    			// ignore it. If we ignore the route, the listeners can get stuck waiting forever.
    			"sidecar_badroute",
    			sidecarID(app3Ip, "app3"),
    			[]string{"ht&p"},
    		},
    	}
    
    	s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{})
    	for _, tt := range tests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/Request.kt

         * [Request.tag]. Use null to remove any existing tag assigned for [T].
         *
         * Use this API to attach timing, debugging, or other application data to a request so that
         * you may read it in interceptors, event listeners, or callbacks.
         */
        @JvmName("reifiedTag")
        inline fun <reified T : Any> tag(tag: T?): Builder = tag(T::class, tag)
    
        /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:17:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. subprojects/build-events/src/test/groovy/org/gradle/internal/build/event/DefaultBuildEventsListenerRegistryTest.groovy

            1 * listener.onFinish({ it instanceof TaskFinishEvent && it.result instanceof TaskSkippedResult })
            0 * listener._
        }
    
        def "listener can receive build operation finish events"() {
            def listener = Mock(BuildOperationListener)
            def provider = Providers.of(listener)
            def descriptor = descriptor()
            def finishEvent = operationFinishEvent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. platforms/software/testing-base/build.gradle.kts

    and setup basic testing-related features like a testSuites container and the testing extension.  It provides most of the
    testing-related abstract base types and interfaces for things like Test tasks, listeners and filters.
    
    This project is a implementation dependency of many other testing-related subprojects in the Gradle build.
    """
    
    errorprone {
        disabledChecks.addAll(
            "EmptyBlockTag", // 3 occurrences
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top