Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for http2parseUintBytes (0.16 sec)

  1. src/net/http/h2_bundle.go

    	b = bytes.TrimPrefix(b, http2goroutineSpace)
    	i := bytes.IndexByte(b, ' ')
    	if i < 0 {
    		panic(fmt.Sprintf("No space found in %q", b))
    	}
    	b = b[:i]
    	n, err := http2parseUintBytes(b, 10, 64)
    	if err != nil {
    		panic(fmt.Sprintf("Failed to parse goroutine ID out of %q: %v", b, err))
    	}
    	return n
    }
    
    var http2littleBuf = sync.Pool{
    	New: func() interface{} {
    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