Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for palm (0.15 sec)

  1. pkg/kube/krt/internal.go

    // Warning: this will panic if the labels is not available.
    func getLabels(a any) map[string]string {
    	al, ok := a.(Labeler)
    	if ok {
    		return al.GetLabels()
    	}
    	pal, ok := any(&a).(Labeler)
    	if ok {
    		return pal.GetLabels()
    	}
    	ak, ok := a.(metav1.Object)
    	if ok {
    		return ak.GetLabels()
    	}
    	ac, ok := a.(config.Config)
    	if ok {
    		return ac.Labels
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. pkg/controlplane/controller/crdregistration/crdregistration_controller.go

    	// to avoid hotlooping on particular items (they're probably still not going to work right away)
    	// and overall controller protection (everything I've done is broken, this controller needs to
    	// calm down or it can starve other useful work) cases.
    	c.queue.AddRateLimited(key)
    
    	return true
    }
    
    func (c *crdRegistrationController) enqueueCRD(crd *apiextensionsv1.CustomResourceDefinition) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top