| /plugin/asciidocjs/node_modules/jake/test/integration/ |
| D | task_base.js | 3 let exec = require('child_process').execSync; variable 14 out = exec(`${JAKE_CMD} -q`).toString().trim(); 16 out = exec(`${JAKE_CMD} -q default`).toString().trim(); 21 let out = exec(`${JAKE_CMD} -q noAction`).toString().trim(); 26 exec(`${JAKE_CMD} noActionNoPrereqs`); 37 let out = exec(`${JAKE_CMD} -q argsEnvVars[foo,bar]`).toString().trim(); 45 let out = exec(`${JAKE_CMD} -q argsEnvVars foo=bar baz=qux`).toString().trim(); 53 let out = exec(`${JAKE_CMD} -q argsEnvVars[foo,bar] foo=bar baz=qux`).toString().trim(); 64 let out = exec(`${JAKE_CMD} -q foo:baz`).toString().trim(); 69 let out = exec(`${JAKE_CMD} -q foo:asdf`).toString().trim(); [all …]
|
| D | file_task.js | 24 let exec = require('child_process').execSync; variable 43 out = exec(`${JAKE_CMD} -q fileTest:foo/from-src1.txt`).toString().trim(); 46 out = exec(`${JAKE_CMD} -q -B fileTest:foo/from-src1.txt`).toString().trim(); 54 out = exec(`${JAKE_CMD} -q fileTest:foo/concat.txt`).toString().trim(); 65 out = exec(`${JAKE_CMD} -q fileTest:foo/from-src1.txt`).toString().trim(); 67 out = exec(`${JAKE_CMD} -q fileTest:foo/from-src1.txt`).toString().trim(); 74 exec('mkdir -p ./foo'); 75 exec('touch ./foo/from-src1.txt'); 80 out = exec(`${JAKE_CMD} -q fileTest:foo/from-src1.txt`).toString().trim(); 83 out = exec(`${JAKE_CMD} -q fileTest:foo/from-src1.txt`).toString().trim(); [all …]
|
| D | concurrent.js | 2 let exec = require('child_process').execSync; variable 12 let out = exec(`${JAKE_CMD} -q concurrent:simple1`).toString().trim(); 17 let out = exec(`${JAKE_CMD} -q concurrent:simple2`).toString().trim(); 22 let out = exec(`${JAKE_CMD} -q concurrent:seqconcurrent`).toString().trim(); 27 let out = exec(`${JAKE_CMD} -q concurrent:concurrentconcurrent`).toString().trim(); 32 let out = exec(`${JAKE_CMD} -q concurrent:subdep`).toString().trim(); 38 exec(`${JAKE_CMD} -q concurrent:Cfail`);
|
| D | rule.js | 23 let exec = require('child_process').execSync; variable 78 let out = exec( `${JAKE_CMD} -q tmp`).toString().trim(); 92 let out = exec( `${JAKE_CMD} -q tmp_p`).toString().trim(); 107 let out = exec( `${JAKE_CMD} -q tmp_pf`).toString().trim(); 122 let out = exec( `${JAKE_CMD} -q tmp_ns`).toString().trim(); 139 let out = exec( `${JAKE_CMD} -q tmp_cr`).toString().trim(); 163 exec(`${JAKE_CMD} ` + key + ':test'); 174 let out = exec(`${JAKE_CMD} -q ` + key + ':test').toString().trim(); 186 let out = exec(`${JAKE_CMD} -q ` + key + ':test').toString().trim(); 203 let out = exec(`${JAKE_CMD} -q ` + key + ':test').toString().trim();
|
| /plugin/davcal/vendor/sabre/dav/bin/ |
| H A D | migrateto20.php | 102 $pdo->exec("RENAME TABLE $tableName TO $tableNameOld"); 105 $pdo->exec(" 123 $pdo->exec(" 139 $pdo->exec("ALTER TABLE $tableName RENAME TO $tableNameOld"); 143 $pdo->exec(" 160 $pdo->exec(" 190 … $pdo->exec("ALTER TABLE $tableName ADD synctoken INT(11) UNSIGNED NOT NULL DEFAULT '1'"); 191 $pdo->exec("ALTER TABLE $tableName DROP ctag"); 192 $pdo->exec("UPDATE $tableName SET synctoken = '1'"); 195 $pdo->exec("ALTER TABLE $tableName ADD synctoken integer"); [all …]
|
| H A D | migrateto30.php | 95 $pdo->exec('RENAME TABLE propertystorage TO propertystorage_old' . $random); 96 $pdo->exec(' 105 …$pdo->exec('CREATE UNIQUE INDEX path_property_' . $random . ' ON propertystorage (path(600), name… 108 $pdo->exec('ALTER TABLE propertystorage RENAME TO propertystorage_old' . $random); 109 $pdo->exec(' 118 … $pdo->exec('CREATE UNIQUE INDEX path_property_' . $random . ' ON propertystorage (path, name);'); 140 $pdo->exec('ALTER TABLE propertystorage ADD valuetype INT UNSIGNED'); 143 $pdo->exec('ALTER TABLE propertystorage ADD valuetype INT'); 148 $pdo->exec('UPDATE propertystorage SET valuetype = 1 WHERE valuetype IS NULL ');
|
| /plugin/asciidocjs/node_modules/core-js/library/modules/ |
| D | _fix-re-wks.js | 2 require('./es6.regexp.exec'); 8 var regexpExec = require('./_regexp-exec'); 14 // #match works fine because it just return the exec results, even if it has 17 re.exec = function () { function 26 // Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec 28 var originalExec = re.exec; 29 re.exec = function () { return originalExec.apply(this, arguments); }; 34 module.exports = function (KEY, length, exec) { argument 45 // Symbol-named RegExp methods call .exec 48 re.exec = function () { execCalled = true; return null; }; [all …]
|
| /plugin/asciidocjs/node_modules/core-js/modules/ |
| D | _fix-re-wks.js | 2 require('./es6.regexp.exec'); 8 var regexpExec = require('./_regexp-exec'); 14 // #match works fine because it just return the exec results, even if it has 17 re.exec = function () { function 26 // Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec 28 var originalExec = re.exec; 29 re.exec = function () { return originalExec.apply(this, arguments); }; 34 module.exports = function (KEY, length, exec) { argument 45 // Symbol-named RegExp methods call .exec 48 re.exec = function () { execCalled = true; return null; }; [all …]
|
| D | _regexp-exec-abstract.js | 4 var builtinExec = RegExp.prototype.exec; 9 var exec = R.exec; 10 if (typeof exec === 'function') { 11 var result = exec.call(R, S); 13 throw new TypeError('RegExp exec method returned something other than an Object or null'); 18 throw new TypeError('RegExp#exec called on incompatible receiver');
|
| /plugin/ckgdoku/ckeditor/plugins/shortcuts/ |
| D | plugin.js.unc | 19 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.commandDefinition.html#exec 20 exec : function( editor ) 35 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.commandDefinition.html#exec 36 exec : function( editor ) 45 exec : function( editor ) 54 exec : function( editor ) 63 exec : function( editor ) 72 exec : function( editor ) 81 exec : function( editor )
|
| D | plugin.js | 1 …exec:function(d){var e=a(d);d.insertHtml("<div> </div>");d.insertHtml("<div>"+e+"</div>")}});… method
|
| /plugin/ckgedit/ckeditor/plugins/shortcuts/ |
| D | plugin.js.unc | 19 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.commandDefinition.html#exec 20 exec : function( editor ) 35 // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.commandDefinition.html#exec 36 exec : function( editor ) 45 exec : function( editor ) 54 exec : function( editor ) 63 exec : function( editor ) 72 exec : function( editor ) 81 exec : function( editor )
|
| D | plugin.js | 1 …exec:function(d){var e=a(d);d.insertHtml("<div> </div>");d.insertHtml("<div>"+e+"</div>")}});… method
|
| /plugin/findologicxmlexport/vendor/phpunit/phpunit/ |
| D | build.xml | 30 <exec executable="${basedir}/build/tools/composer" failonerror="true" taskname="composer"> 35 </exec> 45 <exec executable="${basedir}/build/tools/composer" taskname="composer"> 51 </exec> 73 <exec executable="xmllint" failonerror="true" taskname="xmllint"> 76 </exec> 82 <exec executable="${basedir}/phpunit" taskname="phpunit"/> 86 <exec executable="gpg" failonerror="true"> 92 </exec> 94 <exec executable="gpg" failonerror="true"> [all …]
|
| /plugin/serverinfos/serverinfos/lib/ |
| D | InfosServer.class.php | 24 …exec("powershell -executionpolicy remotesigned -command gwmi win32_Processor name,DataWidth", $tmp… 41 exec('lsb_release -ds', $distrib); 70 exec("sw_vers", $os_type); 77 exec('uname -r', $distrib); 83 exec('lsb_release -ds | cut -d" " -f1,3,4', $distrib); 89 …exec('powershell -executionpolicy remotesigned -command (gwmi -class Win32_OperatingSystem).Captio… 99 exec("sw_vers", $os_type); 109 exec("sysctl -n hw.model", $modelComputer); 121 exec("sed -n '/^Revision/p' /proc/cpuinfo", $piTmp); 160 exec("sysctl -a hw.memsize", $tmp); [all …]
|
| /plugin/asciidocjs/node_modules/ejs/ |
| D | jakefile.js | 4 var exec = function (cmd) { function 24 exec(epath+' "**/*.js"'); 30 exec(epath+' --standalone ejs lib/ejs.js > ejs.js'); 36 exec(epath+' ejs.js > ejs.min.js'); 44 exec(epath+' --verbose -c jsdoc.json lib/* docs/jsdoc/*'); 52 exec(epath+' --verbose -p -c jsdoc.json lib/* docs/jsdoc/*'); 61 exec(epath+' --directory out/'); 67 exec(path.join('./node_modules/.bin/mocha'));
|
| /plugin/asciidocjs/node_modules/jake/lib/utils/ |
| D | index.js | 25 let Exec; variable 86 @name jake.exec 113 jake.exec(cmds, {stdout: true}, callback); 115 this.exec = function (a, b, c) { method 121 let ex = new Exec(cmds, opts, callback); 134 return new Exec(a, b, c); 176 Exec = function () { class 187 util.inherits(Exec, EventEmitter); 189 Object.assign(Exec.prototype, new (function () { 216 // Ganking part of Node's child_process.exec to get cmdline args parsed [all …]
|
| /plugin/addressbook/lang/de/ |
| D | lang.php | 3 $lang['exec save'] = 'Speichern'; 4 $lang['exec cancel'] = 'Abbrechen'; 5 $lang['exec edit'] = 'Bearbeiten'; 6 $lang['exec delete'] = 'Löschen'; 7 $lang['exec search'] = 'Suchen';
|
| /plugin/addressbook/lang/en/ |
| D | lang.php | 3 $lang['exec save'] = 'Save'; 4 $lang['exec cancel'] = 'Cancel'; 5 $lang['exec edit'] = 'Edit'; 6 $lang['exec delete'] = 'Delete'; 7 $lang['exec search'] = 'Search';
|
| /plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/ |
| H A D | TemporaryFileFilterTest.php | 22 $this->server->exec(); 38 $this->server->exec(); 56 $this->server->exec(); 67 $this->server->exec(); 82 $this->server->exec(); 93 $this->server->exec(); 125 $this->server->exec(); 142 $this->server->exec(); 152 $this->server->exec(); 168 $this->server->exec(); [all …]
|
| H A D | ServerMKCOLTest.php | 19 $this->server->exec(); 45 $this->server->exec(); 70 $this->server->exec(); 95 $this->server->exec(); 127 $this->server->exec(); 159 $this->server->exec(); 191 $this->server->exec(); 225 $this->server->exec(); 250 $this->server->exec(); 275 $this->server->exec(); [all …]
|
| /plugin/statistics/ |
| H A D | Logger.php | 167 $this->db->exec( 183 $this->db->exec( 218 $this->db->exec( 242 $this->db->exec('DELETE FROM groups WHERE user = ?', $this->user); 255 $this->db->exec($sql, $params); 276 $this->db->exec($sql, [$domain, $this->user]); 314 $this->db->exec($sql, [$referer, $engine]); 360 $this->db->exec( 400 $this->db->exec( 427 $this->db->exec( [all …]
|
| /plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Browser/ |
| H A D | PluginTest.php | 26 $this->server->exec(); 52 $this->server->exec(); 73 $this->server->exec(); 106 $this->server->exec(); 117 $this->server->exec(); 138 $this->server->exec(); 154 $this->server->exec(); 171 $this->server->exec(); 181 $this->server->exec();
|
| /plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/FSExt/ |
| H A D | ServerTest.php | 23 $this->server->exec(); 46 $this->server->exec(); 69 $this->server->exec(); 88 $this->server->exec(); 104 $this->server->exec(); 122 $this->server->exec(); 136 $this->server->exec(); 156 $this->server->exec(); 172 $this->server->exec(); 194 $this->server->exec(); [all …]
|
| /plugin/findologicxmlexport/vendor/sebastian/comparator/ |
| D | build.xml | 21 <exec executable="php"> 24 </exec> 28 <exec executable="phpab"> 32 </exec>
|