Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 792 for Routing (0.85 sec)

  1. src/net/interface.go

    // Multiple names sharing the index are managed by first-come
    // first-served basis for consistency.
    type ipv6ZoneCache struct {
    	sync.RWMutex                // guard the following
    	lastFetched  time.Time      // last time routing information was fetched
    	toIndex      map[string]int // interface name to its index
    	toName       map[int]string // interface index to its name
    }
    
    var zoneCache = ipv6ZoneCache{
    	toIndex: make(map[string]int),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. src/syscall/types_linux.go

    	SizeofICMPv6Filter      = C.sizeof_struct_icmp6_filter
    	SizeofUcred             = C.sizeof_struct_ucred
    	SizeofTCPInfo           = C.sizeof_struct_tcp_info
    )
    
    // Netlink routing and interface messages
    
    const (
    	IFA_UNSPEC          = C.IFA_UNSPEC
    	IFA_ADDRESS         = C.IFA_ADDRESS
    	IFA_LOCAL           = C.IFA_LOCAL
    	IFA_LABEL           = C.IFA_LABEL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:15:45 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/annotation_key_constants.go

    	// annotation.
    	DeprecatedAnnotationTopologyAwareHints = "service.kubernetes.io/topology-aware-hints"
    
    	// AnnotationTopologyMode can be used to enable or disable Topology Aware
    	// Routing for a Service. Well known values are "Auto" and "Disabled".
    	// Implementations may choose to develop new topology approaches, exposing
    	// them with domain-prefixed values. For example, "example.com/lowest-rtt"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1beta1/types.go

    	// secretName is the name of the secret used to terminate TLS traffic on
    	// port 443. Field is left optional to allow TLS routing based on SNI
    	// hostname alone. If the SNI host in a listener conflicts with the "Host"
    	// header field used by an IngressRule, the SNI host is used for termination
    	// and value of the Host header is used for routing.
    	// +optional
    	SecretName string `json:"secretName,omitempty" protobuf:"bytes,2,opt,name=secretName"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:30 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/discovery/v1/generated.proto

    }
    
    // EndpointHints provides hints describing how an endpoint should be consumed.
    message EndpointHints {
      // forZones indicates the zone(s) this endpoint should be consumed by to
      // enable topology aware routing.
      // +listType=atomic
      repeated ForZone forZones = 1;
    }
    
    // EndpointPort represents a Port used by an EndpointSlice
    // +structType=atomic
    message EndpointPort {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. architecture/ambient/ztunnel.md

    ## Traffic routing
    
    Based on the three [redirection](#redirection) paths, the ztunnel has three primary types of traffic it handles.
    
    ### Outbound
    
    Requests leaving a pod go through the "outbound" code path on port 15001.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/networkfilter_test.go

    			})
    			lb := ListenerBuilder{node: proxy, push: cg.PushContext()}
    			filters := lb.buildOutboundNetworkFilters(tt.routes, &model.Port{Port: 443},
    				config.Meta{Name: "routing-config-for-example-com", Namespace: "not-default"}, false)
    
    			tcpProxy := xdstest.ExtractTCPProxy(t, &listener.FilterChain{Filters: filters})
    			if !reflect.DeepEqual(tcpProxy.IdleTimeout, tt.expected) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. cluster/gce/windows/README-GCE-Windows-kube-up.md

    instructions in the previous section.
    
    First, set the following environment variables which are required for
    controlling the number of Linux and Windows nodes in the cluster and for
    enabling IP aliases (which are required for Windows pod routing). At least one
    Linux worker node is required and two are recommended because many default
    cluster-addons (e.g., `kube-dns`) need to run on Linux nodes. The master control
    plane only runs on Linux.
    
    ```bash
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 21:39:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  9. internal/grid/README.md

    In addition, there can be several *static* subroutes used to differentiate between different handlers of the same ID.
    A subroute on a client must match a subroute on the server. So routes cannot be used for dynamic routing, unlike HTTP.
    
    Handlers should remain backwards compatible. If a breaking API change is required, a new handler ID should be created.
    
    ## Setup & Configuration
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. pilot/pkg/xds/endpoints/ep_filters.go

    				if util.GetEndpointHost(lbEp) != "" {
    					lbEndpoints.append(ep.istioEndpoints[i], lbEp)
    				}
    
    				continue
    			}
    			// Cross-network traffic relies on mTLS to be enabled for SNI routing
    			// TODO BTS may allow us to work around this
    			if !isMtlsEnabled(lbEp) {
    				continue
    			}
    
    			// Apply the weight for this endpoint to the network gateways.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top