Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for max_bytes (0.12 sec)

  1. src/runtime/pprof/pprof_test.go

    // known to contain an inlined function call within the first maxBytes bytes.
    func containsInlinedCall(f any, maxBytes int) bool {
    	_, found := findInlinedCall(f, maxBytes)
    	return found
    }
    
    // findInlinedCall returns the PC of an inlined function call within
    // the function body for the function f if any.
    func findInlinedCall(f any, maxBytes int) (pc uint64, found bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  2. src/reflect/value.go

    }
    
    func makeString(f flag, v string, t Type) Value {
    	ret := New(t).Elem()
    	ret.SetString(v)
    	ret.flag = ret.flag&^flagAddr | f
    	return ret
    }
    
    func makeBytes(f flag, v []byte, t Type) Value {
    	ret := New(t).Elem()
    	ret.SetBytes(v)
    	ret.flag = ret.flag&^flagAddr | f
    	return ret
    }
    
    func makeRunes(f flag, v []rune, t Type) Value {
    	ret := New(t).Elem()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    		err = ferr
    	}
    	return err
    }
    
    // awaitFlowControl waits for [1, min(maxBytes, cc.cs.maxFrameSize)] flow
    // control tokens from the server.
    // It returns either the non-zero number of tokens taken or an error
    // if the stream is dead.
    func (cs *http2clientStream) awaitFlowControl(maxBytes int) (taken int32, err error) {
    	cc := cs.cc
    	ctx := cs.ctx
    	cc.mu.Lock()
    	defer cc.mu.Unlock()
    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