Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for uwcache (0.24 sec)

  1. pkg/controller/job/job_controller_test.go

    					Type:   batch.JobComplete,
    					Status: v1.ConditionTrue,
    				})
    				return j
    			}(),
    			inCache: true,
    		},
    	}
    	for name, tc := range cases {
    		t.Run(name, func(t *testing.T) {
    			if tc.inCache {
    				if err := sharedInformers.Batch().V1().Jobs().Informer().GetIndexer().Add(tc.job); err != nil {
    					t.Fatalf("Failed to insert job in index: %v", err)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    func (b *Builder) cacheObjdirFile(a *Action, c cache.Cache, name string) error {
    	f, err := os.Open(a.Objdir + name)
    	if err != nil {
    		return err
    	}
    	defer f.Close()
    	_, _, err = c.Put(cache.Subkey(a.actionID, name), f)
    	return err
    }
    
    func (b *Builder) findCachedObjdirFile(a *Action, c cache.Cache, name string) (string, error) {
    	file, _, err := cache.GetFile(c, cache.Subkey(a.actionID, name))
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. pkg/controller/garbagecollector/garbagecollector_test.go

    	gc.attemptToDeleteItem(context.TODO(), podToGCNode(rc2Pod1))
    	// rc1 should already be in the cache, no request should be sent. rc1 should be promoted in the UIDCache
    	gc.attemptToDeleteItem(context.TODO(), podToGCNode(rc1Pod2))
    	// after this call, rc2 should be evicted from the UIDCache
    	gc.attemptToDeleteItem(context.TODO(), podToGCNode(rc3Pod1))
    	// check cache
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    //
    // The go command caches build outputs for reuse in future builds.
    // The default location for cache data is a subdirectory named go-build
    // in the standard user cache directory for the current operating system.
    // Setting the GOCACHE environment variable overrides this default,
    // and running 'go env GOCACHE' prints the current cache directory.
    //
    // The go command periodically deletes cached data that has not been
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    		serviceHasSynced = kubeInformers.Core().V1().Services().Informer().HasSynced
    		kubeInformers.Start(wait.NeverStop)
    	} else {
    		serviceIndexer := cache.NewIndexer(cache.MetaNamespaceKeyFunc, cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc})
    		serviceLister = corelisters.NewServiceLister(serviceIndexer)
    		serviceHasSynced = func() bool { return true }
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top