FailureReason Enumeration
Defines the reasons for why a job can fail.
Namespace: Microsoft.Hpc.Scheduler.Properties
Assembly: Microsoft.Hpc.Scheduler.Properties (in Microsoft.Hpc.Scheduler.Properties.dll)
Namespace: Microsoft.Hpc.Scheduler.Properties
Assembly: Microsoft.Hpc.Scheduler.Properties (in Microsoft.Hpc.Scheduler.Properties.dll)
| Member name | Description |
|---|---|
| ExecutionFailure | A task in the job does not exist or could not start. This enumeration member represents a value of 1. |
| None | The job did not fail. This enumeration member represents a value of 0. |
| Preempted | The job was preempted by a higher priority job. This enumeration member represents a value of 3. |
| ResourceFailure | The node failed. This enumeration member represents a value of 2. |
To use this enumeration in Visual Basic Scripting Edition (VBScript), you need to use the numeric values for the enumeration members or create constants that correspond to those members and set them equal to the numeric values. The following code example shows how to create and set constants for this enumeration in VBScript.
const None = 0 const ExecutionFailure = 1 const ResourceFailure = 2 const Preempted = 3
Development Platforms
Windows XP, Windows Vista, Windows 7, Windows 8, Windows Server 2003, Windows Server 2008, Windows Server 2008 R2, Windows Server 2012Target Platforms
Windows XP, Windows Vista, Windows 7, Windows 8, Windows Server 2003, Windows Server 2003 R2, Windows Server 2008, Windows Server 2008 R2, Windows Server 2012, with HPC Pack Client Utilities
Build Date:
Community Additions
ADD
Show: