Home
last modified time | relevance | path

Searched refs:progress_logger (Results 1 – 12 of 12) sorted by relevance

/dports/devel/nuitka/Nuitka-0.6.17/nuitka/optimizations/
H A DOptimization.py41 progress_logger,
84 other_logger=progress_logger,
128 other_logger=progress_logger,
133 "Finished with the module.", other_logger=progress_logger
142 other_logger=progress_logger,
163 progress_logger.info(
226 "PASS %d:" % pass_count, other_logger=progress_logger
246 other_logger=progress_logger,
/dports/devel/py-deepdiff/deepdiff-5.6.0/tests/
H A Dtest_diff_other.py26 progress_logger = mock.Mock()
27 DeepDiff(t1, t2, log_frequency_in_sec=0.02, progress_logger=progress_logger)
28 assert PROGRESS_MSG.format(0, 0, 0) == progress_logger.call_args[0][0]
/dports/devel/py-deepdiff/deepdiff-5.6.0/docs/
H A Dstats.rst37 progress_logger: log function, default = logger.info
39 …cy_in_sec to anything above zero. The function that is passed as the progress_logger needs to be t…
42 For example you can pass progress_logger=logger.warning to the example above and everything is logg…
44 >>> DeepDiff(t1, t2, log_frequency_in_sec=1, progress_logger=logger.warning)
H A Ddiff_doc.rst128 progress_logger: log function, default = logger.info
/dports/math/py-Pyomo/Pyomo-6.1.2/pyomo/contrib/pyros/
H A Dutil.py882 config.progress_logger.info('Robust optimal solution identified. Exiting PyROS.')
886 config.progress_logger.info('Robust feasible solution identified. Exiting PyROS.')
890 config.progress_logger.info('Robust infeasible problem. Exiting PyROS.')
895 config.progress_logger.info(
903 config.progress_logger.info(
918 config.progress_logger.info(
930 config.progress_logger.info(
H A Dpyros_algorithm_methods.py64 config.progress_logger.info("PyROS has determined that the model is robust infeasible. "
158 config.progress_logger.info("PyROS working on iteration %s..." % k)
H A Dseparation_problem_methods.py165 config.progress_logger.info(v.name + " " + str(v.value))
167 config.progress_logger.info(v.name + " " + str(v.value))
H A Dpyros.py338 config.progress_logger.setLevel(logging.INFO)
/dports/devel/py-deepdiff/deepdiff-5.6.0/deepdiff/
H A Ddiff.py55 def _report_progress(_stats, progress_logger, duration): argument
59 progress_logger(PROGRESS_MSG.format(duration, _stats[PASSES_COUNT], _stats[DIFF_COUNT]))
136 progress_logger=logger.info,
224 self.progress_logger = progress_logger
261 …rogress_timer = RepeatedTimer(log_frequency_in_sec, _report_progress, self._stats, progress_logger)
1228 self.progress_logger('Re-enabling the distance and level caches.')
1244 … self.progress_logger('Due to minimal cache hits, {} is disabled.'.format('distance cache'))
/dports/devel/nuitka/Nuitka-0.6.17/nuitka/
H A DTracing.py268 progress_logger = OurLogger("Nuitka-Progress", quiet=True) variable
H A DOptions.py113 Tracing.progress_logger.is_quiet = not options.show_progress
/dports/archivers/py-borgbackup/borgbackup-1.1.17/src/borg/
H A Dremote.py1015 progress_logger = logging.getLogger('borg.output.progress')
1016 if progress_logger.getEffectiveLevel() == logging.INFO: