Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for termination (0.49 sec)

  1. doc/go_spec.html

    	    end in a terminating statement.</li>
    	</ul>
    </li>
    
    <li>
    	A <a href="#Labeled_statements">labeled statement</a> labeling
    	a terminating statement.
    </li>
    </ol>
    
    <p>
    All other statements are not terminating.
    </p>
    
    <p>
    A <a href="#Blocks">statement list</a> ends in a terminating statement if the list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  2. CHANGELOG/CHANGELOG-1.26.md

      the Job controller now does not consider a terminating Pod (a pod that has a `.metadata.deletionTimestamp`)
      as a failure until that Pod is terminal (its `.status.phase` is `Failed` or `Succeeded`).
      
      However, the Job controller creates a replacement Pod as soon as the termination becomes apparent.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.30.md

    - Etcd: Updated to `v3.5.11`. ([#122393](https://github.com/kubernetes/kubernetes/pull/122393), [@mzaian](https://github.com/mzaian))
    - Fixed Pod stuck in `Terminating` because of `GenerateUnmapVolumeFunc` missing `globalUnmapPath` when kubelet tries to clean up all volumes that failed reconstruction. ([#123032](https://github.com/kubernetes/kubernetes/pull/123032), [@carlory](https://github.com/carlory))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation.go

    		}
    	} else {
    		if newNamespace.Status.Phase != core.NamespaceTerminating {
    			allErrs = append(allErrs, field.Invalid(field.NewPath("status", "Phase"), newNamespace.Status.Phase, "may only be 'Terminating' if `deletionTimestamp` is not empty"))
    		}
    	}
    	return allErrs
    }
    
    // ValidateNamespaceFinalizeUpdate tests to see if the update is legal for an end user to make.
    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