Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,252 for Listeners (0.14 sec)

  1. tests/testdata/mcp_bootstrap_tmpl.json

        "access_log_path": "/dev/stdout",
        "address": {
          "socket_address": {
            "address": "0.0.0.0",
            "port_value": {{.Ports.AdminPort}}
          }
        }
      },
      "static_resources": {
        "listeners": [],
        "clusters": [
          {
            "name": "xds-grpc",
            "type": "STRICT_DNS",
            "connect_timeout": {
              "seconds": 5,
              "nanos": 0
            },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 08 21:09:56 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-routing/gateway.yaml

    #$ Used in:
    #$ - site-src/guides/http-routing.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: example-gateway
    spec:
      gatewayClassName: example-gateway-class
      listeners:
      - name: http
        protocol: HTTP
        port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: example-route
    spec:
      parentRefs:
      - name: example-gateway
      hostnames:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 491 bytes
    - Viewed (0)
  3. android/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)
  4. releasenotes/notes/43688.yaml

    area: traffic-management
    issue:
      - https://github.com/istio/istio/issues/43688
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 16:19:19 UTC 2023
    - 312 bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/mismatch.yaml

    kind: Gateway
    metadata:
      name: gateway
      namespace: istio-system
    spec:
      addresses:
      - value: istio-ingressgateway
        type: Hostname
      gatewayClassName: something-else
      listeners:
      - name: default
        port: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 520 bytes
    - Viewed (0)
  6. releasenotes/notes/sidecar-port-merge.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
    - |
      **Fixed** a bug when a Sidecar is resource is defined with multiple egress listeners with different ports 
      of a Kubernetes service, does not merge the ports correctly. This leads to creating only one Cluster with 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 348 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-route-attachment/gateway-strict.yaml

    #$ Used in:
    #$ - site-src/concepts/api-overview.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: foo-gateway
      namespace: gateway-api-example-ns1
    spec:
      gatewayClassName: foo-lb
      listeners:
      - name: prod-web
        port: 80
        protocol: HTTP
        allowedRoutes:
          kinds:
          - kind: HTTPRoute
          namespaces:
            from: Selector
            selector:
              matchLabels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 573 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/tls-basic.yaml

    #$ Used in:
    #$ - site-src/guides/tls.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: tls-basic
    spec:
      gatewayClassName: acme-lb
      listeners:
      - name: foo-https
        protocol: HTTPS
        port: 443
        hostname: foo.example.com
        tls:
          certificateRefs:
          - kind: Secret
            group: ""
            name: foo-example-com-cert
      - name: bar-https
        protocol: HTTPS
        port: 443
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 555 bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/model/RuleBasedPluginListener.java

     * limitations under the License.
     */
    
    package org.gradle.internal.model;
    
    import org.gradle.api.Project;
    
    /**
     * This listener is notified when a rule based plugin is applied to a project.
     * Listeners can react to this by activating compatibility layers that are otherwise not necessary.
     */
    public interface RuleBasedPluginListener {
    
        void prepareForRuleBasedPlugins(Project project);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 02 15:31:41 UTC 2018
    - 972 bytes
    - Viewed (0)
  10. pilot/pkg/model/sidecar.go

    // GetEgressListenerForRDS returns the egress listener corresponding to
    // the listener port or the bind address or the catch all listener
    func (sc *SidecarScope) GetEgressListenerForRDS(port int, bind string) *IstioEgressListenerWrapper {
    	if sc == nil {
    		return nil
    	}
    
    	for _, e := range sc.EgressListeners {
    		// We hit a catchall listener. This is the last listener in the list of listeners
    		// return as is
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
Back to top