Home
last modified time | relevance | path

Searched refs:set_attrs (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/core/ops/
Dlinalg_ops_test.cc202 auto set_attrs = [&op](bool full_matrices) { in TEST() local
222 set_attrs(false); in TEST()
236 set_attrs(true); in TEST()
253 auto set_attrs = [&op](bool compute_uv, bool full_matrices) { in TEST() local
275 set_attrs(false, false); in TEST()
289 set_attrs(true, false); in TEST()
303 set_attrs(true, true); in TEST()
/external/python/cpython3/Lib/
Dtarfile.py2036 self.extract(tarinfo, path, set_attrs=not tarinfo.isdir(),
2056 def extract(self, member, path="", set_attrs=True, *, numeric_owner=False): argument
2078 set_attrs=set_attrs,
2126 def _extract_member(self, tarinfo, targetpath, set_attrs=True, argument
2164 if set_attrs:
/external/python/cpython3/Doc/library/
Dtarfile.rst415 .. method:: TarFile.extract(member, path="", set_attrs=True, *, numeric_owner=False)
421 File attributes (owner, mtime, mode) are set unless *set_attrs* is false.
437 Added the *set_attrs* parameter.
/external/tensorflow/tensorflow/core/framework/
Dfunction.cc849 std::map<string, AttrValue> set_attrs; in GetSetAttrs() local
852 set_attrs[pair.first] = pair.second; in GetSetAttrs()
855 return set_attrs; in GetSetAttrs()