Home
last modified time | relevance | path

Searched refs:default_name (Results 1 – 7 of 7) sorted by relevance

/third_party/musl/libc-test/src/functional/
Dpthread_getname_np.c27 char default_name[] = "pthread_getname"; in main() local
31 if(strcmp(thread_name, default_name) != 0) perror("pthread name comparison failed"); in main()
/third_party/python/Lib/
Ddataclasses.py454 default_name = f'_dflt_{f.name}'
459 globals[default_name] = f.default_factory
478 globals[default_name] = f.default_factory
487 globals[default_name] = f.default
492 globals[default_name] = f.default
493 value = default_name
/third_party/python/Lib/test/
Dtest_cmd_line.py755 default_name = 'pymalloc_debug' if Py_DEBUG else 'pymalloc'
758 default_name = 'malloc_debug' if Py_DEBUG else 'malloc'
762 (None, default_name),
/third_party/python/Lib/logging/
Dhandlers.py79 def rotation_filename(self, default_name): argument
93 result = default_name
95 result = self.namer(default_name)
/third_party/python/Doc/library/
Dlogging.handlers.rst261 .. method:: BaseRotatingHandler.rotation_filename(default_name)
271 :param default_name: The default name for the log file.
/third_party/python/Tools/clinic/
Dclinic.py3587 default_type, default_name = correct_name_for_self(f)
3588 self.signature_name = default_name
/third_party/python/Doc/reference/
Ddatamodel.rst1926 def __init_subclass__(cls, /, default_name, **kwargs):
1928 cls.default_name = default_name
1930 class AustralianPhilosopher(Philosopher, default_name="Bruce"):