...

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

Documentation: go.etcd.io/bbolt

     1  //go:build ppc64le
     2  // +build ppc64le
     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