| 6 | import "github.com/CodisLabs/codis/pkg/utils/sync2/atomic2" |
| 7 | |
| 8 | type Slice interface { |
| 9 | Type() string |
| 10 | |
| 11 | Buffer() []byte |
| 12 | reclaim() |
| 13 | |
| 14 | Slice2(beg, end int) Slice |
| 15 | Slice3(beg, end, cap int) Slice |
| 16 | Parent() Slice |
| 17 | } |
| 18 | |
| 19 | var maxOffheapBytes atomic2.Int64 |
| 20 |
no outgoing calls
no test coverage detected