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.cc182 auto set_attrs = [&op](bool full_matrices) { in TEST() local
202 set_attrs(false); in TEST()
216 set_attrs(true); in TEST()
233 auto set_attrs = [&op](bool compute_uv, bool full_matrices) { in TEST() local
255 set_attrs(false, false); in TEST()
269 set_attrs(true, false); in TEST()
283 set_attrs(true, true); in TEST()
/external/python/cpython3/Lib/
Dtarfile.py2001 self.extract(tarinfo, path, set_attrs=not tarinfo.isdir(),
2021 def extract(self, member, path="", set_attrs=True, *, numeric_owner=False): argument
2043 set_attrs=set_attrs,
2090 def _extract_member(self, tarinfo, targetpath, set_attrs=True, argument
2128 if set_attrs:
/external/tensorflow/tensorflow/core/framework/
Dfunction.cc802 std::map<string, AttrValue> set_attrs; in GetSetAttrs() local
805 set_attrs[pair.first] = pair.second; in GetSetAttrs()
808 return set_attrs; in GetSetAttrs()
/external/python/cpython3/Doc/library/
Dtarfile.rst406 .. method:: TarFile.extract(member, path="", set_attrs=True, *, numeric_owner=False)
412 File attributes (owner, mtime, mode) are set unless *set_attrs* is false.
428 Added the *set_attrs* parameter.