Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 530 for endpoints2 (0.18 sec)

  1. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.json

    [
        {
            "clusterName": "agent",
            "endpoints": [
                {
                    "locality": {},
                    "lbEndpoints": [
                        {
                            "endpoint": {
                                "address": {
                                    "socketAddress": {
                                        "address": "127.0.0.1",
                                        "portValue": 15020
                                    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 40.4K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.yaml

    - clusterName: agent
      endpoints:
      - lbEndpoints:
        - endpoint:
            address:
              socketAddress:
                address: 127.0.0.1
                portValue: 15020
            healthCheckConfig: {}
          healthStatus: HEALTHY
          loadBalancingWeight: 1
        locality: {}
      policy:
        overprovisioningFactor: 140
    - clusterName: outbound|9402||cert-manager-istio-csr-metrics.cert-manager.svc.cluster.local
      endpoints:
      - lbEndpoints:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/controller.go

    	}
    	s.mutex.RUnlock()
    
    	if len(allInstances) > 0 {
    		endpoints = make(map[instancesKey][]*model.IstioEndpoint)
    		for _, instance := range allInstances {
    			key := makeInstanceKey(instance)
    			endpoints[key] = append(endpoints[key], instance.Endpoint)
    		}
    
    	}
    	return endpoints
    }
    
    // GetProxyServiceTargets lists service targets co-located with a given proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  4. pkg/registry/discovery/endpointslice/strategy_test.go

    				Endpoints: []discovery.Endpoint{{
    					Addresses: []string{"1.2.3.4"},
    				}},
    			},
    		},
    		{
    			name: "changed endpoints should increment generation",
    			oldEPS: &discovery.EndpointSlice{
    				ObjectMeta: metav1.ObjectMeta{Generation: 1},
    				Endpoints: []discovery.Endpoint{{
    					Addresses: []string{"1.2.3.4"},
    				}},
    			},
    			newEPS: &discovery.EndpointSlice{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/graph/AbstractNetwork.java

      }
    
      @Override
      public boolean hasEdgeConnecting(EndpointPair<N> endpoints) {
        checkNotNull(endpoints);
        if (!isOrderingCompatible(endpoints)) {
          return false;
        }
        return hasEdgeConnecting(endpoints.nodeU(), endpoints.nodeV());
      }
    
      /**
       * Throws an IllegalArgumentException if the ordering of {@code endpoints} is not compatible with
       * the directionality of this graph.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 13 18:17:09 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. pkg/proxy/winkernel/hns.go

    		return nil, err
    	}
    
    	endpoints, err := hns.hcn.ListEndpoints()
    	if err != nil {
    		return nil, fmt.Errorf("failed to list endpoints: %w", err)
    	}
    	for _, endpoint := range endpoints {
    		equal := false
    		if endpoint.IpConfigurations != nil && len(endpoint.IpConfigurations) > 0 {
    			equal = endpoint.IpConfigurations[0].IpAddress == ip
    
    			if !equal && len(endpoint.IpConfigurations) > 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 21:21:12 UTC 2023
    - 15K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/etcd/etcd.go

    		return nil, errors.Wrapf(err, "error creating etcd client for %v endpoints", endpoints)
    	}
    
    	// synchronizes client's endpoints with the known endpoints from the etcd membership.
    	err = etcdClient.Sync()
    	if err != nil {
    		return nil, errors.Wrap(err, "error syncing endpoints with etcd")
    	}
    	klog.V(1).Infof("update etcd endpoints: %s", strings.Join(etcdClient.Endpoints, ","))
    
    	return etcdClient, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/graph/AbstractNetwork.java

      }
    
      @Override
      public boolean hasEdgeConnecting(EndpointPair<N> endpoints) {
        checkNotNull(endpoints);
        if (!isOrderingCompatible(endpoints)) {
          return false;
        }
        return hasEdgeConnecting(endpoints.nodeU(), endpoints.nodeV());
      }
    
      /**
       * Throws an IllegalArgumentException if the ordering of {@code endpoints} is not compatible with
       * the directionality of this graph.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 13 18:17:09 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    			if svc != nil {
    				fep := esc.c.collectWorkloadInstanceEndpoints(svc)
    				endpoints = append(endpoints, fep...)
    			} else {
    				log.Debugf("Handle EDS endpoint: skip collecting workload entry endpoints, service %s/ has not been populated",
    					hostname)
    			}
    		}
    
    		esc.c.opts.XDSUpdater.EDSUpdate(shard, string(hostname), namespace, endpoints)
    	}
    }
    
    // getPod fetches a pod by name or IP address.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. pilot/pkg/xds/endpoints/ep_filters_test.go

    			{
    				Network: "network3",
    				Cluster: "cluster3",
    				Addr:    "3.3.3.3",
    				Port:    443,
    			},
    		},
    	})
    	return ds
    }
    
    // testShards creates endpoints to be handed to the filter:
    //   - 2 endpoints in network1
    //   - 1 endpoints in network2
    //   - 0 endpoints in network3
    //   - 1 endpoints in network4
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
Back to top