Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for filterIndex (0.13 sec)

  1. pkg/kube/krt/filter.go

    func FilterSelects(lbls map[string]string) FetchOption {
    	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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top