Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. CHANGELOG/CHANGELOG-1.15.md

    - UpdateContainerResources is no longer recorded as a `container_status` operation. It now uses the label `update_container`. ([#75278](https://github.com/kubernetes/kubernetes/pull/75278), [@Nessex](https://github.com/Nessex))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    	if stop {
    		return allErrs
    	}
    
    	// validate updated spec.activeDeadlineSeconds.  two types of updates are allowed:
    	// 1.  from nil to a positive value
    	// 2.  from a positive value to a lesser, non-negative value
    	if newPod.Spec.ActiveDeadlineSeconds != nil {
    		newActiveDeadlineSeconds := *newPod.Spec.ActiveDeadlineSeconds
    		if newActiveDeadlineSeconds < 0 || newActiveDeadlineSeconds > math.MaxInt32 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top