Home
last modified time | relevance | path

Searched refs:dictConfig (Results 1 – 22 of 22) sorted by relevance

/external/autotest/venv/lucifer/
Dloglib_unittest.py23 autospec=True) as dictConfig:
25 dictConfig.assert_called_once_with(mock.ANY)
Dloglib.py43 logging.config.dictConfig({
/external/autotest/site_utils/
Dloglib.py74 logging.config.dictConfig({
/external/autotest/site_utils/deployment/prepare/
Dmain.py103 logging.config.dictConfig({
/external/python/cpython3/Doc/library/
Dlogging.config.rst36 .. 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/
Dlogging.config.rst37 .. 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/
Dlogging-cookbook.rst710 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 …]
Dlogging.rst560 to the :func:`dictConfig` function.
676 The dictionary passed to :func:`dictConfig` can also specify a Boolean
/external/python/cpython3/Doc/howto/
Dlogging-cookbook.rst935 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 …]
Dlogging.rst585 to the :func:`dictConfig` function.
703 The dictionary passed to :func:`dictConfig` can also specify a Boolean
/external/autotest/venv/skylab_suite/
Dsuite_tracking.py382 logging.config.dictConfig({
/external/python/cpython2/Lib/logging/
Dconfig.py792 def dictConfig(config): function
838 dictConfig(d)
/external/python/cpython3/Lib/logging/
Dconfig.py797 def dictConfig(config): function
853 dictConfig(d)
/external/python/cpython2/Lib/test/
Dtest_logging.py1665 logging.config.dictConfig(conf)
/external/python/cpython3/Misc/NEWS.d/
D3.7.1rc1.rst778 dictConfig. Patch by Karthikeyan Singaravelan.
D3.5.0a1.rst3963 Updated fileConfig and dictConfig to remove inconsistencies. Thanks to Jure
/external/python/cpython3/Doc/whatsnew/
D3.2.rst189 :func:`logging.config.dictConfig` for specifying logging configuration with
219 >>> logging.config.dictConfig(conf)
D2.7.rst462 Python 2.7 adds a :func:`~logging.dictConfig` function that
509 logging.config.dictConfig(configdict)
/external/python/cpython2/Misc/NEWS.d/
D2.7.4rc1.rst677 Corrected MemoryHandler configuration in dictConfig() where the target
/external/python/cpython2/Doc/whatsnew/
D2.7.rst462 Python 2.7 adds a :func:`~logging.dictConfig` function that
509 logging.config.dictConfig(configdict)
/external/python/cpython3/Lib/test/
Dtest_logging.py2769 logging.config.dictConfig(conf)
/external/python/cpython3/Misc/
DHISTORY5181 - Issue #17508: Corrected logging MemoryHandler configuration in dictConfig()