Searched refs:set_threshold (Results 1 – 25 of 27) sorted by relevance
12
/external/python/cpython2/Lib/distutils/ |
D | log.py | 59 def set_threshold(level): function 67 set_threshold(WARN) 69 set_threshold(INFO) 71 set_threshold(DEBUG)
|
/external/python/cpython3/Lib/distutils/ |
D | log.py | 65 def set_threshold(level): function 73 set_threshold(WARN) 75 set_threshold(INFO) 77 set_threshold(DEBUG)
|
/external/python/cpython2/Lib/distutils/tests/ |
D | test_config.py | 10 from distutils.log import set_threshold 72 self.old_threshold = set_threshold(WARN) 76 set_threshold(self.old_threshold)
|
D | support.py | 28 self.threshold = log.set_threshold(log.FATAL) 37 log.set_threshold(self.threshold)
|
D | test_core.py | 40 self.addCleanup(log.set_threshold, log._global_log.threshold)
|
D | test_dist.py | 401 self.addCleanup(log.set_threshold, log._global_log.threshold)
|
/external/python/cpython3/Lib/distutils/tests/ |
D | test_config.py | 7 from distutils.log import set_threshold 75 self.old_threshold = set_threshold(WARN) 79 set_threshold(self.old_threshold)
|
D | test_log.py | 22 old_threshold = log.set_threshold(log.DEBUG) 29 log.set_threshold(old_threshold)
|
D | support.py | 20 self.threshold = log.set_threshold(log.FATAL) 29 log.set_threshold(self.threshold)
|
D | test_core.py | 55 self.addCleanup(log.set_threshold, log._global_log.threshold)
|
D | test_dist.py | 481 self.addCleanup(log.set_threshold, log._global_log.threshold)
|
/external/python/cffi/cffi/ |
D | ffiplatform.py | 48 old_level = distutils.log.set_threshold(0) or 0 55 distutils.log.set_threshold(old_level)
|
/external/python/cpython2/Lib/test/ |
D | test_gc.py | 221 gc.set_threshold(1) 230 gc.set_threshold(*thresholds) 236 gc.set_threshold(1) 245 gc.set_threshold(*thresholds)
|
D | test_modulefinder.py | 295 distutils.log.set_threshold(distutils.log.WARN)
|
D | test_weakref.py | 697 gc.set_threshold(1, 1, 1) 718 gc.set_threshold(*thresholds) 970 self.addCleanup(gc.set_threshold, *gc.get_threshold()) 974 gc.set_threshold(th, th, th)
|
D | test_weakset.py | 429 self.addCleanup(gc.set_threshold, *gc.get_threshold()) 433 gc.set_threshold(th, th, th)
|
D | test_multiprocessing.py | 2031 self.addCleanup(gc.set_threshold, *thresholds) 2032 gc.set_threshold(10) 2207 gc.set_threshold(5, 5, 5) 2217 gc.set_threshold(*old_threshold)
|
/external/python/cpython3/Lib/test/libregrtest/ |
D | setup.py | 70 gc.set_threshold(ns.threshold)
|
/external/python/setuptools/setuptools/tests/ |
D | test_manifest.py | 327 self.threshold = log.set_threshold(log.FATAL) 333 log.set_threshold(self.threshold)
|
/external/python/cpython3/Lib/test/ |
D | test_gc.py | 265 gc.set_threshold(1) 274 gc.set_threshold(*thresholds) 280 gc.set_threshold(1) 289 gc.set_threshold(*thresholds)
|
D | test_weakset.py | 416 self.addCleanup(gc.set_threshold, *gc.get_threshold()) 420 gc.set_threshold(th, th, th)
|
D | test_weakref.py | 764 gc.set_threshold(1, 1, 1) 785 gc.set_threshold(*thresholds) 1212 self.addCleanup(gc.set_threshold, *gc.get_threshold()) 1216 gc.set_threshold(th, th, th)
|
/external/python/cpython2/Doc/library/ |
D | gc.rst | 77 .. function:: set_threshold(threshold0[, threshold1[, threshold2]])
|
/external/tensorflow/tensorflow/core/kernels/boosted_trees/ |
D | resources.cc | 289 new_split->set_threshold(candidate.threshold); in AddBucketizedSplitNode()
|
/external/python/cpython3/Doc/library/ |
D | gc.rst | 94 .. function:: set_threshold(threshold0[, threshold1[, threshold2]])
|
12