Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for podUIDs (0.24 sec)

  1. pkg/kubelet/cm/dra/state/zz_generated.deepcopy.go

    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *ClaimInfoState) DeepCopyInto(out *ClaimInfoState) {
    	*out = *in
    	if in.PodUIDs != nil {
    		in, out := &in.PodUIDs, &out.PodUIDs
    		*out = make(sets.Set[string], len(*in))
    		for key, val := range *in {
    			(*out)[key] = val
    		}
    	}
    	if in.ResourceHandles != nil {
    		in, out := &in.ResourceHandles, &out.ResourceHandles
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:27 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/dra/state/state_checkpoint.go

    	ClaimUID types.UID
    
    	// ClaimName is a name of the resource claim
    	ClaimName string
    
    	// Namespace is a claim namespace
    	Namespace string
    
    	// PodUIDs is a set of pod UIDs that reference a resource
    	PodUIDs sets.Set[string]
    
    	// ResourceHandles is a list of opaque resource data for processing by a specific kubelet plugin
    	ResourceHandles []resourcev1alpha2.ResourceHandle
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:27 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/dra/claiminfo.go

    // addPodReference adds a pod reference to the claim info.
    func (info *ClaimInfo) addPodReference(podUID types.UID) {
    	info.PodUIDs.Insert(string(podUID))
    }
    
    // hasPodReference checks if a pod reference exists in the claim info.
    func (info *ClaimInfo) hasPodReference(podUID types.UID) bool {
    	return info.PodUIDs.Has(string(podUID))
    }
    
    // deletePodReference deletes a pod reference from the claim info.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/dra/state/checkpoint.go

    			DriverName: entry.DriverName,
    			ClassName:  entry.ClassName,
    			ClaimUID:   entry.ClaimUID,
    			ClaimName:  entry.ClaimName,
    			Namespace:  entry.Namespace,
    			PodUIDs:    entry.PodUIDs,
    			CDIDevices: entry.CDIDevices,
    		})
    	}
    	oldcheckpoint := &DRAManagerCheckpointWithoutResourceHandles{
    		Version:  checkpointVersion,
    		Entries:  entries,
    		Checksum: 0,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 15:23:10 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top