Home
last modified time | relevance | path

Searched refs:driver (Results 76 – 91 of 91) sorted by path

1234

/plugin/memcache/classes/
H A Dmemcache_apc.class.php7 public static function driver(){ return "apc";} function in memcache_apc
H A Dmemcache_fakecache.class.php43 public static function driver(){ return "fake";} function in memcache_fakecache
H A Dmemcache_interface.loader.php12 public static function driver(); function
H A Dmemcache_wincache.class.php6 public static function driver(){ return "wincache";} function in memcache_wincache
/plugin/memcache/
H A Dhelper.php106 function driver(){ function in helper_plugin_memcache
107 return memcache::driver();
/plugin/passpolicy/
H A D10k-common-passwords.txt285 driver
H A Dwords.txt1035 driver
/plugin/pdfjs/pdfjs/build/
H A Dpdf.js.map1 …ince it\n // prevents the AnnotationLayer rasterizer in `test/driver.js`\n // …
/plugin/sequencediagram/bower_components/lodash/
H A Dyarn.lock1037 log-driver "1.2.5"
2079 log-driver@1.2.5:
2081 …resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.5.tgz#7ae4ec257302fd790d557cb10…
/plugin/strata/driver/
H A Ddriver.php18 * Whether the driver should generate debug output.
33 * Create a new database driver.
35 * @param debug boolean whether the created driver should generate debug output.
137 * This implementation looks for a file called 'setup-@driver@.sql' and executes all SQL statements in that file.
138 * Here, '@driver@' represents the database driver, such as 'sqlite'.
145 // determine driver
146 list($driver, $connection) = explode(':', $this->_dsn, 2);
147 if ($this->_debug) msg(sprintf($this->util->getLang('driver_setup_start'), hsc($driver)));
150 $sqlfile = DOKU_PLUGIN . "strata/sql/setup-$driver
[all...]
/plugin/strata/helper/
H A Dtriples.php54 // construct driver
55 list($driver,$connection) = explode(':',$dsn,2);
56 $driverFile = DOKU_PLUGIN."strata/driver/$driver.php";
58 msg(sprintf($this->getLang('error_triples_nodriver'), $driver), -1);
62 $driverClass = "plugin_strata_driver_$driver";
65 // connect driver
/plugin/tablelayout/
H A Dyarn.lock767 websocket-driver ">=0.5.1"
2465 websocket-driver@>=0.5.1:
2467 …resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.0.tgz#0caf9d2d755d9…
/plugin/tuxquote/
H A Dquotes.txt376 In New York, tip the taxicab driver $40 if he does not mention his hemorrhoids. <BR> -- Dave Barry,…
1304 The problem with the designated driver program, is that it's not a desirable job. But if you ever g…
3409 The first bug to hit a clean windshield always lands directly in front of the driver's eyes. <BR> -…
/plugin/xlsx2dw/packages/xlsx/
H A Dxlsx.mjs7755 if(l7) d.l += 36; // Level 7: 32 byte "Language driver name", 4 byte reserved
/plugin/yuriigantt/
H A DREADME.md62 NOTE! Currently only embedded database driver is supported
75 "dsn": ":embedded:", <-- says parser what database driver was used
/plugin/yuriigantt/src/
H A DJsonRequest.php40 protected $driver; variable in dokuwiki\\plugin\\yuriigantt\\src\\JsonRequest
46 * @param DriverInterface $driver
50 public function __construct(DriverInterface $driver, $csrf, $payload) argument
53 $this->driver = $driver;
79 $this->driver->open($this->payload->pageId);
84 $task = $this->driver->addTask(new Task($this->payload->data));
87 $link = $this->driver->addLink(new Link($this->payload->data));
94 $this->driver->deleteTask($this->payload->id);
97 $this->driver->deleteLink($this->payload->id);
104 $this->driver->updateTask(new Task($this->payload->data));
[all …]

1234