Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DisableCompression (0.22 sec)

  1. src/net/http/h2_bundle.go

    	}
    	if t.MaxReadFrameSize > http2maxFrameSize {
    		return http2maxFrameSize
    	}
    	return t.MaxReadFrameSize
    }
    
    func (t *http2Transport) disableCompression() bool {
    	return t.DisableCompression || (t.t1 != nil && t.t1.DisableCompression)
    }
    
    func (t *http2Transport) pingTimeout() time.Duration {
    	if t.PingTimeout == 0 {
    		return 15 * time.Second
    	}
    	return t.PingTimeout
    
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.26.md

      stability level and deprecated version.'
       ([#112907](https://github.com/kubernetes/kubernetes/pull/112907), [@logicalhan](https://github.com/logicalhan))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.16.md

    * Kubernetes client users may disable automatic compression when invoking Kubernetes APIs by setting the `DisableCompression` field on their rest.Config.  This is recommended when clients communicate primarily over high bandwidth / low latency networks where response compression does not improve end to end latency. ([#80919](https://github.com/kubernetes/kubernetes/pull/80919),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
Back to top