Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Nei (0.16 sec)

  1. cmd/xl-storage-format-v1.go

    // - distribution indexes are different
    func (ei ErasureInfo) Equal(nei ErasureInfo) bool {
    	if ei.Algorithm != nei.Algorithm {
    		return false
    	}
    	if ei.DataBlocks != nei.DataBlocks {
    		return false
    	}
    	if ei.ParityBlocks != nei.ParityBlocks {
    		return false
    	}
    	if ei.BlockSize != nei.BlockSize {
    		return false
    	}
    	if len(ei.Distribution) != len(nei.Distribution) {
    		return false
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 8.2K bytes
    - Viewed (0)
Back to top