Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,299 for endpoints2 (0.2 sec)

  1. releasenotes/notes/endpoint-before-pod.yaml

    Brian Avery <******@****.***> 1597180858 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 170 bytes
    - Viewed (0)
  2. pkg/controller/endpointslicemirroring/reconciler_helpers.go

    		endpointsByKey:      map[addrTypePortMapKey]endpointsliceutil.EndpointSet{},
    		numDesiredEndpoints: 0,
    	}
    }
    
    // desiredCalc helps calculate desired endpoints and ports.
    type desiredCalc struct {
    	portsByKey          map[addrTypePortMapKey][]discovery.EndpointPort
    	endpointsByKey      map[addrTypePortMapKey]endpointsliceutil.EndpointSet
    	numDesiredEndpoints int
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/cri_stats_provider_windows_test.go

    		for _, stat := range c.hcsStats {
    			e, found := uniqueEndpoints[stat.EndpointId]
    			if found {
    				// add the container
    				e.SharedContainers = append(e.SharedContainers, c.container.ID)
    				continue
    			}
    
    			uniqueEndpoints[stat.EndpointId] = &hcsshim.HNSEndpoint{
    				Name:             stat.EndpointId,
    				Id:               stat.EndpointId,
    				SharedContainers: []string{c.container.ID},
    			}
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 17 00:02:10 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/util/util.go

    func cloneLocalityLbEndpoints(endpoints []*endpoint.LocalityLbEndpoints) []*endpoint.LocalityLbEndpoints {
    	out := make([]*endpoint.LocalityLbEndpoints, 0, len(endpoints))
    	for _, ep := range endpoints {
    		clone := CloneLocalityLbEndpoint(ep)
    		out = append(out, clone)
    	}
    	return out
    }
    
    // return a shallow copy of LocalityLbEndpoints
    func CloneLocalityLbEndpoint(ep *endpoint.LocalityLbEndpoints) *endpoint.LocalityLbEndpoints {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. pkg/controller/endpointslicemirroring/reconciler_test.go

    	// canonicalize endpoints to match the expected endpoints, otherwise the test
    	// that creates more endpoints than allowed fail becaused the list of final
    	// endpoints doesn't match.
    	for _, epSubset := range endpointsv1.RepackSubsets(endpoints.Subsets) {
    		if len(epSubset.Addresses) == 0 && len(epSubset.NotReadyAddresses) == 0 {
    			continue
    		}
    
    		var matchingEndpointsV4, matchingEndpointsV6 []discovery.Endpoint
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  6. pkg/workloadapi/workload.proto

        // that match less (or, eventually, none) preferences.
        // For instance, with `[NETWORK, REGION, ZONE]`, we will send to:
        // 1. Endpoints matching `[NETWORK, REGION, ZONE]`
        // 2. Endpoints matching `[NETWORK, REGION]`
        // 3. Endpoints matching `[NETWORK]`
        // 4. Any endpoints
        FAILOVER = 2;
      }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/envoy/clusters/clusters.go

    	clusterEndpoint = retrieveSortedEndpointClusterSlice(clusterEndpoint)
    	fmt.Fprintln(w, "ENDPOINT\tSTATUS\tOUTLIER CHECK\tCLUSTER")
    	for _, ce := range clusterEndpoint {
    		var endpoint string
    		if ce.port != 0 {
    			endpoint = ce.address + ":" + strconv.Itoa(ce.port)
    		} else {
    			endpoint = ce.address
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  8. pkg/kubelet/stats/cri_stats_provider_windows.go

    			continue
    		}
    
    		// only add the interface for each container if not already in the list
    		for _, cId := range endpoint.SharedContainers {
    			networkStat, found := networkStats[cId]
    			if found && networkStat.Name != endpoint.Name {
    				iStat := hcsStatToInterfaceStat(endpointStats, endpoint.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 07:03:11 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. pilot/pkg/xds/endpoints/endpoint_builder.go

    		healthStatus = model.Draining
    	}
    
    	ep := &endpoint.LbEndpoint{
    		HealthStatus: corev3.HealthStatus(healthStatus),
    		LoadBalancingWeight: &wrapperspb.UInt32Value{
    			Value: e.GetLoadBalancingWeight(),
    		},
    		HostIdentifier: &endpoint.LbEndpoint_Endpoint{
    			Endpoint: &endpoint.Endpoint{
    				Address: addr,
    			},
    		},
    		Metadata: &corev3.Metadata{},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  10. releasenotes/notes/drop-legacy-spiffe-bundle-endpoints.yaml

    John Howard <******@****.***> 1683594068 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 09 01:01:08 UTC 2023
    - 134 bytes
    - Viewed (0)
Back to top