Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for getDecommissionPoolSpaceInfo (0.2 seconds)

  1. cmd/erasure-server-pool-decom.go

    }
    
    func (d decomError) Error() string {
    	return d.Err
    }
    
    type poolSpaceInfo struct {
    	Free  int64
    	Total int64
    	Used  int64
    }
    
    func (z *erasureServerPools) getDecommissionPoolSpaceInfo(idx int) (pi poolSpaceInfo, err error) {
    	if idx < 0 {
    		return pi, errInvalidArgument
    	}
    	if idx+1 > len(z.serverPools) {
    		return pi, errInvalidArgument
    	}
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 42.2K bytes
    - Click Count (1)
Back to Top