Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for formatCountMap (0.14 sec)

  1. cmd/format-erasure_test.go

    			}
    		}
    		formatHashes[i] = hex.EncodeToString(h.Sum(nil))
    	}
    
    	formatCountMap := make(map[string]int)
    	for _, hash := range formatHashes {
    		if hash == "" {
    			continue
    		}
    		formatCountMap[hash]++
    	}
    
    	maxHash := ""
    	maxCount := 0
    	for hash, count := range formatCountMap {
    		if count > maxCount {
    			maxCount = count
    			maxHash = hash
    		}
    	}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 15 08:25:46 GMT 2024
    - 12.9K bytes
    - Viewed (0)
  2. cmd/format-erasure.go

    func getFormatErasureInQuorum(formats []*formatErasureV3) (*formatErasureV3, error) {
    	formatCountMap := make(map[int]int, len(formats))
    	for _, format := range formats {
    		if format == nil {
    			continue
    		}
    		formatCountMap[format.Drives()]++
    	}
    
    	maxDrives := 0
    	maxCount := 0
    	for drives, count := range formatCountMap {
    		if count > maxCount {
    			maxCount = count
    			maxDrives = drives
    		}
    	}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 15:54:03 GMT 2024
    - 23.2K bytes
    - Viewed (0)
Back to top