b:=pbuf.NewBytes(1024)// Allocate Bytes from pool.
rand.Read(b.Bytes())// Do sth.
b.Destroy()// Optional, can be auto-destroyed on GC.
b.KeepAlive()// Mark as reachable.
// After that, b will be auto-reused on GC.
}
```
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.