Home
last modified time | relevance | path

Searched refs:code (Results 1 – 25 of 67) sorted by relevance

123

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/
H A DEvalBarrett.php62 $code = '
71 eval('$func = function ($x) { ' . $code . '};');
110 $code = $correctionNeeded ?
114 $code .= '
128 $code .= self::generateInlineTrim('msd');
129 $code .= self::generateInlineMultiply('msd', $m1, 'temp', $class);
130 $code .= self::generateInlineAdd('lsd', 'temp', 'n', $class);
132 $code .= '$temp = array_slice($n, ' . (count($m) - 1) . ');';
133 $code .= self::generateInlineMultiply('temp', $u, 'temp2', $class);
134 $code .= self::generateInlineTrim('temp2');
[all …]
/dokuwiki/vendor/kissifrot/php-ixr/src/Message/
H A DError.php12 public $code; variable in IXR\\Message\\Error
15 public function __construct($code, $message) argument
17 $this->code = $code;
30 <value><int>{$this->code}</int></value>
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DException.php25 * @param int $code The Exception code
28 public function __construct($message = "", $code = 0, \Exception $previous = null) argument
30 if (!$code) {
31 $code = self::E_ANY;
33 parent::__construct($message, $code, $previous);
H A DBase.php259 $code = 0;
264 $code = $error->getCode();
268 if (!$code) {
269 $code = Exception::E_ANY;
273 exit($code);
H A DTableFormatter.php309 foreach ($color_codes[0] as $code) {
310 if ($code == $color_reset) {
314 $color = $code;
/dokuwiki/lib/exe/
H A Dopenapi.php60 foreach ($apigen->getErrorCodes() as $code) {
62 if ($code['code'] === $last && !$INPUT->has('debug')) continue;
63 $last = $code['code'];
64 … echo '<tr><td>' . $code['code'] . '</td><td>' . hsc($code['message']) . '</td></tr>';
/dokuwiki/_test/tests/inc/
H A Dlang.php78 foreach ($this->findLanguages() as $code) {
82 $foreignFile = "$base/lang/$code/$file";
90 $code,
104 * @param string $code language code of the foreign file
109 public function testObsolete($english, $foreign, $code, $file, $prefix = '') argument
119 $this->testObsolete($english[$key], $value, $code, $file, $key);
129 * @param string $code language code of the foreign file
134 public function testPlaceholders($english, $foreign, $code, $file, $prefix = '') argument
144 $this->testPlaceholders($english[$key], $value, $code, $file, $key);
160 "$code: '$value'",
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/Reductions/
H A DEvalBarrett.php61 $code = 'return bcmod($x, $n);';
62 eval('$func = function ($n) { ' . $code . '};');
77 $code = '
102 eval('$func = function ($n) { ' . $code . '};');
/dokuwiki/inc/
H A Dhttputils.php290 * @param int $code
293 function http_status($code = 200, $text = '') argument
336 if ($text == '' && isset($stati[$code])) {
337 $text = $stati[$code];
343 header("Status: {$code} {$text}", true);
345 header($server_protocol . " {$code} {$text}", true, $code);
347 header("HTTP/1.1 {$code} {$text}", true, $code);
H A Ddeprecated.php110 public function __construct($code, $message) argument
113 parent::__construct($code, $message);
/dokuwiki/_test/
H A DREADME3 This directory contains the test suite for DokuWiki as well as configuration for various code quali…
21 Check for code style violations:
25 Automatically fix code style violations:
43 To check for code violations:
47 To automatically fix code violations:
55 To automatically fix code smells
H A Dcomposer.lock582 "name": "phpunit/php-code-coverage",
586 "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
591 …"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db…
603 "sebastian/code-unit-reverse-lookup": "^2.0.3",
606 "sebastian/lines-of-code": "^1.0.4",
639 …that provides collection, processing, and rendering functionality for PHP code coverage informatio…
640 "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
647 "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
648 … "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
649 "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
[all …]
/dokuwiki/inc/lang/la/
H A Dlang.php237 $lang['i_funcna'] = 'PHP functio <code>%s</code> inepta est.';
238 …lang['i_phpver'] = 'Forma tua PHP <code>%s</code> minor quam illa necessaria <code>%s…
239 $lang['i_permfail'] = '<code>%s</code> non a uice scribitur. Facultates inspicere.';
240 $lang['i_confexists'] = '<code>%s</code> iam est.';
241 $lang['i_writeerr'] = '<code>%s</code> non creari potest. Manu illum creas.';
242 $lang['i_badhash'] = 'Ignotum uel mutatum dokuwiki.php (<code>%s</code>)';
243 $lang['i_badval'] = '<code>%s</code> non legitimum uel uacuom';
/dokuwiki/_test/core/
H A DTestResponse.php80 $code = null;
88 $code = $matches[1];
92 return $code;
/dokuwiki/lib/plugins/config/core/Setting/
H A DSettingPassword.php10 protected $code = 'plain'; // mechanism to be used to obscure passwords variable in dokuwiki\\plugin\\config\\core\\Setting\\SettingPassword
24 $this->local = conf_encodeString($input, $this->code);
/dokuwiki/lib/scripts/jquery/
H A Dversions1 # this is loaded from the update.sh script and our PHP code
/dokuwiki/inc/parser/
H A Dcode.php24 public function code($text, $language = null, $filename = '') function in Doku_Renderer_code
58 $this->code($text, $language, $filename);
/dokuwiki/vendor/splitbrain/php-jsstrip/
H A DREADME.md3 This is a PHP port of Nick Galbreath's python tool [jsstrip.py](https://code.google.com/p/jsstrip/).
18 You'll have to convert your code to use ';' first.
43 You can skip Minification for parts of your code by surrounding it by special comments:
/dokuwiki/lib/plugins/extension/lang/en/
H A Dintro_search.txt1 …plate|templates]] for DokuWiki. Please be aware that installing 3rd party code may pose a **securi…
/dokuwiki/lib/plugins/config/lang/bg/
H A Dlang.php134 …е на IE преди 8! Препоръчителни стойности: <code>400</code> до <code>600</code> байта. Въведете <c…
/dokuwiki/lib/plugins/extension/lang/fr/
H A Dintro_search.txt1 …r:template|thèmes]] de tierces parties. Restez conscients qu'installer du code de tierce partie pe…
/dokuwiki/data/pages/wiki/
H A Dsyntax.txt86 …g_some_localized_texts_and_strings_in_your_installation|localization]]): <code - conf/lang/en/lang…
93 </code>
210 <code>
220 </code>
263 <code>
266 </code>
276 <code>
288 </code>
380 …e code blocks into your documents by either indenting them by at least two spaces (like used for t…
384 <code>
[all …]
/dokuwiki/_test/data/pages/wiki/
H A Dsyntax.txt86 …g_some_localized_texts_and_strings_in_your_installation|localization]]): <code - conf/lang/en/lang…
93 </code>
210 <code>
220 </code>
263 <code>
266 </code>
276 <code>
288 </code>
380 …e code blocks into your documents by either indenting them by at least two spaces (like used for t…
384 <code>
[all …]
/dokuwiki/lib/plugins/config/lang/pt-br/
H A Dlang.php163 …nará na versões do IE < 8! Valores de <code>400</code> a <code>600</code> são bons. Defina o valo…
184 $lang['jquerycdn_o_jquery'] = 'CDN em code.jquery.com';
/dokuwiki/lib/plugins/config/lang/pt/
H A Dlang.php157 …uzir a carga de pedidos HTTP extra. <code>400</code> a <code>600</code> bytes é um bom valor. Esco…
178 $lang['jquerycdn_o_jquery'] = 'CDN em code.jquery.com';

123