...

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

Documentation: go.etcd.io/bbolt

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

View as plain text