Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for oldUID (0.08 sec)

  1. pkg/scheduler/eventhandlers_test.go

    		newObj interface{}
    	}{
    		{
    			name:   "pod updated with the same UID",
    			oldObj: withPodName(podWithPort("oldUID", nodeName, 80), "pod"),
    			newObj: withPodName(podWithPort("oldUID", nodeName, 8080), "pod"),
    		},
    		{
    			name:   "pod updated with different UIDs",
    			oldObj: withPodName(podWithPort("oldUID", nodeName, 80), "pod"),
    			newObj: withPodName(podWithPort("newUID", nodeName, 8080), "pod"),
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 14:38:54 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/graph_builder.go

    			}
    			oldUIDSet.Delete(newUID)
    		} else {
    			added = append(added, value)
    		}
    	}
    	for oldUID := range oldUIDSet {
    		removed = append(removed, oldUIDToRef[oldUID])
    	}
    
    	return added, removed, changed
    }
    
    func deletionStartsWithFinalizer(oldObj interface{}, newAccessor metav1.Object, matchingFinalizer string) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top