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

  /external/tensorflow/tensorflow/python/util/
tf_export_test.py 29 def _test_function(unused_arg=0): function
60 for symbol in [_test_function, _test_function, TestClassA, TestClassB]:
72 decorated_function = export_decorator(_test_function)
73 self.assertEquals(decorated_function, _test_function)
79 decorated_function1 = export_decorator1(_test_function)
81 self.assertEquals(decorated_function1, _test_function)
126 _test_function._tf_api_names = ['abc']
129 export_decorator(_test_function)
136 export_decorator(_test_function)
    [all...]
decorator_utils_test.py 29 def _test_function(unused_arg=0): function
41 self.assertEqual("_test_function",
42 decorator_utils.get_qualified_name(_test_function))
101 decorator_utils.validate_callable(_test_function, "test")
116 partial = functools.partial(_test_function, unused_arg=7)

Completed in 56 milliseconds