Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for timeCh (0.3 sec)

  1. src/net/http/h2_bundle.go

    	return err
    }
    
    // A timer is a time.Timer, as an interface which can be replaced in tests.
    type http2timer = interface {
    	C() <-chan time.Time
    	Reset(d time.Duration) bool
    	Stop() bool
    }
    
    // timeTimer adapts a time.Timer to the timer interface.
    type http2timeTimer struct {
    	*time.Timer
    }
    
    func (t http2timeTimer) C() <-chan time.Time { return t.Timer.C }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top