Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for GetDeletionTimestamp (0.55 sec)

  1. pkg/controller/controller_ref_manager.go

    			return false, err
    		}
    		// Successfully released.
    		return false, nil
    	}
    
    	// It's an orphan.
    	if m.Controller.GetDeletionTimestamp() != nil || !match(obj) {
    		// Ignore if we're being deleted or selector doesn't match.
    		return false, nil
    	}
    	if obj.GetDeletionTimestamp() != nil {
    		// Ignore if the object is being deleted
    		return false, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/validation/objectmeta.go

    	allErrs = append(allErrs, ValidateImmutableField(newMeta.GetCreationTimestamp(), oldMeta.GetCreationTimestamp(), fldPath.Child("creationTimestamp"))...)
    	allErrs = append(allErrs, ValidateImmutableField(newMeta.GetDeletionTimestamp(), oldMeta.GetDeletionTimestamp(), fldPath.Child("deletionTimestamp"))...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 07 03:12:31 UTC 2022
    - 12K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/caching_object.go

    		func() { o.object.SetCreationTimestamp(timestamp) },
    	)
    }
    func (o *cachingObject) GetDeletionTimestamp() *metav1.Time {
    	o.lock.RLock()
    	defer o.lock.RUnlock()
    	return o.object.GetDeletionTimestamp()
    }
    func (o *cachingObject) SetDeletionTimestamp(timestamp *metav1.Time) {
    	o.conditionalSet(
    		func() bool { return o.object.GetDeletionTimestamp() == timestamp },
    		func() { o.object.SetDeletionTimestamp(timestamp) },
    	)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 18:03:48 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/test/apis_meta_v1_unstructed_unstructure_test.go

    		t.Errorf("GetCreationTimestamp() = %s, want %s", got, want)
    	}
    
    	if got, want := unstruct.GetDeletionTimestamp(), metav1.Date(2010, time.November, 10, 23, 0, 0, 0, time.UTC); got == nil || !got.Equal(&want) {
    		t.Errorf("GetDeletionTimestamp() = %s, want %s", got, want)
    	}
    
    	if got, want := unstruct.GetLabels(), map[string]string{"test_label": "test_value"}; !reflect.DeepEqual(got, want) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 20:12:50 UTC 2022
    - 17.3K bytes
    - Viewed (0)
  6. 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)
  7. operator/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    					crHash := strings.Join([]string{newIOP.Name, newIOP.Namespace, string(component), host}, "-")
    					cache.RemoveCache(crHash)
    				}
    			}
    
    			if oldIOP.GetDeletionTimestamp() != newIOP.GetDeletionTimestamp() {
    				metrics.IncrementReconcileRequest("update_deletion_timestamp")
    				return true
    			}
    
    			if oldIOP.GetGeneration() != newIOP.GetGeneration() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/rest/update.go

    		objectMeta.SetCreationTimestamp(oldMeta.GetCreationTimestamp())
    	}
    	// an update can never remove/change a deletion timestamp
    	if !oldMeta.GetDeletionTimestamp().IsZero() {
    		objectMeta.SetDeletionTimestamp(oldMeta.GetDeletionTimestamp())
    	}
    	// an update can never remove/change grace period seconds
    	if oldMeta.GetDeletionGracePeriodSeconds() != nil && objectMeta.GetDeletionGracePeriodSeconds() == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    		t.Errorf("unexpected error, object should exist: %v", err)
    	}
    	objectMeta = t.getObjectMetaOrFail(object)
    	if objectMeta.GetDeletionTimestamp() == nil || objectMeta.GetDeletionGracePeriodSeconds() == nil ||
    		*objectMeta.GetDeletionGracePeriodSeconds() != expectedGrace || !objectMeta.GetDeletionTimestamp().Before(&deletionTimestamp) {
    		t.Errorf("unexpected deleted meta: %#v", objectMeta)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  10. 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)
Back to top