Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for GetAllStrings (0.12 sec)

  1. cmd/endpoint.go

    func (endpoints Endpoints) GetString(i int) string {
    	if i < 0 || i >= len(endpoints) {
    		return ""
    	}
    	return endpoints[i].String()
    }
    
    // GetAllStrings - returns allstring of all endpoints
    func (endpoints Endpoints) GetAllStrings() (all []string) {
    	for _, e := range endpoints {
    		all = append(all, e.String())
    	}
    	return
    }
    
    func hostResolveToLocalhost(endpoint Endpoint) bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top