Home
last modified time | relevance | path

Searched +full:- +full:- +full:verbose (Results 1 – 25 of 218) sorted by relevance

123456789

/plugin/dokullm/
H A Dcli.php20 $options->setHelp(
33 $options->registerOption('verbose', 'Enable verbose output', 'v');
35 // Action-specific options
36 $options->registerCommand('send', 'Send a file or directory to ChromaDB');
37 $options->registerArgument('path', 'File or directory path', true, 'send');
39 $options->registerCommand('query', 'Query ChromaDB');
40 …//$options->registerOption('collection', 'Collection name to query', 'c', 'collection', 'documents…
41 … //$options->registerOption('limit', 'Number of results to return', 'l', 'limit', '5', 'query');
42 $options->registerArgument('search', 'Search terms', true, 'query');
44 $options->registerCommand('heartbeat', 'Check if ChromaDB server is alive');
[all …]
/plugin/structtasks/
Dcli.php12 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
28 $options->setHelp('Send emails to users that have been assigned to tasks.');
29 $options->registerOption('verbose', 'Show progress information', 'v', false);
35 $this->notify($options->getOpt('verbose'));
41 public function notify($verbose = true) { argument
42 if (!$this->initialise($verbose)) {
43 exit(-1);
46 $notifiers = $this->createNotifiers(
47 array_map('intval', explode(',', $this->getConf('reminder'))),
48 (bool)$this->getConf('overdue_reminder'),
[all …]
/plugin/asciidocjs/node_modules/@asciidoctor/cli/lib/
Doptions.js9 const safeMode = args['safe-mode']
10 …const embedded = args.embedded === true || args['no-header-footer'] === true || args.standalone ==…
12 const sectionNumbers = args['section-numbers']
13 const baseDir = args['base-dir']
14 const destinationDir = args['destination-dir']
15 const outFile = args['out-file']
16 const templateDir = args['template-dir']
17 const templateEngine = args['template-engine']
19 const verbose = args.verbose
23 let level = args['failure-level'].toUpperCase()
[all …]
Dinvoker.js19 const { verbose, version, files } = args
20 if (version || (verbose && processArgs.length === 1)) {
31 Invoker.processFiles(files, verbose, args.timings, options)
75 timings.printReport(process.stderr, '-')
89 console.error('> npm install @asciidoctor/docbook-converter')
91 …console.error('> You might want to require a Node.js package with --require option to support this…
103 static processFiles (files, verbose, timings, options) { argument
105 if (verbose) {
121 …// NOTE require resolves a dot-relative path relative to current file; resolve relative to cwd ins…
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Util/
DStringUtil.php23 private $verbose; variable in Prophecy\\Util\\StringUtil
26 * @param bool $verbose
28 public function __construct($verbose = true) argument
30 $this->verbose = $verbose;
44 if (range(0, count($value) - 1) === array_keys($value)) {
67 if (!$this->verbose && 50 <= strlen($str)) {
92 return sprintf(' - %s(%s) @ %s',
93 $call->getMethodName(),
94 implode(', ', array_map(array($self, 'stringify'), $call->getArguments())),
95 str_replace(GETCWD().DIRECTORY_SEPARATOR, '', $call->getCallPlace())
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
DCatNamespace.asciidoc53 ----
55 $params['name'] = (list) A comma-separated list of alias names to return
58 $params['h'] = (list) Comma-separated list of column names to display
60 $params['s'] = (list) Comma-separated list of column names or column aliases to sort…
61 $params['v'] = (boolean) Verbose mode. Display column headers (Default = false)
64 ----
73 ----
75 $params['node_id'] = (list) A comma-separated list of node IDs or names to limit the returne…
80 $params['h'] = (list) Comma-separated list of column names to display
82 $params['s'] = (list) Comma-separated list of column names or column aliases to sort by
[all …]
/plugin/badbehaviour/bad-behavior/
Dadmin.inc.php37 if ($_POST['verbose']) {
38 $settings['verbose'] = true;
40 $settings['verbose'] = false;
51 …<p>For more information please visit the <a href="http://www.bad-behavior.ioerror.us/">Bad Behavio…
52 …avior valuable, please consider making a <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclic…
62 … type="checkbox" name="verbose" value="true" <?php if ($settings['verbose']) { ?>checked="checked"…
/plugin/backlinks2/_test/
Dsyntax.test.php46 $conf['cachetime'] = -1;
53 $verbose = false;
56 idx_addPage($val['id'], $verbose, $force);
58 //idx_addPage('bob_ross_says', $verbose, $force);
59 //idx_addPage('link', $verbose, $force);
60 //idx_addPage('backlinks_syntax', $verbose, $force);
80 $this->assertEquals(
97 $response = $request->get(array('id'=>'link'), '/doku.php');
99 $this->assertTrue(
100 strpos($response->getContent(), 'A link to Bob Ross') !== false,
[all …]
/plugin/findologicxmlexport/vendor/hoa/protocol/Bin/
DResolve.php11 * Copyright © 2007-2017, Hoa community. All rights reserved.
47 * @copyright Copyright © 2007-2017 Hoa community
61 ['no-verbose', Console\GetOption::NO_ARGUMENT, 'V'],
78 $verbose = Console::isDirect(STDOUT);
80 while (false !== $c = $this->getOption($v)) {
98 $verbose = false;
104 return $this->usage();
107 $this->resolveOptionAmbiguity($v);
113 $this->parser->listInputs($path);
116 return $this->usage();
[all …]
/plugin/backlinks/_test/
H A Dsyntax.test.php51 $conf['cachetime'] = -1;
52 $verbose = false;
59 idx_addPage($val['id'], $verbose, $force);
61 //idx_addPage('bob_ross_says', $verbose, $force);
62 //idx_addPage('link', $verbose, $force);
63 //idx_addPage('backlinks_syntax', $verbose, $force);
85 $this->assertEquals(
105 $response = $request->get(array('id' => 'link'), '/doku.php');
107 $this->assertTrue(
108 str_contains($response->getContent(), 'A link to Bob Ross'),
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
DCatNamespace.php5 * @link https://github.com/elastic/elasticsearch-php/
7 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
8 …* @license https://www.gnu.org/licenses/lgpl-2.1.html GNU Lesser General Public License, Version…
25 * and Elasticsearch 7.16.0-SNAPSHOT (dfc9a8e7563ed5f24b5210ed21ed92ae182cd0ee)
33 * $params['name'] = (list) A comma-separated list of alias names to return
36 * $params['h'] = (list) Comma-separated list of column names to display
38 …* $params['s'] = (list) Comma-separated list of column names or column aliases to s…
39 … * $params['v'] = (boolean) Verbose mode. Display column headers (Default = false)
44 * @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-alias.html
48 $name = $this->extractArgument($params, 'name');
[all …]
/plugin/asciidocjs/node_modules/minimist/test/
Dparse.js8 parse(['--no-moo']),
13 parse(['-v', 'a', '-v', 'b', '-v', 'c']),
23 '--name=meowmers', 'bare', '-cats', 'woo',
24 '-h', 'awesome', '--multi=quux',
25 '--key', 'value',
26 '-b', '--bool', '--no-meep', '--multi=baz',
27 '--', '--not-a-flag', 'eek',
41 _: ['bare', '--not-a-flag', 'eek'],
48 var argv = parse(['-t', 'moo'], { boolean: 't' });
55 var argv = parse(['--verbose', 'false', 'moo', '-t', 'true'], {
[all …]
Dbool.js8 boolean: ['t', 'verbose'],
9 default: { verbose: false, t: false },
13 verbose: false, property
18 t.deepEqual(typeof argv.verbose, 'boolean');
25 var argv = parse(['-x', '-z', 'one', 'two', 'three'], {
42 var aliased = ['-h', 'derp'];
43 var regular = ['--herp', 'derp'];
64 var aliased = ['-h', 'derp'];
65 var regular = ['--herp', 'derp'];
83 var aliased = ['-h', 'derp'];
[all …]
/plugin/combo/action/
H A Dindexer.php8 * @license GPL 3 (https://www.gnu.org/licenses/gpl-3.0.en.html)
70 … $controller->register_hook('INDEXER_PAGE_ADD', 'AFTER', $this, 'indexViaIndexerAdd', array());
89 $lock = Lock::create("combo-indexer");
91 $lock->acquire();
99 * php bin/indexer.php -q
101 $verbose = true;
105 if ($arg === '-q') {
106 // Script was started with the -q flag.
107 $verbose = false;
113 if ($verbose) echo 'ComboIndexer(): Indexer started'. DOKU_LF;
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/
Ddependencies-clone.phpt1 --TEST--
2 phpunit --verbose ClonedDependencyTest ../_files/ClonedDependencyTest.php
3 --FILE--
5 $_SERVER['argv'][1] = '--no-configuration';
6 $_SERVER['argv'][2] = '--verbose';
12 --EXPECTF--
Dcustom-printer-verbose.phpt1 --TEST--
2 phpunit -c ../_files/configuration.custom-printer.xml --verbose IncompleteTest ../_files/Incomplete…
3 --FILE--
5 $_SERVER['argv'][1] = '-c';
6 $_SERVER['argv'][2] = __DIR__ . '/../_files/configuration.custom-printer.xml';
7 $_SERVER['argv'][3] = '--verbose';
13 --EXPECTF--
17 Configuration: %sconfiguration.custom-printer.xml
Ddependencies.phpt1 --TEST--
2 phpunit --verbose DependencyTestSuite ../_files/DependencyTestSuite.php
3 --FILE--
5 $_SERVER['argv'][1] = '--no-configuration';
6 $_SERVER['argv'][2] = '--verbose';
12 --EXPECTF--
27 --
Ddependencies-isolation.phpt1 --TEST--
2 phpunit --process-isolation --verbose DependencyTestSuite ../_files/DependencyTestSuite.php
3 --FILE--
5 $_SERVER['argv'][1] = '--no-configuration';
6 $_SERVER['argv'][2] = '--process-isolation';
7 $_SERVER['argv'][3] = '--verbose';
13 --EXPECTF--
28 --
/plugin/ragasker/lang/en/
H A Dsettings.php6 $lang['temperature'] = 'Temperature (0.0-2.0)';
7 $lang['verbose'] = 'Enable Verbose Logging';
/plugin/asciidocjs/node_modules/repeat-string/
DREADME.md1-string [![NPM version](https://img.shields.io/npm/v/repeat-string.svg?style=flat)](https://www.np…
10 $ npm install --save repeat-string
24 var repeat = require('repeat-string');
41 repeat-string █████████████████████████ (26,953,977 ops/sec)
46 repeat-string █████████████████████████ (19,445,252 ops/sec)
51 repeat-string █████████████████████████ (23,792,521 ops/sec)
56 repeat-string █████████████████████████ (23,640,179 ops/sec)
61 repeat-string █████████████████████████ (23,489,618 ops/sec)
66 repeat-string █████████████████████████ (20,315,172 ops/sec)
71 repeat-string █████████████████████████ (23,382,915 ops/sec)
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/TextUI/
DResultPrinter.php33 'fg-black' => 30,
34 'fg-red' => 31,
35 'fg-green' => 32,
36 'fg-yellow' => 33,
37 'fg-blue' => 34,
38 'fg-magenta' => 35,
39 'fg-cyan' => 36,
40 'fg-white' => 37,
41 'bg-black' => 40,
42 'bg-red' => 41,
[all …]
/plugin/swiftmail/Swift/Plugin/VerboseSending/
DAbstractView.php4 * Swift Mailer Verbose-sending Plugin View Layer.
13 * The View layer for the Verbose Sending Plugin
DDefaultView.php4 * Swift Mailer Verbose-sending Plugin Default View File.
16 * The Default View for the Verbose Sending Plugin
36 $this->count++;
41 font-weight: bold; background: <?php echo $color; ?>;">
42 <span style="float: right; text-decoration: underline;">
44 Recipient (<?php echo $this->count; ?>):
/plugin/asciidocjs/node_modules/lazy-cache/
DREADME.md1-cache [![NPM version](https://img.shields.io/npm/v/lazy-cache.svg?style=flat)](https://www.npmjs.…
3 > Cache requires to be lazy-loaded when needed.
10 $ npm install lazy-cache --save
13 …e webpack and are experiencing issues, try using [unlazy-loader](https://github.com/doowb/unlazy-l…
18 var utils = require('lazy-cache')(require);
27 var utils = require('lazy-cache')(require);
44 var utils = require('lazy-cache')(require);
53 An alias may be passed as the second argument if you don't want to use the automatically camel-case…
58 var utils = require('lazy-cache')(require);
60 // alias `ansi-yellow` as `yellow`
[all …]
/plugin/combo/.travis/
H A D.travis.yml2 # https://www.ovh.nl/shared-hosting/persoonlijke-shared-hosting.xml
3 # and https://github.com/splitbrain/dokuwiki-travis
8 - main
9 - stable
11 # https://docs.travis-ci.com/user/build-matrix/#excluding-jobs-with-env-value
14 # https://config.travis-ci.com/ref/job/if/condition
16 - if: branch =~ ^main
19 env: DOKUWIKI=stable # the last version of dokuwiki (master = dev, old-stable = previous)
20 - if: branch =~ ^main
23 env: DOKUWIKI=stable # the last version of dokuwiki (master = dev, old-stable = previous)
[all …]

123456789