Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 55 for Indexes (0.27 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. 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)
  4. internal/s3select/select_test.go

    {"id":2,"title":"Second Record","desc":"another text","numbers":[2,3,4]}`,
    		},
    		{
    			name:       "indexed-list-match",
    			query:      `SELECT * from s3object s WHERE (7,8.5,9) IN s.nested[1]`,
    			wantResult: ``,
    		},
    		{
    			name:       "indexed-list-match-equals",
    			query:      `SELECT * from s3object s WHERE (7,8.5,9) = s.nested[1]`,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    func (e *Store) GetSingularName() string {
    	return e.SingularQualifiedResource.Resource
    }
    
    // validateIndexers will check the prefix of indexers.
    func validateIndexers(indexers *cache.Indexers) error {
    	if indexers == nil {
    		return nil
    	}
    	for indexName := range *indexers {
    		if len(indexName) <= 2 || (indexName[:2] != "l:" && indexName[:2] != "f:") {
    			return fmt.Errorf("index must prefix with \"l:\" or \"f:\"")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "FMOVSloadidx", argLength: 3, reg: fploadidx, asm: "FMOVS", aux: "SymOff", symEffect: "Read"},                 // fp32 load indexed by i
    		{name: "FMOVDloadidx", argLength: 3, reg: fploadidx, asm: "FMOVD", aux: "SymOff", symEffect: "Read"},                 // fp64 load indexed by i
    
    		{name: "FMOVSstore", argLength: 3, reg: fpstore, asm: "FMOVS", aux: "SymOff", faultOnNilArg0: true, symEffect: "Write"}, // fp32 store
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "FMOVDload", argLength: 2, reg: fpload, aux: "SymOff", asm: "FMOVD", typ: "Float64", faultOnNilArg0: true, symEffect: "Read"},  // load from arg0 + auxInt + aux.  arg1=mem.
    
    		// register indexed load
    		{name: "MOVDloadidx", argLength: 3, reg: gp2load, asm: "MOVD", typ: "UInt64"},    // load 64-bit dword from arg0 + arg1, arg2 = mem.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			test.resetStatusFn(status)
    		}
    	}
    }
    
    func getKillMap(pod *v1.Pod, status *kubecontainer.PodStatus, cIndexes []int) map[kubecontainer.ContainerID]containerToKillInfo {
    	m := map[kubecontainer.ContainerID]containerToKillInfo{}
    	for _, i := range cIndexes {
    		m[status.ContainerStatuses[i].ID] = containerToKillInfo{
    			container: &pod.Spec.Containers[i],
    			name:      pod.Spec.Containers[i].Name,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    	patternAllQueries []*query // queries with the pattern "all"
    
    	// Indexed "none" queries. These are also included in the slices above;
    	// they are indexed here to speed up noneForPath.
    	nonesByPath   map[string]*query // path-literal "@none" queries indexed by path
    	wildcardNones []*query          // wildcard "@none" queries
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/types.go

    // in this StatefulSet.
    type StatefulSetOrdinals struct {
    	// start is the number representing the first replica's index. It may be used
    	// to number replicas from an alternate index (eg: 1-indexed) over the default
    	// 0-indexed names, or to orchestrate progressive movement of replicas from
    	// one StatefulSet to another.
    	// If set, replica indices will be in the range:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
Back to top