Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for WithResourceClaimName (0.21 sec)

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

    	b.Name = &value
    	return b
    }
    
    // WithResourceClaimName sets the ResourceClaimName field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the ResourceClaimName field is set to the value of the last call.
    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. staging/src/k8s.io/client-go/applyconfigurations/core/v1/claimsource.go

    	return &ClaimSourceApplyConfiguration{}
    }
    
    // WithResourceClaimName sets the ResourceClaimName field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the ResourceClaimName field is set to the value of the last call.
    func (b *ClaimSourceApplyConfiguration) WithResourceClaimName(value string) *ClaimSourceApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 19:22:42 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  3. pkg/controller/resourceclaim/controller.go

    		for podClaimName, resourceClaimName := range newPodClaims {
    			statuses = append(statuses, corev1apply.PodResourceClaimStatus().WithName(podClaimName).WithResourceClaimName(resourceClaimName))
    		}
    		podApply := corev1apply.Pod(name, namespace).WithStatus(corev1apply.PodStatus().WithResourceClaimStatuses(statuses...))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top