Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Append (0.14 sec)

  1. cmd/net.go

    	for _, ip := range ipV4s {
    		ips = append(ips, ip.String())
    	}
    
    	return append(nonIPs, ips...)
    }
    
    func getConsoleEndpoints() (consoleEndpoints []string) {
    	if globalBrowserRedirectURL != nil {
    		return []string{globalBrowserRedirectURL.String()}
    	}
    	var ipList []string
    	if globalMinioConsoleHost == "" {
    		ipList = sortIPs(mustGetLocalIP4().ToSlice())
    		ipList = append(ipList, mustGetLocalIP6().ToSlice()...)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Mar 26 15:00:38 GMT 2024
    - 9.3K bytes
    - Viewed (0)
Back to top