/external/llvm-project/lldb/test/API/commands/expression/error-limit/ |
D | TestExprErrorLimit.py | 40 eval_result = target.EvaluateExpression(expr, options) 41 self.assertIn("1yerror", str(eval_result.GetError())) 42 self.assertIn("2yerror", str(eval_result.GetError())) 43 self.assertNotIn("3yerror", str(eval_result.GetError())) 44 self.assertNotIn("4yerror", str(eval_result.GetError())) 48 eval_result = target.EvaluateExpression(expr, options) 49 self.assertIn("1yerror", str(eval_result.GetError())) 50 self.assertIn("2yerror", str(eval_result.GetError())) 51 self.assertIn("3yerror", str(eval_result.GetError())) 52 self.assertNotIn("4yerror", str(eval_result.GetError())) [all …]
|
/external/tensorflow/tensorflow/python/keras/ |
D | metrics_correctness_test.py | 219 eval_result = model.evaluate([self.x, self.x], [self.y1, self.y2], 221 self.assertAllClose(eval_result, self.expected_batch_result, 1e-3) 225 eval_result = model.evaluate([self.x, self.x], [self.y1, self.y2], 231 self.assertAllClose(eval_result, self.expected_batch_result_with_weights, 236 eval_result = model.evaluate([self.x, self.x], [self.y1, self.y2], 241 self.assertAllClose(eval_result, 325 eval_result = model.evaluate_generator(custom_generator_multi_io(), steps=3) 326 self.assertAllClose(eval_result, self.expected_batch_result, 1e-3) 330 eval_result = model.evaluate_generator( 334 self.assertAllClose(eval_result, self.expected_batch_result_with_weights, [all …]
|
/external/tensorflow/tensorflow/python/keras/tests/ |
D | temporal_sample_weights_correctness_test.py | 292 eval_result = model.evaluate([self.x, self.x], [self.y1, self.y2], 294 self.assertAllClose(eval_result, self.expected_batch_result, 1e-3) 306 eval_result = model.evaluate([self.x, self.x], [self.y1, self.y2], 312 self.assertAllClose(eval_result, self.expected_batch_result_with_weights, 325 eval_result = model.evaluate([self.x, self.x], [self.y1, self.y2], 330 self.assertAllClose(eval_result, 460 eval_result = model.evaluate_generator( 462 self.assertAllClose(eval_result, self.expected_batch_result, 1e-3) 474 eval_result = model.evaluate_generator( 478 self.assertAllClose(eval_result, self.expected_batch_result_with_weights, [all …]
|
/external/protobuf/objectivec/DevTools/ |
D | pddm.py | 307 eval_result = self._EvalMacrosRefs(result, new_macro_stack) 309 eval_result = eval_result.replace('##', '') 310 if eval_result == result: 312 result = eval_result
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.estimator.-exporter.pbtxt | 14 …argspec: "args=[\'self\', \'estimator\', \'export_path\', \'checkpoint_path\', \'eval_result\', \'…
|
D | tensorflow.estimator.-final-exporter.pbtxt | 16 …argspec: "args=[\'self\', \'estimator\', \'export_path\', \'checkpoint_path\', \'eval_result\', \'…
|
D | tensorflow.estimator.-latest-exporter.pbtxt | 16 …argspec: "args=[\'self\', \'estimator\', \'export_path\', \'checkpoint_path\', \'eval_result\', \'…
|
D | tensorflow.estimator.-best-exporter.pbtxt | 16 …argspec: "args=[\'self\', \'estimator\', \'export_path\', \'checkpoint_path\', \'eval_result\', \'…
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.estimator.-exporter.pbtxt | 14 …argspec: "args=[\'self\', \'estimator\', \'export_path\', \'checkpoint_path\', \'eval_result\', \'…
|
D | tensorflow.estimator.-latest-exporter.pbtxt | 16 …argspec: "args=[\'self\', \'estimator\', \'export_path\', \'checkpoint_path\', \'eval_result\', \'…
|
D | tensorflow.estimator.-final-exporter.pbtxt | 16 …argspec: "args=[\'self\', \'estimator\', \'export_path\', \'checkpoint_path\', \'eval_result\', \'…
|
D | tensorflow.estimator.-best-exporter.pbtxt | 16 …argspec: "args=[\'self\', \'estimator\', \'export_path\', \'checkpoint_path\', \'eval_result\', \'…
|
/external/linux-kselftest/tools/testing/selftests/ftrace/ |
D | ftracetest | 248 eval_result() { # sigval function 361 eval_result $SIG_RESULT
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | while_loop_analysis.cc | 612 StatusOr<Literal> eval_result = in ComputeWhileLoopTripCountUpperBound() local 615 if (!eval_result.ok()) { in ComputeWhileLoopTripCountUpperBound() 620 Literal cond_result_pred = std::move(eval_result.ValueOrDie()); in ComputeWhileLoopTripCountUpperBound()
|
/external/llvm-project/lldb/packages/Python/lldbsuite/test/ |
D | lldbtest.py | 2575 eval_result = self.frame().EvaluateExpression(expr, options) 2582 eval_result = target.EvaluateExpression(expr, options) 2586 value_check.check_value(self, eval_result, str(eval_result)) 2587 return eval_result 2611 eval_result = frame.GetValueForVariablePath(var_path) 2615 value_check.check_value(self, eval_result, str(eval_result)) 2616 return eval_result
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | while_v2_test.py | 138 eval_result = sess.run(ret) 139 self.assertIsInstance(eval_result, list) 140 self.assertLen(eval_result, 1) 141 self.assertEqual(16., eval_result[0])
|