Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for manyCollection (0.1 sec)

  1. pkg/kube/krt/collection.go

    				return true
    			}
    		}
    	}
    	return false
    }
    
    func (h *manyCollection[I, O]) _internalHandler() {
    }
    
    func (h *manyCollection[I, O]) GetKey(k Key[O]) (res *O) {
    	h.mu.Lock()
    	defer h.mu.Unlock()
    	rf, f := h.collectionState.outputs[k]
    	if f {
    		return &rf
    	}
    	return nil
    }
    
    func (h *manyCollection[I, O]) List() (res []O) {
    	h.mu.Lock()
    	defer h.mu.Unlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top