Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 496 for index (0.07 sec)

  1. src/cmd/go/internal/modload/search.go

    }
    
    // walkFromIndex matches packages in a module using the module index. modroot
    // is the module's root directory on disk, index is the modindex.Module for the
    // module, and importPathRoot is the module's path prefix.
    func walkFromIndex(index *modindex.Module, importPathRoot string, isMatch, treeCanMatch func(string) bool, tags, have map[string]bool, addPkg func(string)) {
    	index.Walk(func(reldir string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go

    type IfaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Hdrlen  uint16
    	Index   uint16
    	Tableid uint16
    	Pad1    uint8
    	Pad2    uint8
    	Addrs   int32
    	Flags   int32
    	Metric  int32
    }
    
    type IfAnnounceMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Hdrlen  uint16
    	Index   uint16
    	What    uint16
    	Name    [16]int8
    }
    
    type RtMsghdr struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. pkg/kube/krt/filter.go

    	return func(h *dependency) {
    		h.filter.selects = lbls
    	}
    }
    
    // FilterIndex selects only objects matching a key in an index.
    func FilterIndex[I any, K comparable](idx *Index[I, K], k K) FetchOption {
    	return func(h *dependency) {
    		// Index is used to pre-filter on the List, and also to match in Matches. Provide type-erased methods for both
    		h.filter.listFromIndex = func() any {
    			return idx.Lookup(k)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go

    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	_       uint16
    	Metric  int32
    }
    
    type IfmaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	_       uint16
    }
    
    type IfAnnounceMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Index   uint16
    	Name    [16]int8
    	What    uint16
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  5. src/internal/bytealg/bytealg.go

    	offsetS390xHasVX = unsafe.Offsetof(cpu.S390X.HasVX)
    
    	offsetPPC64HasPOWER9 = unsafe.Offsetof(cpu.PPC64.IsPOWER9)
    )
    
    // MaxLen is the maximum length of the string to be searched for (argument b) in Index.
    // If MaxLen is not 0, make sure MaxLen >= 4.
    var MaxLen int
    
    // PrimeRK is the prime base used in Rabin-Karp algorithm.
    const PrimeRK = 16777619
    
    // HashStr returns the hash and the appropriate multiplicative
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 19:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/options.go

    	}
    	o.ParentPath = append(o.ParentPath, key)
    }
    
    // AppendIndex adds an index to the most recent field of
    // the current parent path, if TrackUnknownFieldPaths is true.
    func (o *UnknownFieldPathOptions) AppendIndex(index int) {
    	if !o.TrackUnknownFieldPaths {
    		return
    	}
    	o.ParentPath = append(o.ParentPath, "[", strconv.Itoa(index), "]")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 18 14:55:12 UTC 2022
    - 2K bytes
    - Viewed (0)
  7. src/syscall/ztypes_openbsd_ppc64.go

    type IfaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Hdrlen  uint16
    	Index   uint16
    	Tableid uint16
    	Pad1    uint8
    	Pad2    uint8
    	Addrs   int32
    	Flags   int32
    	Metric  int32
    }
    
    type IfAnnounceMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Hdrlen  uint16
    	Index   uint16
    	What    uint16
    	Name    [16]int8
    }
    
    type RtMsghdr struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/lazy/lazy.go

    }
    
    func (i *iterator) Value() any {
    	return nil
    }
    
    func (i *iterator) HasNext() ref.Val {
    	return types.Bool(i.index < len(i.parent.knownValues))
    }
    
    func (i *iterator) Next() ref.Val {
    	ret := i.parent.Get(types.String(i.parent.knownValues[i.index]))
    	i.index++
    	return ret
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modindex/index_test.go

    		}
    
    		if !reflect.DeepEqual(bp, bp1) {
    			t.Errorf("mismatch")
    			t.Logf("index:\n%s", hex.Dump(data))
    
    			js, err := json.MarshalIndent(bp, "", "\t")
    			if err != nil {
    				t.Fatal(err)
    			}
    			js1, err := json.MarshalIndent(bp1, "", "\t")
    			if err != nil {
    				t.Fatal(err)
    			}
    			t.Logf("diff:\n%s", diff.Diff("index", js, "correct", js1))
    			t.FailNow()
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 28 23:35:08 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/routes/debugsocket.go

    func (s *DebugSocket) InstallDebugFlag(flag string, handler func(http.ResponseWriter, *http.Request)) {
    	f := DebugFlags{}
    	s.mux.HandleFunc("/debug/flags", f.Index)
    	s.mux.HandleFunc("/debug/flags/", f.Index)
    
    	url := path.Join("/debug/flags", flag)
    	s.mux.HandleFunc(url, handler)
    
    	f.addFlag(flag)
    }
    
    // Run starts the server and waits for stopCh to be closed to close the server.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 08 00:33:16 UTC 2022
    - 2.2K bytes
    - Viewed (0)
Back to top