blob: 3b8abcd2d1fc282c4f63eb1a8e6e2229a41c0fe3 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
package read
import (
"os"
"codeberg.org/lindenii/furgit/commitgraph/bloom"
)
type layer struct {
path string
file *os.File
data []byte
numCommits uint32
baseCount uint32
globalFrom uint32
chunkOIDFanout []byte
chunkOIDLookup []byte
chunkCommit []byte
chunkGeneration []byte
chunkGenerationOv []byte
chunkExtraEdges []byte
chunkBloomIndex []byte
chunkBloomData []byte
chunkBaseGraphs []byte
bloomSettings *bloom.Settings
}
|