Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 457 for endpoints2 (0.33 sec)

  1. pkg/proxy/ipvs/proxier_test.go

    				{endpoint: "1.1.1.1:11", isLocal: false},
    				{endpoint: "1.1.1.2:11", isLocal: true},
    			},
    			makeServicePortName("ns1", "ep1", "p12", v1.ProtocolUDP): {
    				{endpoint: "1.1.1.1:12", isLocal: false},
    				{endpoint: "1.1.1.2:12", isLocal: true},
    			},
    			makeServicePortName("ns1", "ep1", "p13", v1.ProtocolUDP): {
    				{endpoint: "1.1.1.3:13", isLocal: false},
    				{endpoint: "1.1.1.4:13", isLocal: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  2. pilot/pkg/trustbundle/trustbundle.go

    	tb.endpointMutex.RLock()
    	remoteEndpoints := tb.endpoints
    	tb.endpointMutex.RUnlock()
    
    	if slices.Equal(spiffeEndpoints, remoteEndpoints) {
    		return
    	}
    	trustBundleLog.Infof("updated remote endpoints  :%v", spiffeEndpoints)
    	tb.endpointMutex.Lock()
    	tb.endpoints = spiffeEndpoints
    	tb.endpointMutex.Unlock()
    	tb.endpointUpdateChan <- struct{}{}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. internal/kms/config.go

    func expandEndpoints(s string) ([]string, error) {
    	var endpoints []string
    	for _, endpoint := range strings.Split(s, ",") {
    		endpoint = strings.TrimSpace(endpoint)
    		if endpoint == "" {
    			continue
    		}
    		if !ellipses.HasEllipses(endpoint) {
    			endpoints = append(endpoints, endpoint)
    			continue
    		}
    
    		pattern, err := ellipses.FindEllipsesPatterns(endpoint)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/fake.go

    type FakeController struct {
    	*Controller
    	Endpoints *model.EndpointIndex
    }
    
    func NewFakeControllerWithOptions(t test.Failer, opts FakeControllerOptions) (*FakeController, *xdsfake.Updater) {
    	xdsUpdater := opts.XDSUpdater
    	var endpoints *model.EndpointIndex
    	if xdsUpdater == nil {
    		endpoints = model.NewEndpointIndex(model.DisabledCache{})
    		delegate := model.NewEndpointIndexUpdater(endpoints)
    		xdsUpdater = xdsfake.NewWithDelegate(delegate)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. internal/kms/kes.go

    			return map[string]madmin.ItemState{
    				c.client.Endpoints[0]: madmin.ItemOffline,
    			}, nil
    		}
    		return map[string]madmin.ItemState{
    			c.client.Endpoints[0]: madmin.ItemOnline,
    		}, nil
    	}
    
    	type Result struct {
    		Endpoint  string
    		ItemState madmin.ItemState
    	}
    
    	var wg sync.WaitGroup
    	results := make([]Result, len(c.client.Endpoints))
    	for i := range c.client.Endpoints {
    		wg.Add(1)
    		go func(i int) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. pkg/proxy/winkernel/proxier.go

    		// Remove only remote endpoints created by this service
    		if *ep.refCount <= 0 && !ep.IsLocal() {
    			klog.V(4).InfoS("Removing endpoints, since no one is referencing it", "endpoint", ep)
    			err := ep.hns.deleteEndpoint(ep.hnsID)
    			if err == nil {
    				ep.hnsID = ""
    			} else {
    				klog.ErrorS(err, "Endpoint deletion failed", "ip", ep.IP())
    			}
    		}
    
    		ep.refCount = nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker_test.go

    )
    
    type mockEndpointVersion struct {
    	Endpoint string
    	Version  string
    	Error    error
    }
    
    // MockEtcdClient is a mock implementation of the EtcdClientInterface interface.
    type MockEtcdClient struct {
    	EndpointVersion []mockEndpointVersion
    }
    
    func (m MockEtcdClient) getEndpoints() []string {
    	var endpoints []string
    	for _, ev := range m.EndpointVersion {
    		endpoints = append(endpoints, ev.Endpoint)
    	}
    	return endpoints
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. pilot/pkg/model/endpointshards.go

    	if oldIstioEndpoints == nil {
    		// If there are no old endpoints, we should push with incoming endpoints as there is nothing to compare.
    		needPush = true
    	} else {
    		newIstioEndpoints = make([]*IstioEndpoint, 0, len(istioEndpoints))
    		// Check if new Endpoints are ready to be pushed. This check
    		// will ensure that if a new pod comes with a non ready endpoint,
    		// we do not unnecessarily push that config to Envoy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/ztunnel/configdump/testdata/dump.json

          "hostname": "namespace-istio-waypoint.bookinfo.svc.cluster.local",
          "vips": [
            "/10.96.65.117"
          ],
          "ports": {
            "15008": 15008,
            "15021": 15021
          },
          "endpoints": {
            "Kubernetes//Pod/bookinfo/namespace-istio-waypoint-d94944bf6-z89g2:/10.244.2.52": {
              "workloadUid": "Kubernetes//Pod/bookinfo/namespace-istio-waypoint-d94944bf6-z89g2",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  10. pkg/bootstrap/testdata/stats_compression_gzip_golden.json

            "type": "STATIC",
            "connect_timeout": "0.250s",
            "lb_policy": "ROUND_ROBIN",
            "load_assignment": {
              "cluster_name": "prometheus_stats",
              "endpoints": [{
                "lb_endpoints": [{
                  "endpoint": {
                    "address":{
                      "socket_address": {
                        "protocol": "TCP",
                        "address": "127.0.0.1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top