Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,252 for Listeners (0.18 sec)

  1. istioctl/pkg/writer/compare/comparator_test.go

    	if err != nil {
    		t.Fatalf("Failed to create Comparator: %v", err)
    	}
    	err = comparator.Diff()
    	if err != nil {
    		t.Errorf("Unexpected error during diff: %v", err)
    	}
    
    	expected := []string{"Clusters Match", "Listeners Match", "Routes Match"}
    	for _, exp := range expected {
    		if !bytes.Contains(outputBuffer.Bytes(), []byte(exp)) {
    			t.Errorf("Expected %s, but it was not found", exp)
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. pilot/pkg/features/experimental.go

    			"Resource Request. This feature uses the delta xds api, but does not currently send the actual deltas.").Get()
    
    	EnableQUICListeners = env.Register("PILOT_ENABLE_QUIC_LISTENERS", false,
    		"If true, QUIC listeners will be generated wherever there are listeners terminating TLS on gateways "+
    			"if the gateway service exposes a UDP port with the same number (for example 443/TCP and 443/UDP)").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/gateway/hostname-udp.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: hostname-udp
    spec:
      gatewayClassName: acme-lb
      listeners:
      - name: example
        hostname: example.com
        protocol: UDP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 213 bytes
    - Viewed (0)
  4. releasenotes/notes/40268.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - https://github.com/istio/istio/issues/40268
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 08 19:15:19 UTC 2022
    - 272 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/simple-gateway/gateway.yaml

    #$ Used in:
    #$ - site-src/guides/traffic-splitting.md
    #$ - site-src/guides/simple-gateway.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: prod-web
    spec:
      gatewayClassName: acme-lb
      listeners:
      - protocol: HTTP
        port: 80
        name: prod-web-gw
        allowedRoutes:
          namespaces:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 337 bytes
    - Viewed (0)
  6. releasenotes/notes/27566.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 27566
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 27 06:22:46 UTC 2020
    - 253 bytes
    - Viewed (0)
  7. releasenotes/notes/34944.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 34944
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 31 21:17:28 UTC 2021
    - 213 bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/ListenableFutureTask.java

        super(callable);
      }
    
      ListenableFutureTask(Runnable runnable, @ParametricNullness V result) {
        super(runnable, result);
      }
    
      @Override
      public void addListener(Runnable listener, Executor exec) {
        executionList.add(listener, exec);
      }
    
      @CanIgnoreReturnValue
      @Override
      @ParametricNullness
      public V get(long timeout, TimeUnit unit)
          throws TimeoutException, InterruptedException, ExecutionException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. samples/ambient-argo/application/reviews-waypoint.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      labels:
        istio.io/rev: rapid
      name: bookinfo-reviews
    spec:
      gatewayClassName: istio-waypoint
      listeners:
      - name: mesh
        port: 15008
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 21:10:07 UTC 2024
    - 233 bytes
    - Viewed (0)
  10. istioctl/pkg/proxyconfig/proxyconfig.go

      istioctl proxy-config listeners <pod-name[.namespace]> --port 9080
    
      # Retrieve full listener dump for HTTP listeners with a wildcard address (0.0.0.0).
      istioctl proxy-config listeners <pod-name[.namespace]> --type HTTP --address 0.0.0.0 -o json
    
      # Retrieve listener summary without using Kubernetes API
      ssh <user@hostname> 'curl localhost:15000/config_dump' > envoy-config.json
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
Back to top