...

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

Documentation: go.etcd.io/bbolt

     1  //go:build mips64 || mips64le
     2  // +build mips64 mips64le
     3  
     4  package bbolt
     5  
     6  // maxMapSize represents the largest mmap size supported by Bolt.
     7  const maxMapSize = 0x8000000000 // 512GB
     8  
     9  // maxAllocSize is the size used when creating array pointers.
    10  const maxAllocSize = 0x7FFFFFFF
    11  

View as plain text