Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 50 for Indexes (0.81 sec)

  1. cmd/storage-rest-client.go

    	endpoint   Endpoint
    	restClient *rest.Client
    	gridConn   *grid.Subroute
    	diskID     atomic.Pointer[string]
    
    	diskInfoCache *cachevalue.Cache[DiskInfo]
    }
    
    // Retrieve location indexes.
    func (client *storageRESTClient) GetDiskLoc() (poolIdx, setIdx, diskIdx int) {
    	return client.endpoint.PoolIdx, client.endpoint.SetIdx, client.endpoint.DiskIdx
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/test.go

    		ptest.GoFiles = append(ptest.GoFiles, p.GoFiles...)
    		ptest.GoFiles = append(ptest.GoFiles, p.TestGoFiles...)
    		ptest.Target = ""
    		// Note: The preparation of the vet config requires that common
    		// indexes in ptest.Imports and ptest.Internal.RawImports
    		// all line up (but RawImports can be shorter than the others).
    		// That is, for 0 ≤ i < len(RawImports),
    		// RawImports[i] is the import string in the program text, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/controller.go

    		s.serviceInstances.deleteInstanceKeys(configKeyWithParent{configKey: configKey, parent: key}, old)
    	}
    	if event == model.EventDelete {
    		s.serviceInstances.deleteAllServiceEntryInstances(key)
    	} else {
    		// Update the indexes with new instances.
    		for ckey, value := range serviceInstancesByConfig {
    			s.serviceInstances.addInstances(configKeyWithParent{configKey: ckey, parent: key}, value)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/liveness/plive.go

    	// current Block during liveness.epilogue. Indexed in Value
    	// order for that block. Additionally, for the entry block
    	// livevars[0] is the entry bitmap. liveness.compact moves
    	// these to stackMaps.
    	livevars []bitvec.BitVec
    
    	// livenessMap maps from safe points (i.e., CALLs) to their
    	// liveness map indexes.
    	livenessMap Map
    	stackMapSet bvecSet
    	stackMaps   []bitvec.BitVec
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_pod_control_test.go

    	fakeClient := &fake.Clientset{}
    	claims := getPersistentVolumeClaims(set, pod)
    	indexer := cache.NewIndexer(cache.MetaNamespaceKeyFunc, cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc})
    	for k := range claims {
    		claim := claims[k]
    		indexer.Add(&claim)
    	}
    	claimLister := corelisters.NewPersistentVolumeClaimLister(indexer)
    	control := NewStatefulPodControl(fakeClient, nil, claimLister, recorder)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  6. pkg/scheduler/scheduler_test.go

    		wantErr     string
    	}{
    		{
    			name: "register indexer, no conflicts",
    			entrypoints: map[string]frameworkruntime.PluginFactory{
    				"AddIndexer": func(ctx context.Context, obj runtime.Object, handle framework.Handle) (framework.Plugin, error) {
    					podInformer := handle.SharedInformerFactory().Core().V1().Pods()
    					err := podInformer.Informer().AddIndexers(cache.Indexers{
    						"nodeName": indexByPodSpecNodeName,
    					})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval_test.go

    	startIndex, endIndex, locker := 0, len(events), &sync.Mutex{}
    	indexer := func(i int) *watchCacheEvent {
    		if len(events) == 0 {
    			return nil
    		}
    		return events[i]
    	}
    	indexValidator := func(_ int) bool { return true }
    
    	return newCacheInterval(startIndex, endIndex, indexer, indexValidator, locker)
    }
    
    func bufferFromEvents(events []*watchCacheEvent) *watchCacheIntervalBuffer {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    	w.RLock()
    	defer w.RUnlock()
    
    	return w.getAllEventsSinceLocked(resourceVersion, "", opts)
    }
    
    // newTestWatchCache just adds a fake clock.
    func newTestWatchCache(capacity int, indexers *cache.Indexers) *testWatchCache {
    	keyFunc := func(obj runtime.Object) (string, error) {
    		return storage.NamespaceKeyFunc("prefix", obj)
    	}
    	getAttrsFunc := func(obj runtime.Object) (labels.Set, fields.Set, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  9. cmd/global-heal.go

    		}
    
    		return status, true
    	}
    
    	si := o.LocalStorageInfo(ctx, true)
    
    	indexed := make(map[string][]madmin.Disk)
    	for _, disk := range si.Disks {
    		setIdx := fmt.Sprintf("%d-%d", disk.PoolIndex, disk.SetIndex)
    		indexed[setIdx] = append(indexed[setIdx], disk)
    	}
    
    	for id, disks := range indexed {
    		ss := madmin.SetStatus{
    			ID:        id,
    			SetIndex:  disks[0].SetIndex,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. pkg/scheduler/scheduler.go

    			}
    		}
    	}
    	return gvkMap
    }
    
    // newPodInformer creates a shared index informer that returns only non-terminal pods.
    // The PodInformer allows indexers to be added, but note that only non-conflict indexers are allowed.
    func newPodInformer(cs clientset.Interface, resyncPeriod time.Duration) cache.SharedIndexInformer {
    	selector := fmt.Sprintf("status.phase!=%v,status.phase!=%v", v1.PodSucceeded, v1.PodFailed)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
Back to top