Home
last modified time | relevance | path

Searched refs:engine (Results 1 – 25 of 97) sorted by relevance

1234

/plugin/combo/vendor/salesforce/handlebars-php/tests/Handlebars/
H A DHandlebarsTest.php35 $engine = new \Handlebars\Handlebars(array('loader' => $loader));
36 $this->assertEquals($result, $engine->render($src, $data));
81 $engine = new \Handlebars\Handlebars(array('loader' => $loader, 'helpers' => $helpers));
83 $this->assertEquals($result, $engine->render($src, $data));
228 $engine = new \Handlebars\Handlebars(array(
234 $this->assertEquals($result, $engine->render($src, $data));
245 $engine = new \Handlebars\Handlebars(array(
252 $this->assertEquals('apple, banana, 0, zucchini', $engine->render($template, $data));
404 $engine = new \Handlebars\Handlebars(array('helpers' => $helpers));
405 $this->assertTrue(is_callable($engine
[all...]
/plugin/batchedit/
H A Dadmin.php11 require_once(DOKU_PLUGIN . 'batchedit/engine.php');
99 $engine = $this->createEngine();
102 $this->findMatches($engine, $request);
103 $this->markMatches($engine, $request);
111 $engine = $this->createEngine();
114 $this->findMatches($engine, $request);
117 $this->applyMatches($engine, $request);
135 private function findMatches($engine, $request) { argument
136 $engine->findMatches($request->getNamespace(), $request->getRegexp(), $request->getReplacement(),
145 private function markMatches($engine, argument
156 applyMatches($engine, $request) global() argument
[all...]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudDataplex/
H A DGoogleCloudDataplexV1ContentSqlScript.php25 public $engine; variable in Google\\Service\\CloudDataplex\\GoogleCloudDataplexV1ContentSqlScript
30 public function setEngine($engine) argument
32 $this->engine = $engine;
39 return $this->engine;
H A DGoogleCloudDataplexV1SessionEventQueryDetail.php33 public $engine; variable in Google\\Service\\CloudDataplex\\GoogleCloudDataplexV1SessionEventQueryDetail
78 public function setEngine($engine) argument
80 $this->engine = $engine;
87 return $this->engine;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DatabaseMigrationService/
H A DDatabaseType.php25 public $engine; variable in Google\\Service\\DatabaseMigrationService\\DatabaseType
34 public function setEngine($engine) argument
36 $this->engine = $engine;
43 return $this->engine;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DTripleDES.php184 * @param int $engine
188 protected function isValidEngineHelper($engine) argument
190 if ($engine == self::ENGINE_OPENSSL) {
196 return parent::isValidEngineHelper($engine);
444 * @param int $engine
447 public function setPreferredEngine($engine) argument
450 $this->des[0]->setPreferredEngine($engine);
451 $this->des[1]->setPreferredEngine($engine);
452 $this->des[2]->setPreferredEngine($engine);
455 parent::setPreferredEngine($engine);
H A DRC4.php112 * @param int $engine
116 protected function isValidEngineHelper($engine) argument
118 if ($engine == self::ENGINE_OPENSSL) {
141 return parent::isValidEngineHelper($engine);
193 if ($this->engine != self::ENGINE_INTERNAL) {
213 if ($this->engine != self::ENGINE_INTERNAL) {
H A DRC2.php290 * @param int $engine
294 protected function isValidEngineHelper($engine) argument
296 switch ($engine) {
305 return parent::isValidEngineHelper($engine);
417 if ($this->engine == self::ENGINE_OPENSSL) {
440 if ($this->engine == self::ENGINE_OPENSSL) {
H A DBlowfish.php329 * @param int $engine
333 protected function isValidEngineHelper($engine) argument
335 if ($engine == self::ENGINE_OPENSSL) {
346 return parent::isValidEngineHelper($engine);
H A DDES.php608 * @param int $engine
612 protected function isValidEngineHelper($engine) argument
615 if ($engine == self::ENGINE_OPENSSL) {
621 return parent::isValidEngineHelper($engine);
H A DRijndael.php283 * @param int $engine
287 protected function isValidEngineHelper($engine) argument
289 switch ($engine) {
321 return parent::isValidEngineHelper($engine);
993 switch ($this->engine) {
1025 switch ($this->engine) {
H A DSalsa20.php320 if ($this->engine == self::ENGINE_OPENSSL) {
357 if ($this->engine == self::ENGINE_OPENSSL) {
382 if ($this->engine == self::ENGINE_OPENSSL) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DSymmetricKey.php441 protected $engine; variable in phpseclib3\\Crypt\\Common\\SymmetricKey
2245 * @param int $engine
2251 switch ($engine) {
2295 * @param string $engine
2306 $engine = strtolower($engine);
2332 * @param string $engine
2342 $engine = strtolower($engine);
2367 $this->engine = null;
2385 $this->engine = $engine;
2389 if (!$this->engine) {
[all …]
/plugin/badbehaviour/bad-behavior/
H A Ddokuwiki.patch9 - // Bypass all checks if http:BL says search engine
16 + // Bypass all checks if http:BL says search engine
/plugin/statistics/
H A Ddb.sql98 `engine` VARCHAR(255)
168 ALTER TABLE `stats_search` ADD INDEX `engine` (`engine`);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php152 foreach ($engines as $engine) {
154 self::setEngine($engine[0], isset($engine[1]) ? $engine[1] : []);
/plugin/statistics/inc/
H A DStatisticsLogger.class.php118 * Will not write anything if the referer isn't a search engine
184 public function log_search($page, $query, $words, $engine) { argument
187 $engine = addslashes($engine);
193 engine = '$engine'";
/plugin/dokuprism/
H A Dplugin.info.txt6 desc Syntax highlighting of source code snippets in DokuWiki page using PRISM engine
H A DREADME.md2 Syntax highlighting of source code snippets in [DokuWiki](https://www.dokuwiki.org/) page using [PRISM](https://prismjs.com/) engine
/plugin/visrep/
H A Dsyntax.php202 function _isBlockDiag($engine) { argument
203 …return in_array($engine, array('seqdiag', 'blockdiag', 'actdiag', 'nwdiag', 'rackdiag', 'packetdia…
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DTemplate.php42 * @param Handlebars $engine handlebar engine
46 public function __construct(Handlebars $engine, $tree, $source) argument
48 $this->handlebars = $engine;
75 * Get current engine associated with this object
/plugin/pgn4web/pgn4web/libs/garbochess/
H A DREADME.txt3 GarboChess is a javascript chess engine licensed by Gary Linscott under BSD
/plugin/dokukiwix/lang/en/
H A Dintro.txt4 …//www.linterweb.com|Linterweb]] which will allow you to add an offline search engine to your wiki.
/plugin/404manager/
H A DREADME.md15 …nt problem is that thus external links become obsolete (especially for search engine for instance).
33 * Redirection to the internal search engine
115 ### Redirection to the intern search engine
116 The 404 Manager redirects to the search engine.
/plugin/plantumlparser/
H A DREADME.md7 This plugin integrates [PlantUML](http://plantuml.sourceforge.net) into the [DokuWiki](http://www.dokuwiki.org) wiki engine.

1234