Searched refs:dictConfig (Results 1 – 22 of 22) sorted by relevance
/external/autotest/venv/lucifer/ |
D | loglib_unittest.py | 23 autospec=True) as dictConfig: 25 dictConfig.assert_called_once_with(mock.ANY)
|
D | loglib.py | 43 logging.config.dictConfig({
|
/external/autotest/site_utils/ |
D | loglib.py | 74 logging.config.dictConfig({
|
/external/autotest/site_utils/deployment/prepare/ |
D | main.py | 103 logging.config.dictConfig({
|
/external/python/cpython3/Doc/library/ |
D | logging.config.rst | 36 .. function:: dictConfig(config) 64 :func:`dictConfig` calls :attr:`dictConfigClass` passing 68 def dictConfig(config): 75 this new subclass, and then :func:`dictConfig` could be called exactly as 129 sent as a file suitable for processing by :func:`dictConfig` or 175 the configuration, which will use :func:`dictConfig` for configuration. 206 The dictionary passed to :func:`dictConfig` must contain the following 638 The :func:`fileConfig` API is older than the :func:`dictConfig` API and does 643 configuration, you will need to use :func:`dictConfig`. Note that future 645 :func:`dictConfig`, so it's worth considering transitioning to this newer
|
/external/python/cpython2/Doc/library/ |
D | logging.config.rst | 37 .. function:: dictConfig(config) 65 :func:`dictConfig` calls :attr:`dictConfigClass` passing 69 def dictConfig(config): 76 this new subclass, and then :func:`dictConfig` could be called exactly as 163 The dictionary passed to :func:`dictConfig` must contain the following 591 The :func:`fileConfig` API is older than the :func:`dictConfig` API and does 596 configuration, you will need to use :func:`dictConfig`. Note that future 598 :func:`dictConfig`, so it's worth considering transitioning to this newer
|
/external/python/cpython2/Doc/howto/ |
D | logging-cookbook.rst | 710 This dictionary is passed to :func:`~config.dictConfig` to put the configuration into effect:: 899 Customizing handlers with :func:`dictConfig` 903 and if you use :func:`dictConfig` you may be able to do this without 921 You can then specify, in a logging configuration passed to :func:`dictConfig`, 997 logging.config.dictConfig(LOGGING) 1013 supports :func:`dictConfig` - namely, Python 2.7, 3.2 or later. With pre-3.3 1029 is resolved by :func:`dictConfig` from the ``ext://`` specification. 1042 Configuring filters with :func:`dictConfig` 1045 You *can* configure filters using :func:`~logging.config.dictConfig`, though it 1094 logging.config.dictConfig(LOGGING) [all …]
|
D | logging.rst | 560 to the :func:`dictConfig` function. 676 The dictionary passed to :func:`dictConfig` can also specify a Boolean
|
/external/python/cpython3/Doc/howto/ |
D | logging-cookbook.rst | 935 logging.config.dictConfig(d) 1338 This dictionary is passed to :func:`~config.dictConfig` to put the configuration into effect:: 1475 logging.config.dictConfig(config) 1481 # dictConfig call. 1504 logging.config.dictConfig(config) 1512 # dictConfig call. 1622 logging.config.dictConfig(config_initial) 1786 Customizing handlers with :func:`dictConfig` 1790 and if you use :func:`dictConfig` you may be able to do this without 1803 You can then specify, in a logging configuration passed to :func:`dictConfig`, [all …]
|
D | logging.rst | 585 to the :func:`dictConfig` function. 703 The dictionary passed to :func:`dictConfig` can also specify a Boolean
|
/external/autotest/venv/skylab_suite/ |
D | suite_tracking.py | 382 logging.config.dictConfig({
|
/external/python/cpython2/Lib/logging/ |
D | config.py | 792 def dictConfig(config): function 838 dictConfig(d)
|
/external/python/cpython3/Lib/logging/ |
D | config.py | 797 def dictConfig(config): function 853 dictConfig(d)
|
/external/python/cpython2/Lib/test/ |
D | test_logging.py | 1665 logging.config.dictConfig(conf)
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.7.1rc1.rst | 778 dictConfig. Patch by Karthikeyan Singaravelan.
|
D | 3.5.0a1.rst | 3963 Updated fileConfig and dictConfig to remove inconsistencies. Thanks to Jure
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.2.rst | 189 :func:`logging.config.dictConfig` for specifying logging configuration with 219 >>> logging.config.dictConfig(conf)
|
D | 2.7.rst | 462 Python 2.7 adds a :func:`~logging.dictConfig` function that 509 logging.config.dictConfig(configdict)
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.4rc1.rst | 677 Corrected MemoryHandler configuration in dictConfig() where the target
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.7.rst | 462 Python 2.7 adds a :func:`~logging.dictConfig` function that 509 logging.config.dictConfig(configdict)
|
/external/python/cpython3/Lib/test/ |
D | test_logging.py | 2769 logging.config.dictConfig(conf)
|
/external/python/cpython3/Misc/ |
D | HISTORY | 5181 - Issue #17508: Corrected logging MemoryHandler configuration in dictConfig()
|