Home
last modified time | relevance | path

Searched defs:Weighted (Results 1 – 1 of 1) sorted by relevance

/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/sync/semaphore/
Dsemaphore.go28 type Weighted struct { struct
29 size int64
30 cur int64
31 mu sync.Mutex
32 waiters list.List
38 func (s *Weighted) Acquire(ctx context.Context, n int64) error {
111 func (s *Weighted) TryAcquire(n int64) bool {
122 func (s *Weighted) Release(n int64) {
133 func (s *Weighted) notifyWaiters() {