Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Account (0.17 sec)

  1. istioctl/pkg/writer/envoy/configdump/endpoint.go

    	for _, e := range dump.GetDynamicEndpointConfigs() {
    		cla, epCount := retrieveEndpoint(e.EndpointConfig, filter)
    		if epCount != 0 {
    			endpoints = append(endpoints, cla)
    		}
    	}
    	for _, e := range dump.GetStaticEndpointConfigs() {
    		cla, epCount := retrieveEndpoint(e.EndpointConfig, filter)
    		if epCount != 0 {
    			endpoints = append(endpoints, cla)
    		}
    	}
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sun Apr 21 17:42:54 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  2. cmd/endpoint.go

    func (l EndpointServerPools) HTTPS() bool {
    	return l[0].Endpoints.HTTPS()
    }
    
    // NEndpoints - returns number of endpoints
    func (l EndpointServerPools) NEndpoints() (count int) {
    	for _, ep := range l {
    		count += len(ep.Endpoints)
    	}
    	return count
    }
    
    // GridHosts will return all peers, including local.
    // in websocket grid compatible format, The local peer
    // is returned as a separate string.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 34.1K bytes
    - Viewed (0)
Back to top