Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 112 for Indexer (0.56 sec)

  1. 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)
  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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pilot/pkg/networking/core/route/route.go

    	// Routes in the virtual host
    	Routes []*route.Route
    }
    
    // BuildSidecarVirtualHostWrapper creates virtual hosts from the given set of virtual Services
    // and a list of Services from the service registry. Services are indexed by FQDN hostnames.
    // The list of Services is also passed to allow maintaining consistent ordering.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.27.md

    - The bug which caused the status of Indexed Jobs to only update when new indexes were completed was fixed. Now, completed indexes are updated even if the `.status.completedIndexes` values are outside the `[0, .spec.completions> range`. ([#115349](https://github.com/kubernetes/kubernetes/pull/115349), [@danielvegamyhre](https://gith...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  9. pkg/generated/openapi/zz_generated.openapi.go

    							Description: "completedIndexes holds the completed indexes when .spec.completionMode = \"Indexed\" in a text format. The indexes are represented as decimal integers separated by commas. The numbers are listed in increasing order. Three or more consecutive numbers are compressed and represented by the first and last element of the series, separated by a hyphen. For example, if the completed indexes are 1, 3, 4, 5 and 7, they are represented as \"1,3-5,7\".",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    	// *Node is the unique identifier (an ONAME Node) for the variable.
    	fwdVars map[ir.Node]*ssa.Value
    
    	// all defined variables at the end of each block. Indexed by block ID.
    	defvars []map[ir.Node]*ssa.Value
    
    	// addresses of PPARAM and PPARAMOUT variables on the stack.
    	decladdrs map[*ir.Name]*ssa.Value
    
    	// starting values. Memory, stack pointer, and globals pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top