Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for danglingMetaErrsCount (0.09 sec)

  1. cmd/erasure-healing.go

    			notFound++
    		case errVolumeNotEmpty:
    			foundNotEmpty++
    		default:
    			otherFound++
    		}
    	}
    	found = found + foundNotEmpty + otherFound
    	return found < notFound && found > 0
    }
    
    func danglingMetaErrsCount(cerrs []error) (notFoundCount int, nonActionableCount int) {
    	for _, readErr := range cerrs {
    		if readErr == nil {
    			continue
    		}
    		switch {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 34.6K bytes
    - Viewed (0)
Back to top