Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getPartNum (0.08 sec)

  1. docs/debugging/xl-meta/main.go

    	names := make([][]string, 0)
    	/// part, verID, file
    	files := make([]map[string][]string, 0)
    	partNums := make(map[int]int)
    	for k, v := range all {
    		for _, file := range v {
    			part := getPartNum(file)
    			partIdx, ok := partNums[part]
    			if !ok {
    				partIdx = len(names)
    				partNums[part] = partIdx
    				names = append(names, nil)
    				files = append(files, make(map[string][]string))
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top