Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for maxReadFrameSize (0.23 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/secure_serving.go

    	// shrink the per-stream buffer and max framesize from the 1MB default while still accommodating most API POST requests in a single frame
    	http2Options.MaxUploadBufferPerStream = resourceBody99Percentile
    	http2Options.MaxReadFrameSize = resourceBody99Percentile
    
    	// use the overridden concurrent streams setting or make the default of 250 explicit so we can size MaxUploadBufferPerConnection appropriately
    	if s.HTTP2MaxStreamsPerConnection > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 20:54:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    }
    
    func (t *http2Transport) maxFrameReadSize() uint32 {
    	if t.MaxReadFrameSize == 0 {
    		return 0 // use the default provided by the peer
    	}
    	if t.MaxReadFrameSize < http2minMaxFrameSize {
    		return http2minMaxFrameSize
    	}
    	if t.MaxReadFrameSize > http2maxFrameSize {
    		return http2maxFrameSize
    	}
    	return t.MaxReadFrameSize
    }
    
    func (t *http2Transport) disableCompression() bool {
    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