Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for nodeAllocatableReservationFunc (0.51 sec)

  1. pkg/kubelet/nodestatus/setters.go

    	devicePluginResourceCapacityFunc func() (v1.ResourceList, v1.ResourceList, []string), // typically Kubelet.containerManager.GetDevicePluginResourceCapacity
    	nodeAllocatableReservationFunc func() v1.ResourceList, // typically Kubelet.containerManager.GetNodeAllocatableReservation
    	recordEventFunc func(eventType, event, message string), // typically Kubelet.recordEvent
    	localStorageCapacityIsolation bool,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  2. pkg/kubelet/nodestatus/setters_test.go

    			}
    			devicePluginResourceCapacityFunc := func() (v1.ResourceList, v1.ResourceList, []string) {
    				c := tc.devicePluginResourceCapacity
    				return c.capacity, c.allocatable, c.inactive
    			}
    			nodeAllocatableReservationFunc := func() v1.ResourceList {
    				return tc.nodeAllocatableReservation
    			}
    
    			events := []testEvent{}
    			recordEventFunc := func(eventType, event, message string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top