Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fakecache (0.25 sec)

  1. CHANGELOG/CHANGELOG-1.13.md

       * -viper-config can be used to select a file with full path, with or without file suffix
       * the csiImageVersion/Registry flags were renamed to storage.csi.imageVersion/Registry
    * Move FakeCache to pkg/scheduler/internal/cache/fake. ([#69318](https://github.com/kubernetes/kubernetes/pull/69318), [@wgliang](https://github.com/wgliang))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    // If called on a Framer, Frames returned by calls to ReadFrame are only
    // valid until the next call to ReadFrame.
    func (fr *http2Framer) SetReuseFrames() {
    	if fr.frameCache != nil {
    		return
    	}
    	fr.frameCache = &http2frameCache{}
    }
    
    type http2frameCache struct {
    	dataFrame http2DataFrame
    }
    
    func (fc *http2frameCache) getDataFrame() *http2DataFrame {
    	if fc == 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