Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PodResourceClaimStatus (0.17 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podresourceclaimstatus.go

    // with apply.
    type PodResourceClaimStatusApplyConfiguration struct {
    	Name              *string `json:"name,omitempty"`
    	ResourceClaimName *string `json:"resourceClaimName,omitempty"`
    }
    
    // PodResourceClaimStatusApplyConfiguration constructs an declarative configuration of the PodResourceClaimStatus type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 12:23:48 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/node/graph_populator.go

    	g.graph.AddPod(pod)
    	klog.V(5).Infof("updatePod %s/%s for node %s completed in %v", pod.Namespace, pod.Name, pod.Spec.NodeName, time.Since(startTime))
    }
    
    func resourceClaimStatusesEqual(statusA, statusB []corev1.PodResourceClaimStatus) bool {
    	if len(statusA) != len(statusB) {
    		return false
    	}
    	// In most cases, status entries only get added once and not modified.
    	// But this cannot be guaranteed, so for the sake of correctness in all
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top