Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GetDeletionTimestamp (0.49 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/meta.go

    	SetResourceVersion(version string)
    	GetGeneration() int64
    	SetGeneration(generation int64)
    	GetSelfLink() string
    	SetSelfLink(selfLink string)
    	GetCreationTimestamp() Time
    	SetCreationTimestamp(timestamp Time)
    	GetDeletionTimestamp() *Time
    	SetDeletionTimestamp(timestamp *Time)
    	GetDeletionGracePeriodSeconds() *int64
    	SetDeletionGracePeriodSeconds(*int64)
    	GetLabels() map[string]string
    	SetLabels(labels map[string]string)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 20:12:50 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured_test.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. pkg/controlplane/controller/defaultservicecidr/default_servicecidr_controller.go

    func (c *Controller) syncStatus(serviceCIDR *networkingapiv1alpha1.ServiceCIDR) {
    	// don't sync the status of the ServiceCIDR if is being deleted,
    	// deletion must be handled by the controller-manager
    	if !serviceCIDR.GetDeletionTimestamp().IsZero() {
    		return
    	}
    
    	// This controller will set the Ready condition to true if the Ready condition
    	// does not exist and the CIDR values match this controller CIDR values.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/helpers.go

    // for a pre-existing object. This is opt-in for new objects with Status subresource.
    func ResetObjectMetaForStatus(meta, existingMeta Object) {
    	meta.SetDeletionTimestamp(existingMeta.GetDeletionTimestamp())
    	meta.SetGeneration(existingMeta.GetGeneration())
    	meta.SetSelfLink(existingMeta.GetSelfLink())
    	meta.SetLabels(existingMeta.GetLabels())
    	meta.SetAnnotations(existingMeta.GetAnnotations())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 15 10:58:36 UTC 2022
    - 9.6K bytes
    - Viewed (0)
Back to top