128KB
(a, b uint64)
| 43 | const BlockSize = 128 << 10 // 128KB |
| 44 | |
| 45 | func min(a, b uint64) uint64 { |
| 46 | if a < b { |
| 47 | return a |
| 48 | } |
| 49 | return b |
| 50 | } |
| 51 | |
| 52 | // blockRange describes a range of blocks. |
| 53 | // If the first and last block are the same, the effective data range |
no outgoing calls
no test coverage detected