HomeSort by relevance Sort by last modified time
    Searched refs:TrialFailureException (Results 1 - 5 of 5) sorted by null

  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
TrialFailureException.java 26 final class TrialFailureException extends RuntimeException {
27 public TrialFailureException(String message) {
TrialRunLoop.java 79 @Override public TrialResult call() throws TrialFailureException, IOException {
107 throw new TrialFailureException(
149 throw new TrialFailureException(String.format("The worker exited without producing "
163 throw new TrialFailureException(String.format(
176 Throwables.propagateIfInstanceOf(e, TrialFailureException.class);
177 // This is some failure that is not a TrialFailureException, let the exception propagate but
ExperimentingCaliperRun.java 168 if (e.getCause() instanceof TrialFailureException) {
169 output.processFailedTrial((TrialFailureException) e.getCause());
ConsoleOutput.java 70 void processFailedTrial(TrialFailureException e) {
73 // to the TrialFailureException.
RuntimeInstrument.java 459 throw new TrialFailureException(String.format(

Completed in 496 milliseconds