Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ControllersByCreationTimestamp (1.49 sec)

  1. pkg/controller/controller_utils.go

    	return fmt.Sprintf("%v/%v", pod.Namespace, pod.Name)
    }
    
    // ControllersByCreationTimestamp sorts a list of ReplicationControllers by creation timestamp, using their names as a tie breaker.
    type ControllersByCreationTimestamp []*v1.ReplicationController
    
    func (o ControllersByCreationTimestamp) Len() int      { return len(o) }
    func (o ControllersByCreationTimestamp) Swap(i, j int) { o[i], o[j] = o[j], o[i] }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
Back to top