Home
last modified time | relevance | path

Searched full:run (Results 1 – 25 of 131) sorted by relevance

123456

/dokuwiki/.github/workflows/
H A DtestWindows.yml18 run:
39 run: |
44 run: |
48 - name: Run PHPUnit
49 run: |
51 composer run test
H A DautoFix.yml27 run: |
37 - name: Run Rector
38 run: ./_test/vendor/bin/rector process --config _test/rector.php --no-diffs
40 - name: Run PHP CodeSniffer autofixing
42 run: ./_test/vendor/bin/phpcbf --standard=_test/phpcs_MigrationAdjustments.xml
52 …ully check the changes before merging. Please note that unit tests are not run for automated pull …
H A DtestLinux.yml18 run:
57 run: |
62 run: |
69 - name: Run PHPUnit
70 run: |
72 composer run test
H A DphpCS.yml32 - name: run PHP codesniffer
33 run: |
36 composer run check
H A Drelease-build.yml21 run: |
25 run: |
54 run: |
58 run: |
97 run: |
108 run: |
H A Drelease-preparation.yml33 run: |
43 run: |
48 run: |
56 run: |
63 run: |
H A DdeletedFiles.yml29 run: |
38 run: |
/dokuwiki/vendor/splitbrain/slika/
H A DREADME.md19 Simply get an Adapter from the Slika factory, run some operations on it and call `save`.
21 …onsider the chain to be one command. Do not reuse the adapter returned by `run()`, it is a single …
23 Options (see below) can be passed as a second parameter to the `run` factory.
34 Slika::run('input.png', $options)
55 Slika::run('input.jpg')->resize(500,500)->save('output.png', 'png');
58 Slika::run('input.jpg')->resize(500,0)->save('output.png', 'png');
61 Slika::run('input.jpg')->resize(0,500)->save('output.png', 'png');
69 Slika::run('input.jpg')->crop(500,500)->save('output.png', 'png');
86 Slika::run('input.jpg')->rotate(Slika::ROTATE_CW)->save('output.png', 'png');
94 Slika::run('input.jpg')->autorotate()->save('output.png', 'png');
[all …]
/dokuwiki/_test/
H A DREADME15 The composer configuration contains a number of scripts to run the various tools on all of DokuWiki.
17 Run all the tests:
19 composer run test
23 composer run check
27 composer run autofix
/dokuwiki/lib/plugins/styling/
H A Dadmin.php38 $run = $INPUT->extract('run')->str('run');
39 if (!$run) return;
41 $run = 'run' . ucfirst($run);
42 $this->$run();
101 echo '<button type="submit" name="run[preview]" class="btn_preview primary">' .
104 … echo '<button type="submit" name="run[reset]">' . $this->getLang('btn_reset') . '</button>';
108 …echo '<button type="submit" name="run[save]" class="primary">' . $this->getLang('btn_save') . '</b…
113 … echo '<button type="submit" name="run[revert]">' . $this->getLang('btn_revert') . '</button>';
/dokuwiki/lib/scripts/
H A Dlinkwiz.test.js4 …* This is a simple self-contained test suite until we introduce a proper way to run JavaScript tes…
7 * Needs to be run manually as:
34 // Run the tests
/dokuwiki/bin/
H A Dplugin.php26 …$options->registerArgument('plugin', 'The plugin CLI you want to run. Leave off to see list', fals…
32 * Arguments and options have been parsed when this is run
45 $plugin->run();
111 $cli->run();
H A Drender.php45 * Arguments and options have been parsed when this is run
66 $cli->run();
H A Dindexer.php48 * Arguments and options have been parsed when this is run
118 $cli->run();
H A Dstriplangs.php46 * Arguments and options have been parsed when this is run
116 $cli->run();
/dokuwiki/vendor/splitbrain/slika/src/
H A DSlika.php18 /** these can be overwritten using the options array in run() */
40 public static function run($imagePath, $options = []) function in splitbrain\\slika\\Slika
/dokuwiki/inc/Action/
H A DAbstractAction.php47 * Check conditions are met to run this action
61 * Throw an Exception if a different action should be run after this step.
H A DPlugin.php10 * Used to run action plugins
/dokuwiki/lib/exe/
H A Dtaskrunner.php20 $taskRunner->run();
/dokuwiki/
H A DSECURITY.md5 …ilites as fast as possible, but please keep in mind that this is a project run by volunteers. Depe…
/dokuwiki/vendor/php81_bc/strftime/
H A Dcomposer.json28 "test": "Run PHPUnit tests"
/dokuwiki/inc/
H A DTaskRunner.php13 * Run an asynchronous task.
18 * Run the next task
23 public function run() function in dokuwiki\\TaskRunner
46 // run one of the jobs
/dokuwiki/_test/core/
H A DDokuWikiTest.php57 * Reset the DokuWiki environment before each test run. Makes sure loaded config,
151 * Reinitialize the data directory for this class run
154 // remove any leftovers from the last run
166 * Reinitialize the conf directory for this class run
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DBase.php115 * Arguments and options have been parsed when this is run
133 public function run() function in splitbrain\\phpcli\\Base
136 throw new Exception('This has to be run from the command line');
148 // region run handlers - for easier overriding
/dokuwiki/inc/Extension/
H A DSyntaxPlugin.php68 * may be not be run during the object's current life.
83 * The function must not assume any other of the classes methods have been run

123456