Home
last modified time | relevance | path

Searched refs:configbool (Results 1 – 25 of 135) sorted by relevance

123456

/dports/devel/mercurial/mercurial-6.0/tests/
H A Dtest-ui-config.py68 print(pprint(testui.configbool(b'values', b'string')))
71 print(pprint(testui.configbool(b'values', b'bool1')))
72 print(pprint(testui.configbool(b'values', b'bool2')))
73 print(pprint(testui.configbool(b'values', b'bool2', True)))
74 print(pprint(testui.configbool(b'values', b'unknown')))
75 print(pprint(testui.configbool(b'values', b'unknown', True)))
124 testui.configbool(b'values', b'boolinvalid')
H A Dwireprotosimplecache.py35 if rctx.repo.ui.configbool(b'simplecache', b'cacheobjects'):
81 self.cacheobjects = ui.configbool(b'simplecache', b'cacheobjects')
82 self.cacheapi = ui.configbool(b'simplecache', b'cacheapi')
H A Dtest-check-config.t15 > foo = ui.configbool('ui', 'missingbool1', default=True)
16 > foo = ui.configbool('ui', 'missingbool2', False)
/dports/devel/py-hg-evolve/hg-evolve-10.4.1/hgext3rd/evolve/
H A Dutility.py20 verbose = ui.configbool(b'experimental', b'verbose-obsolescence-exchange')
41 configbool = repo.ui.configbool
59 warm = configbool(b'experimental', b'obshashrange.warm-cache')
60 if not configbool(b'experimental', b'obshashrange'):
/dports/devel/mercurial/mercurial-6.0/mercurial/
H A Ddiffutil.py55 def get(key, name=None, getter=ui.configbool, forceplain=None):
79 buildopts[b'xdiff'] = ui.configbool(b'experimental', b'xdiff')
86 buildopts[b'showsimilarity'] = ui.configbool(
H A Dwireprotov1server.py112 v = ui.configbool(b'server', b'bundle1gd.%s' % action)
116 v = ui.configbool(b'server', b'bundle1.%s' % action)
121 v = ui.configbool(b'server', b'bundle1gd')
125 return ui.configbool(b'server', b'bundle1')
307 if repo.ui.configbool(b'server', b'preferuncompressed'):
316 if repo.ui.configbool(b'experimental', b'bundle2-advertise'):
321 if repo.ui.configbool(b'experimental', b'narrow'):
323 if repo.ui.configbool(b'experimental', b'narrowservebrokenellipses'):
472 repo.ui.configbool(b'server', b'pullbundle')
482 if repo.ui.configbool(b'server', b'disablefullbundle'):
[all …]
H A Dui.py340 if not self.configbool(b'ui', b'tweakdefaults'):
389 if enabled and self.configbool(
1359 if self.configbool(b'ui', b'nontty'):
1420 or not self.configbool(b'ui', b'paginate')
1644 i = self.configbool(b"ui", b"interactive")
1681 i = self.configbool(b"ui", b"formatted")
1762 if self.configbool(b'ui', b'promptecho'):
1833 if self.configbool(b'ui', b'nontty'):
2055 or self.configbool(b'progress', b'disable')
2190 self.configbool(b'devel', b'all-warnings')
[all …]
H A Dsetdiscovery.py314 initial_head_exchange = ui.configbool(b'devel', b'discovery.exchange-heads')
431 configbool = local.ui.configbool
432 grow_sample = configbool(b'devel', b'discovery.grow-sample')
435 dynamic_sample = configbool(b'devel', b'discovery.grow-sample.dynamic')
438 randomize = ui.configbool(b'devel', b'discovery.randomize')
H A Dlocalrepo.py627 mismatch_warn = ui.configbool(
670 mismatch_warn = ui.configbool(
1068 deltabothparents = ui.configbool(
1079 lazydeltabase = ui.configbool(
1413 if self.ui.configbool(b'devel', b'all-warnings') or self.ui.configbool(
1427 if self.ui.configbool(b'devel', b'all-warnings') or self.ui.configbool(
2341 if self.ui.configbool(b'devel', b'all-warnings') or self.ui.configbool(
2406 shouldtracktags = self.ui.configbool(
3596 if ui.configbool(b'format', b'usestore'):
3598 if ui.configbool(b'format', b'usefncache'):
[all …]
H A Dwireprotoserver.py147 if repo.ui.configbool(b'experimental', b'httppostargs'):
254 if repo.ui.configbool(section, option):
268 if not repo.ui.configbool(b'experimental', b'web.apiserver'):
382 if not repo.ui.configbool(b'experimental', b'web.apiserver'):
750 if not ui.configbool(b'experimental', b'sshserver.support-v2'):
/dports/devel/py-hg-evolve/hg-evolve-10.4.1/hgext3rd/topic/
H A Dserver.py58 hidetopics = repo.ui.configbool(b'experimental', b'topic.server-gate-topic-changesets')
74 if repo.ui.configbool(b'phases', b'publish'):
76 elif repo.ui.configbool(b'experimental', b'topic.publish-bare-branch'):
H A D__init__.py457 if repo.ui.configbool(b'rebase', b'experimental.inmemory'):
469 if self.ui.configbool(b'phases', b'publish'):
471 elif self.ui.configbool(b'experimental',
557 if self.ui.configbool(b'experimental', b'enforce-single-head'):
584 publishbare = self.ui.configbool(b'experimental',
622 allow_publish = self.ui.configbool(b'experimental',
1266 enforcetopic = ui.configbool(b'experimental', b'enforce-topic')
1383 if repo.ui.configbool(b'_internal', b'keep-topic'):
/dports/sysutils/munin-contrib/contrib-c31cb28/plugins/network/
H A Dinterfaces_linux_multi166 sub configbool($) {
184 $should_graph->{'bytes'} = configbool($ENV{MUNIN_GRAPH_BYTES});
187 $should_graph->{'packets'} = configbool($ENV{MUNIN_GRAPH_PACKETS});
190 $should_graph->{'errors'} = configbool($ENV{MUNIN_GRAPH_ERRORS});
/dports/devel/mercurial/mercurial-6.0/hgext/fastannotate/
H A Dcommands.py38 perfhack = repo.ui.configbool(b'fastannotate', b'perfhack')
177 if ui.configbool(b'fastannotate', b'unfilteredrepo'):
268 if ui.configbool(b'fastannotate', b'unfilteredrepo'):
272 if ui.configbool(b'fastannotate', b'forcetext'):
319 if ui.configbool(b'fastannotate', b'unfilteredrepo'):
H A D__init__.py162 if ui.configbool(b'fastannotate', b'server'):
173 if ui.configbool(b'fastannotate', b'client'):
/dports/devel/mercurial/mercurial-6.0/hgext/
H A Dnotify.py331 self.test = self.ui.configbool(b'notify', b'test')
334 self.merge = self.ui.configbool(b'notify', b'merge')
335 self.showfunc = self.ui.configbool(b'notify', b'showfunc')
337 self.reply = self.ui.configbool(b'notify', b'reply-to-predecessor')
348 self.showfunc = self.ui.configbool(b'diff', b'showfunc')
556 if self.ui.configbool(b'notify', b'diffstat'):
H A Dbookflow.py54 elif ui.configbool(MY_NAME, b'require-bookmark', True):
125 if not ui.configbool(MY_NAME, b'enable-branches'):
H A Deol.py148 if ui.configbool(b'eol', b'only-consistent') and inconsistenteol(s):
151 ui.configbool(b'eol', b'fix-trailing-newline')
163 if ui.configbool(b'eol', b'only-consistent') and inconsistenteol(s):
166 ui.configbool(b'eol', b'fix-trailing-newline')
H A Dblackbox.py148 if ui.configbool(b'blackbox', b'dirty') and ctx.dirty(
152 if ui.configbool(b'blackbox', b'logsource'):
H A Dpager.py62 usepager = ui.configbool(b'pager', var, True)
/dports/devel/mercurial/mercurial-6.0/mercurial/hgweb/
H A Dhgweb_mod.py132 self.allowpull = self.configbool(b'web', b'allow-pull')
153 def configbool(self, *args, **kwargs): member in requestcontext
155 return self.repo.ui.configbool(*args, **kwargs)
352 profile = repo.ui.configbool(b'profiling', b'enabled')
373 apienabled = rctx.repo.ui.configbool(b'experimental', b'web.apiserver')
453 if rctx.configbool(b'web', b'cache') and not rctx.nonce:
/dports/x11/xpra/xpra-4.3/xpra/net/
H A Dssh.py355 def configbool(key, default_value=True): function
366 if configbool("verify-hostkey", VERIFY_HOSTKEY):
392 if configbool("verifyhostkeydns"):
426 if configbool("stricthostkeychecking", VERIFY_STRICT):
458 if configbool("addkey", ADD_KEY):
631 if configbool("noneauthentication", NONE_AUTH):
633 if password and configbool("passwordauthentication", PASSWORD_AUTH):
635 if configbool("agentauthentication", AGENT_AUTH):
638 if configbool("keyauthentication", KEY_AUTH):
640 if not password and configbool("passwordauthentication", PASSWORD_AUTH):
/dports/devel/tortoisehg/tortoisehg-5.9.3/tortoisehg/hgqt/
H A Dvisdiff.py349 force = repo.ui.configbool(b'tortoisehg', b'forcevdiffwin')
354 dirdiff = repo.ui.configbool(b'merge-tools', preferred + b'.dirdiff')
355 dir3diff = repo.ui.configbool(b'merge-tools', preferred + b'.dir3diff')
356 usewin = repo.ui.configbool(b'merge-tools', preferred + b'.usewin')
629 d2 = self.repo.ui.configbool(b'merge-tools', tool + b'.dirdiff')
630 d3 = self.repo.ui.configbool(b'merge-tools', tool + b'.dir3diff')
635 d2 = self.repo.ui.configbool(b'merge-tools', tool + b'.dirdiff')
/dports/devel/hgreviewboard/ccaughie-hgreviewboard-e461a0baf62d/
H A D__init__.py105 if opts.get('git') or ui.configbool('diff', 'git'):
210 not ui.configbool('reviewboard', 'explicit_publish_update'))
272 ui.configbool('reviewboard', 'launch_webbrowser'):
/dports/devel/mercurial/mercurial-6.0/hgext/infinitepush/
H A Dcommon.py20 return b'remotenames' in extensions._extensions and ui.configbool(

123456