...

Source file src/go.etcd.io/bbolt/bolt_arm64.go

Documentation: go.etcd.io/bbolt

     1  //go:build arm64
     2  // +build arm64
     3  
     4  package bbolt
     5  
     6  // maxMapSize represents the largest mmap size supported by Bolt.
     7  const maxMapSize = 0xFFFFFFFFFFFF // 256TB
     8  
     9  // maxAllocSize is the size used when creating array pointers.
    10  const maxAllocSize = 0x7FFFFFFF
    11  

View as plain text