/external/guava/android/guava-tests/test/com/google/common/util/concurrent/ |
D | GeneratedMonitorTest.java | 140 private enum Outcome { enum in GeneratedMonitorTest 298 Outcome.SUCCESS); in addTests() 305 ? (isBoolean(method) ? Outcome.FAILURE : Outcome.HANG) in addTests() 306 : Outcome.SUCCESS); in addTests() 313 ? (isTryEnter(method) || isEnterIf(method) ? Outcome.FAILURE : Outcome.HANG) in addTests() 314 : Outcome.SUCCESS); in addTests() 320 isBoolean(method) ? Outcome.FAILURE : Outcome.HANG); in addTests() 326 isGuarded(method) ? Outcome.HANG : (isTryEnter(method) ? Outcome.FAILURE : Outcome.HANG)); in addTests() 332 isInterruptible(method) ? Outcome.INTERRUPT : Outcome.SUCCESS); in addTests() 337 suite, method, Scenario.SATISFIED_BEFORE_WAITING, TimeoutsToUse.ANY, Outcome.SUCCESS); in addTests() [all …]
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
D | GeneratedMonitorTest.java | 143 private enum Outcome { enum in GeneratedMonitorTest 323 Outcome.SUCCESS); in addTests() 330 ? (isBoolean(method) ? Outcome.FAILURE : Outcome.HANG) in addTests() 331 : Outcome.SUCCESS); in addTests() 338 ? (isTryEnter(method) || isEnterIf(method) ? Outcome.FAILURE : Outcome.HANG) in addTests() 339 : Outcome.SUCCESS); in addTests() 345 isBoolean(method) ? Outcome.FAILURE : Outcome.HANG); in addTests() 351 isGuarded(method) ? Outcome.HANG : (isTryEnter(method) ? Outcome.FAILURE : Outcome.HANG)); in addTests() 357 isInterruptible(method) ? Outcome.INTERRUPT : Outcome.SUCCESS); in addTests() 362 suite, method, Scenario.SATISFIED_BEFORE_WAITING, TimeoutsToUse.ANY, Outcome.SUCCESS); in addTests() [all …]
|
/external/vogar/src/vogar/ |
D | AnnotatedOutcome.java | 40 private final Outcome outcome; 42 private final SortedMap<Long, Outcome> previousOutcomes = new TreeMap<Long, Outcome>(); 44 AnnotatedOutcome(Outcome outcome, Expectation expectation) { in AnnotatedOutcome() 49 public void add(long date, Outcome outcome) { in add() 53 public Outcome getOutcome() { in getOutcome() 67 for (Outcome previousOutcome : previousOutcomes.values()) { in getPreviousResultValues()
|
D | Outcome.java | 31 public final class Outcome { class 38 public Outcome(String outcomeName, Result result, List<String> outputLines) { in Outcome() method in Outcome 45 public Outcome(String outcomeName, Result result, String outputLine, Date date) { in Outcome() method in Outcome 52 public Outcome(String outcomeName, Result result, String outputLine) { in Outcome() method in Outcome 59 public Outcome(String outcomeName, Result result, Throwable throwable) { in Outcome() method in Outcome 159 if (o instanceof Outcome) { in equals() 160 Outcome outcome = (Outcome) o; in equals()
|
D | XmlReportPrinter.java | 75 public int generateReports(Collection<Outcome> results) { in generateReports() 88 private Map<String, Suite> testsToSuites(Collection<Outcome> outcomes) { in testsToSuites() 90 for (Outcome outcome : outcomes) { in testsToSuites() 118 private final List<Outcome> outcomes = new ArrayList<Outcome>(); 138 for (Outcome outcome : outcomes) { in print() 145 private void print(KXmlSerializer serializer, Outcome outcome) throws IOException { in print()
|
D | OutcomeStore.java | 68 public Map<String, AnnotatedOutcome> read(Map<String, Outcome> outcomes) { in read() 70 for (Map.Entry<String, Outcome> entry : outcomes.entrySet()) { in read() 71 Outcome outcome = entry.getValue(); in read() 117 annotatedOutcome.add(fileDate, new Outcome(outcomeName, result, in loadOutcomes() 124 public void write(Map<String, Outcome> outcomes) { in write() 136 for (Map.Entry<String, Outcome> entry : outcomes.entrySet()) { in write()
|
D | XmlReportReader.java | 44 public Collection<Outcome> readSuiteReport(File xmlReport) { in readSuiteReport() 69 private Collection<Outcome> readTestSuite(KXmlParser parser) in readTestSuite() 71 Collection<Outcome> outcomes = new ArrayList<Outcome>(); in readTestSuite() 116 outcomes.add(new Outcome(classname + "#" + name, result, resultOutput, date)); in readTestSuite()
|
D | Driver.java | 55 private final Map<String, Outcome> outcomes = Collections.synchronizedMap( 56 new LinkedHashMap<String, Outcome>()); 89 Outcome outcome = outcomes.get(action.getName()); in buildAndRun() 94 addEarlyResult(new Outcome(action.getName(), Result.UNSUPPORTED, in buildAndRun() 209 public synchronized void addEarlyResult(Outcome earlyFailure) { in addEarlyResult() 222 public synchronized void recordOutcome(Outcome outcome) { in recordOutcome()
|
D | ActionFinder.java | 29 private final Map<String, Outcome> outcomes; 31 public ActionFinder(Log log, Map<String, Action> actions, Map<String, Outcome> outcomes) { in ActionFinder() 65 outcomes.put(actionName, new Outcome(actionName, Result.UNSUPPORTED, e)); in findActionsRecursive()
|
D | Expectation.java | 119 public boolean matches(Outcome outcome) { in matches() 123 private boolean patternMatches(Outcome outcome) { in patternMatches()
|
D | JarSuggestions.java | 40 public void addSuggestionsFromOutcome(Outcome outcome, ClassFileIndex classFileIndex, in addSuggestionsFromOutcome()
|
D | ExpectationStore.java | 77 public Expectation get(Outcome outcome) { in get()
|
/external/grpc-grpc/src/python/grpcio_tests/tests/testing/ |
D | _client_application.py | 44 class Outcome(collections.namedtuple('Outcome', ('kind', 'code', 'details'))): class 60 _SATISFACTORY_OUTCOME = Outcome(Outcome.Kind.SATISFACTORY, None, None) 61 _UNSATISFACTORY_OUTCOME = Outcome(Outcome.Kind.UNSATISFACTORY, None, None) 184 if outcome.kind is not Outcome.Kind.SATISFACTORY: 235 return Outcome(Outcome.Kind.RPC_ERROR, rpc_error.code(),
|
D | _client_test.py | 67 _client_application.Outcome.Kind.SATISFACTORY) 82 _client_application.Outcome.Kind.SATISFACTORY) 106 _client_application.Outcome.Kind.SATISFACTORY) 129 _client_application.Outcome.Kind.SATISFACTORY) 164 _client_application.Outcome.Kind.SATISFACTORY) 180 _client_application.Outcome.Kind.SATISFACTORY) 209 _client_application.Outcome.Kind.UNSATISFACTORY) 235 _client_application.Outcome.Kind.RPC_ERROR) 253 _client_application.Outcome.Kind.UNSATISFACTORY) 278 _client_application.Outcome.Kind.UNSATISFACTORY) [all …]
|
/external/grpc-grpc/src/python/grpcio/grpc/framework/foundation/ |
D | callable_util.py | 28 class Outcome(six.with_metaclass(abc.ABCMeta)): class 50 ['kind', 'return_value', 'exception']), Outcome): 56 return _EasyOutcome(Outcome.Kind.RETURNED, behavior(*args, **kwargs), 60 return _EasyOutcome(Outcome.Kind.RAISED, None, e)
|
/external/vogar/src/vogar/tasks/ |
D | RunActionTask.java | 23 import vogar.Outcome; 112 run.driver.addEarlyResult(new Outcome(earlyResultOutcome, Result.ERROR, in execute() 124 run.driver.addEarlyResult(new Outcome(actionName, Result.ERROR, e)); in execute() 214 @Override public void finish(Outcome outcome) { in finish() 221 run.driver.recordOutcome(new Outcome(lastFinishedOutcome, outcome.getResult(), in finish()
|
D | BuildActionTask.java | 35 import vogar.Outcome; 68 driver.addEarlyResult(new Outcome(action.getName(), Result.COMPILE_FAILED, in execute() 72 driver.addEarlyResult(new Outcome(action.getName(), Result.ERROR, e)); in execute()
|
/external/vogar/src/vogar/monitor/ |
D | HostMonitor.java | 29 import vogar.Outcome; 130 handler.finish(new Outcome(currentOutcome, currentResult, output.toString())); in followProcess() 158 void finish(Outcome outcome); in finish()
|
/external/grpc-grpc/src/python/grpcio/grpc/framework/interfaces/base/ |
D | base.py | 61 class Outcome(object): class
|
/external/tensorflow/tensorflow/lite/experimental/acceleration/configuration/ |
D | configuration.proto | 389 // Outcome of a successfully complete benchmark run. This information is
|
/external/tensorflow/tensorflow/c/experimental/filesystem/plugins/s3/ |
D | s3_filesystem.cc | 776 Aws::Utils::Outcome<Aws::String, Aws::Client::AWSError<Aws::S3::S3Errors>>;
|