comparison mercurial/configitems.py @ 46299:397e39ad0174

discovery: add a `devel', b'discovery.grow-sample` That option make it possible to disable the "sample growing" behavior when doing analysis and comparison. Differential Revision: https://phab.mercurial-scm.org/D9798
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Sat, 16 Jan 2021 00:29:17 +0100
parents b1ae5383602d
children f17b6e40a775
comparison
equal deleted inserted replaced
46298:b1ae5383602d 46299:397e39ad0174
698 coreconfigitem( 698 coreconfigitem(
699 b'devel', 699 b'devel',
700 b'debug.peer-request', 700 b'debug.peer-request',
701 default=False, 701 default=False,
702 ) 702 )
703 # If discovery.grow-sample is False, the sample size used in set discovery will
704 # not be increased through the process
705 coreconfigitem(
706 b'devel',
707 b'discovery.grow-sample',
708 default=True,
709 )
703 # If discovery.randomize is False, random sampling during discovery are 710 # If discovery.randomize is False, random sampling during discovery are
704 # deterministic. It is meant for integration tests. 711 # deterministic. It is meant for integration tests.
705 coreconfigitem( 712 coreconfigitem(
706 b'devel', 713 b'devel',
707 b'discovery.randomize', 714 b'discovery.randomize',