Home
last modified time | relevance | path

Searched refs:is_macos (Results 1 – 9 of 9) sorted by relevance

/external/python/pyfakefs/pyfakefs/tests/
Dtest_utils.py52 is_macos = sys.platform == 'darwin' variable in TestCase
70 elif self.is_macos:
108 self.filesystem.is_macos = False
112 def is_macos(self): member in RealFsTestMixin
113 return TestCase.is_macos
146 if TestCase.is_macos or TestCase.is_windows:
151 self.filesystem.is_macos = False
158 if not TestCase.is_macos:
163 self.filesystem.is_macos = True
171 if TestCase.is_macos:
[all …]
Dfake_stat_time_test.py33 self.sleep_time = 1.1 if self.is_macos else 0.01
Dfake_filesystem_test.py319 self.filesystem.is_macos = False
Dfake_os_test.py4314 @unittest.skipIf(not TestCase.is_macos, 'Testing MacOs only behavior')
/external/tflite-support/tensorflow_lite_support/custom_ops/
Dtf_configure.sh24 function is_macos() { function
49 if is_macos; then
/external/cpuinfo/
Dconfigure.py33 if build.target.is_macos:
60 if build.target.is_macos:
96 if not build.target.is_macos:
/external/tensorflow/
Dconfigure.py83 def is_macos(): function
703 elif is_macos():
730 elif is_macos():
1140 elif is_macos():
1210 if not is_macos():
1328 if is_macos():
/external/pthreadpool/
Dconfigure.py18 elif build.target.is_macos:
/external/python/pyfakefs/pyfakefs/
Dfake_filesystem.py865 self.is_macos = sys.platform == 'darwin'
869 self.is_case_sensitive = not (self.is_windows_fs or self.is_macos)
893 return not self.is_windows_fs and not self.is_macos
1157 if self.is_macos and exc.errno != errno.ENOENT:
1162 if not follow_symlinks or self.is_windows_fs or self.is_macos:
1166 elif self.is_macos and macos_handling:
2137 error = (errno.ENOENT if self.is_macos else
2148 if ends_with_sep and self.is_macos:
2192 not ends_with_sep or not self.is_macos):
2211 real_object.name or not self.is_macos)
[all …]