Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for avail (0.03 sec)

  1. src/net/http/h2_bundle.go

    // It reports whether both windows have available capacity.
    func http2takeInflows(f1, f2 *http2inflow, n uint32) bool {
    	if n > uint32(f1.avail) || n > uint32(f2.avail) {
    		return false
    	}
    	f1.avail -= int32(n)
    	f2.avail -= int32(n)
    	return true
    }
    
    // outflow is the outbound flow control window's size.
    type http2outflow struct {
    	_ http2incomparable
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. api/go1.16.txt

    pkg syscall (darwin-arm64), type Stat_t struct, Size int64
    pkg syscall (darwin-arm64), type Stat_t struct, Uid uint32
    pkg syscall (darwin-arm64), type Statfs_t struct
    pkg syscall (darwin-arm64), type Statfs_t struct, Bavail uint64
    pkg syscall (darwin-arm64), type Statfs_t struct, Bfree uint64
    pkg syscall (darwin-arm64), type Statfs_t struct, Blocks uint64
    pkg syscall (darwin-arm64), type Statfs_t struct, Bsize uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
Back to top