Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 569 for Listeners (0.23 sec)

  1. manifests/addons/dashboards/pilot-dashboard.gen.json

                         "options": "lds"
                      },
                      "properties": [
                         {
                            "id": "displayName",
                            "value": "Listeners"
                         }
                      ]
                   },
                   {
                      "matcher": {
                         "id": "byName",
                         "options": "rds"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. tests/integration/ambient/waypoint_test.go

      labels:
        istio.io/dataplane-mode: ambient
      annotations:
        networking.istio.io/address-type: IPAddress
        networking.istio.io/service-type: ClusterIP
    spec:
      gatewayClassName: istio
      listeners:
      - name: {{.Service}}-fqdn
        hostname: {{.Service}}.{{.Namespace}}.svc.cluster.local
        port: {{.Port}}
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: Same
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/invocation/DefaultGradle.java

        public ProjectEvaluationListener addProjectEvaluationListener(ProjectEvaluationListener listener) {
            addListener("Gradle.addProjectEvaluationListener", listener);
            return listener;
        }
    
        @Override
        public void removeProjectEvaluationListener(ProjectEvaluationListener listener) {
            removeListener(listener);
        }
    
        private void assertProjectMutatingMethodAllowed(String methodName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  4. istioctl/pkg/describe/describe.go

    		Port: uint32(port),
    	}
    	listeners, err := cd.GetListenerConfigDump()
    	if err != nil {
    		return nil, err
    	}
    
    	for _, l := range listeners.DynamicListeners {
    		if l.ActiveState == nil {
    			continue
    		}
    		// Support v2 or v3 in config dump. See ads.go:RequestedTypes for more info.
    		l.ActiveState.Listener.TypeUrl = v3.ListenerType
    		listenerTyped := &listener.Listener{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	tcp := strings.ToLower(string(protocol.TCP))
    	svcPorts := make([]corev1.ServicePort, 0, len(gw.Spec.Listeners)+1)
    	svcPorts = append(svcPorts, corev1.ServicePort{
    		Name:        "status-port",
    		Port:        int32(15021),
    		AppProtocol: &tcp,
    	})
    	portNums := sets.New[int32]()
    	for i, l := range gw.Spec.Listeners {
    		if portNums.Contains(int32(l.Port)) {
    			continue
    		}
    		portNums.Insert(int32(l.Port))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. pilot/pkg/networking/grpcgen/grpcgen_test.go

    package grpcgen_test
    
    import (
    	"context"
    	"encoding/json"
    	"fmt"
    	"net"
    	"net/url"
    	"path"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    
    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    	statefulsession "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/stateful_session/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/troubleshooting.adoc

    You can also replace much of Gradle’s logging with your own by registering various event listeners.
    One example of a <<logging.adoc#sec:changing_what_gradle_logs,custom event logger is explained in the logging documentation>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:22:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/network.go

    		if addr.Type == nil {
    			continue
    		}
    		if addrType := *addr.Type; addrType != v1beta1.IPAddressType && addrType != v1beta1.HostnameAddressType {
    			continue
    		}
    		for _, l := range slices.Filter(gw.Spec.Listeners, autoPassthrough) {
    			networkGateway := base
    			networkGateway.Addr = addr.Value
    			networkGateway.Port = uint32(l.Port)
    			newGateways.Insert(networkGateway)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Instead, any value that's relevant for the execution of the task should be modeled as a task property.
    
    [[config_cache:requirements:build_listeners]]
    === Using build listeners
    
    Plugins and build scripts must not register any build listeners.
    That is listeners registered at configuration time that get notified at execution time.
    For example a `BuildListener` or a `TaskExecutionListener`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/gateway_test.go

    			listeners := xdstest.ExtractListenerNames(builder.gatewayListeners)
    			sort.Strings(listeners)
    			sort.Strings(tt.expectedListeners)
    			if !reflect.DeepEqual(listeners, tt.expectedListeners) {
    				t.Fatalf("Expected listeners: %v, got: %v\n%v", tt.expectedListeners, listeners, proxyGateway.MergedGateway.MergedServers)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
Back to top