Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for localDisksCount (0.2 sec)

  1. cmd/endpoint.go

    func (l EndpointServerPools) NLocalDisksPathsPerPool() []int {
    	localDisksCount := make([]int, len(l))
    	for i, ep := range l {
    		for _, endpoint := range ep.Endpoints {
    			if endpoint.IsLocal {
    				localDisksCount[i]++
    			}
    		}
    	}
    	return localDisksCount
    }
    
    // FirstLocal returns true if the first endpoint is local.
    func (l EndpointServerPools) FirstLocal() bool {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Jun 21 22:22:24 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top