Home
last modified time | relevance | path

Searched refs:error_context (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_script_helper.py24 with self.assertRaises(AssertionError) as error_context:
26 error_msg = str(error_context.exception)
31 with self.assertRaises(AssertionError) as error_context:
33 error_msg = str(error_context.exception)
/external/python/apitools/apitools/base/py/
Dbase_api_test.py201 with self.assertRaises(exceptions.HttpError) as error_context:
203 http_error = error_context.exception
/external/tensorflow/tensorflow/core/framework/
Dshape_inference.cc1177 string error_context = strings::StrCat( in AttachContext() local
1181 strings::StrAppend(&error_context, " and with computed input tensors: ", in AttachContext()
1185 strings::StrAppend(&error_context, in AttachContext()
1190 strings::StrAppend(&error_context, "."); in AttachContext()
1192 strings::StrCat(status.error_message(), error_context)); in AttachContext()