Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 116 for Indexes (0.15 sec)

  1. src/cmd/link/internal/loader/loader.go

    	attrReachable        Bitmap // reachable symbols, indexed by global index
    	attrOnList           Bitmap // "on list" symbols, indexed by global index
    	attrLocal            Bitmap // "local" symbols, indexed by global index
    	attrNotInSymbolTable Bitmap // "not in symtab" symbols, indexed by global idx
    	attrUsedInIface      Bitmap // "used in interface" symbols, indexed by global idx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // Rules for MOV* or FMOV* ops determine when indexed (MOV*loadidx or MOV*storeidx)
    // or non-indexed (MOV*load or MOV*store) should be used. Indexed instructions
    // require an extra instruction and register to load the index so non-indexed is preferred.
    // Indexed ops generate indexed load or store instructions for all GOPPC64 values.
    // Non-indexed ops generate DS-form loads and stores when the offset fits in 16 bits,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    func TestValidateIndexers(t *testing.T) {
    	testcases := []struct {
    		name          string
    		indexers      *cache.Indexers
    		expectedError bool
    	}{
    		{
    			name:          "nil indexers",
    			indexers:      nil,
    			expectedError: false,
    		},
    		{
    			name: "normal indexers",
    			indexers: &cache.Indexers{
    				"f:spec.nodeName":            emptyIndexFunc,
    				"l:controller-revision-hash": emptyIndexFunc,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/compile/internal/ssa/debug.go

    type FuncDebug struct {
    	// Slots is all the slots used in the debug info, indexed by their SlotID.
    	Slots []LocalSlot
    	// The user variables, indexed by VarID.
    	Vars []*ir.Name
    	// The slots that make up each variable, indexed by VarID.
    	VarSlots [][]SlotID
    	// The location list data, indexed by VarID. Must be processed by PutLocationList.
    	LocationLists [][]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java

         * phase they want to execute and we can easily determine what lifecycle we need to run.
         *
         * @return A map of lifecycles, indexed on id
         */
        public Map<String, Lifecycle> getPhaseToLifecycleMap() {
            // If people are going to make their own lifecycles then we need to tell people how to namespace them correctly
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. src/index/suffixarray/suffixarray.go

    }
    
    // Lookup returns an unsorted list of at most n indices where the byte string s
    // occurs in the indexed data. If n < 0, all occurrences are returned.
    // The result is nil if s is empty, s is not found, or n == 0.
    // Lookup time is O(log(N)*len(s) + len(result)) where N is the
    // size of the indexed data.
    func (x *Index) Lookup(s []byte, n int) (result []int) {
    	if len(s) > 0 && n != 0 {
    		matches := x.lookupAll(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/configurators/AnalysisApiBaseTestServiceRegistrar.kt

            val moduleStructure = testServices.ktTestModuleStructure
            val testKtFiles = moduleStructure.mainModules.flatMap { it.ktFiles }
    
            // We explicitly exclude decompiled libraries. Their decompiled PSI files are indexed by the declaration provider, so it shouldn't
            // additionally build and index stubs for the library.
            val mainBinaryModules = moduleStructure.mainModules
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      depth must be less than the rank of `tensor`: `indices.shape[-1] <= tensor.ndim`
    
    if `indices.shape[-1] = tensor.rank` this Op indexes and updates scalar elements.
    if `indices.shape[-1] < tensor.rank` it indexes and updates slices of the input
    `tensor`.
    
    Each `update` has a rank of `tensor.rank - indices.shape[-1]`.
    The overall shape of `updates` is:
    
    ```
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  10. src/go/internal/gcimporter/gcimporter.go

    	case "$$B\n":
    		var exportFormat byte
    		if exportFormat, err = buf.ReadByte(); err != nil {
    			return
    		}
    		size--
    
    		// The unified export format starts with a 'u'; the indexed export
    		// format starts with an 'i'; and the older binary export format
    		// starts with a 'c', 'd', or 'v' (from "version"). Select
    		// appropriate importer.
    		switch exportFormat {
    		case 'u':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top