Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for fakecache (0.2 sec)

  1. pkg/kubelet/pod_workers_test.go

    	realPodWorkers := newPodWorkers(
    		realPodSyncer,
    		fakeRecorder, queue.NewBasicWorkQueue(&clock.RealClock{}), time.Second, time.Second, fakeCache)
    	fakePodWorkers := &fakePodWorkers{
    		syncPodFn: kubeletForFakeWorkers.SyncPod,
    		cache:     fakeCache,
    		t:         t,
    	}
    
    	tests := []struct {
    		pod       *v1.Pod
    		mirrorPod *v1.Pod
    	}{
    		{
    			&v1.Pod{},
    			&v1.Pod{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  2. pkg/scheduler/schedule_one_test.go

    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/volumebinding"
    	frameworkruntime "k8s.io/kubernetes/pkg/scheduler/framework/runtime"
    	internalcache "k8s.io/kubernetes/pkg/scheduler/internal/cache"
    	fakecache "k8s.io/kubernetes/pkg/scheduler/internal/cache/fake"
    	internalqueue "k8s.io/kubernetes/pkg/scheduler/internal/queue"
    	"k8s.io/kubernetes/pkg/scheduler/profile"
    	st "k8s.io/kubernetes/pkg/scheduler/testing"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  3. src/runtime/export_test.go

    // Expose pageCache for testing.
    type PageCache pageCache
    
    const PageCachePages = pageCachePages
    
    func NewPageCache(base uintptr, cache, scav uint64) PageCache {
    	return PageCache(pageCache{base: base, cache: cache, scav: scav})
    }
    func (c *PageCache) Empty() bool   { return (*pageCache)(c).empty() }
    func (c *PageCache) Base() uintptr { return (*pageCache)(c).base }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/ViewHelper.java

        protected ActionHook actionHook = new ActionHook();
    
        protected final Set<String> inlineMimeTypeSet = new HashSet<>();
    
        protected Cache<String, FacetResponse> facetCache;
    
        protected long facetCacheDuration = 60 * 10L; // 10min
    
        protected int textFragmentPrefixLength;
    
        protected int textFragmentSuffixLength;
    
        protected int textFragmentSize;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:58:45 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  5. src/runtime/runtime2.go

    	syscalltick uint32     // incremented on every system call
    	sysmontick  sysmontick // last tick observed by sysmon
    	m           muintptr   // back-link to associated m (nil if idle)
    	mcache      *mcache
    	pcache      pageCache
    	raceprocctx uintptr
    
    	deferpool    []*_defer // pool of available defer structs (see panic.go)
    	deferpoolbuf [32]*_defer
    
    	// Cache of goroutine ids, amortizes accesses to runtime·sched.goidgen.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  6. 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