server state of a result has the following values:
- Inactive
- The result is not ready to send
(for example, because its input files are unavailable)
- Unsent
- The result is ready to send,
but hasn't been sent yet.
- In Progress
- The result has been sent; waiting for completion.
- Over
- The result has been sent and either
it has timed out or a reply has been received.
";
}
if ($field == "result_outcome") {
echo "
The outcome of a result is defined if
its server state is over.
It has the following values:
- Success
- A client completed the result successfully.
- Couldn't send
- The server wasn't able to send the result to a client
(perhaps because its resource requirements were too large)
- Client error
- The result was sent to a client and an error occurred.
- No reply
- The result was sent to a client
and no reply was received within the time limit.
- Didn't need
- The result wasn't sent to a client because
enough other results were returned for this work unit.
- Validate Error
- The result was found to be incorrect or erroneous.
This can happen because your computer did not carry out the computations
correctly, or because an error was introduced when the results were returned
to the server.
";
}
if ($field == "result_client_state") {
echo "
The client state of a result is either \"Done\" for a successful result; or
it is defined to be one of the following values if the outcome is a client error.
These error states indicate the stage of processing at which the client error occurred:
- Downloading
- The client couldn't download the application or input files.
- Computing
- An error occurred during computation.
- Uploading
- The client couldn't upload the output files.
";
}
if ($field == "result_time"){
echo "The Time reported or deadline-field shows the
received time if the result has been received.
If the result has not yet been received it shows the
reporting deadline in green if in the future
and in red if in the past.";
}
if ($field == "validate_state") {
}
page_tail();
?>