Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 50 for Indexer (0.49 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. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    	// attached to this node and the pods they should be mounted to based on the
    	// current desired state of the world.
    	GetVolumesToMount() []VolumeToMount
    
    	// GetPods generates and returns a map of pods in which map is indexed
    	// with pod's unique name. This map can be used to determine which pod is currently
    	// in desired state of world.
    	GetPods() map[types.UniquePodName]bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. src/go/printer/printer_test.go

    		out := buf.String()
    		if out != src {
    			t.Errorf("\ngot : %q\nwant: %q\n", out, src)
    		}
    	}
    }
    
    var stmts = []string{
    	"i := 0",
    	"select {}\nvar a, b = 1, 2\nreturn a + b",
    	"go f()\ndefer func() {}()",
    }
    
    func TestStmtLists(t *testing.T) {
    	for _, src := range stmts {
    		file, err := parser.ParseFile(fset, "", "package p; func _() {"+src+"}", parser.ParseComments)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. src/runtime/traceruntime.go

    }
    
    // mTraceState is per-M state for the tracer.
    type mTraceState struct {
    	seqlock atomic.Uintptr // seqlock indicating that this M is writing to a trace buffer.
    	buf     [2]*traceBuf   // Per-M traceBuf for writing. Indexed by trace.gen%2.
    	link    *m             // Snapshot of alllink or freelink.
    }
    
    // pTraceState is per-P state for the tracer.
    type pTraceState struct {
    	traceSchedResourceState
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  5. pkg/test/framework/components/istio/kube.go

    	env                  *kube.Environment
    	externalControlPlane bool
    	installer            *installer
    	*meshConfig
    	injectConfig *injectConfig
    
    	mu sync.Mutex
    	// ingress components, indexed first by cluster name and then by gateway name.
    	ingress map[string]map[string]ingress.Instance
    	istiod  map[string]istiokube.PortForwarder
    	values  OperatorValues
    	workDir string
    	iopFiles
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. 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)
  7. guava/src/com/google/common/collect/CompactHashMap.java

        @Override
        public Spliterator<Entry<K, V>> spliterator() {
          Map<K, V> delegate = delegateOrNull();
          return (delegate != null)
              ? delegate.entrySet().spliterator()
              : CollectSpliterators.indexed(
                  size, Spliterator.DISTINCT | Spliterator.ORDERED, MapEntry::new);
        }
    
        @Override
        public boolean contains(@CheckForNull Object o) {
          Map<K, V> delegate = delegateOrNull();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/cover/cover.go

    func (b blockSlice) Less(i, j int) bool { return b[i].startByte < b[j].startByte }
    func (b blockSlice) Swap(i, j int)      { b[i], b[j] = b[j], b[i] }
    
    // offset translates a token position into a 0-indexed byte offset.
    func (f *File) offset(pos token.Pos) int {
    	return f.fset.Position(pos).Offset
    }
    
    // addVariables adds to the end of the file the declarations to set up the counter and position variables.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. src/runtime/trace.go

    	traceInitReadCPU()
    
    	// Compute the first generation for this StartTrace.
    	//
    	// Note: we start from the last non-zero generation rather than 1 so we
    	// can avoid resetting all the arrays indexed by gen%2 or gen%3. There's
    	// more than one of each per m, p, and goroutine.
    	firstGen := traceNextGen(trace.lastNonZeroGen)
    
    	// Reset GC sequencer.
    	trace.seqGC = 1
    
    	// Reset trace reader state.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top