Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for possibleSetCounts (0.15 sec)

  1. cmd/endpoint-ellipses.go

    		}
    	}
    
    	commonSize := getDivisibleSize(totalSizes)
    	possibleSetCounts := func(setSize uint64) (ss []uint64) {
    		for _, s := range setSizes {
    			if setSize%s == 0 {
    				ss = append(ss, s)
    			}
    		}
    		return ss
    	}
    
    	setCounts := possibleSetCounts(commonSize)
    	if len(setCounts) == 0 {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 15:54:03 GMT 2024
    - 14.7K bytes
    - Viewed (0)
Back to top