(id uint64)
| 85 | } |
| 86 | |
| 87 | func (g *IDGenerator) CompareAndSetMaxId(id uint64) { |
| 88 | if id > g.currentMaxId { |
| 89 | g.currentMaxId = id |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | func (bm *BucketManager) ExistBucket(ds core.Ds, name core.BucketName) bool { |
| 94 | bucket, err := bm.GetBucket(ds, name) |
no outgoing calls
no test coverage detected