Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for indexByte (0.1 sec)

  1. src/net/http/h2_bundle.go

    	defer http2littleBuf.Put(bp)
    	b := *bp
    	b = b[:runtime.Stack(b, false)]
    	// Parse the 4707 out of "goroutine 4707 ["
    	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 {
    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