Home
last modified time | relevance | path

Searched refs:pid (Results 51 – 75 of 117) sorted by path

12345

/plugin/highlightjs/highlight/
H A Dhighlight.pack.js1 …"nil?":1,nitems:1,"nonzero?":1,object_id:1,oct:1,open:1,pack:1,partition:1,pid:1,pipe:1,pop:1,pope… property in hljs.LANGUAGES.ruby.c.keymethods
/plugin/html2pdf/html2pdf/html2ps/
H A Dstubs.memory_get_usage.inc.php20 $pid = getmypid();
21 exec("ps -eo%mem,rss,pid | grep $pid", $output);
/plugin/icalevents/vendor/sabre/vobject/resources/schema/
H A Dxcard.rng90 param-pid = element pid {
116 element parameters { param-altid, param-pid, param-pref,
195 param-pid,
209 element parameters { param-altid, param-pid, param-pref,
216 element parameters { param-altid, param-pid, param-pref,
223 element parameters { param-altid, param-pid, param-pref,
230 element parameters { param-altid, param-pid, param-pref,
237 element parameters { param-altid, param-pid, param-pref,
272 element parameters { param-altid, param-pid, param-pref,
281 param-pid,
[all …]
/plugin/indexmenu/scripts/
H A Dindexmenu.js56 * @param {number} pid parent node id
63 function dTreeNode(dokuid, id, pid, name, hns, isdir, ajax) {
69 this.pid = pid; // id number of parent node
178 * @param {number} pid parent node id
184 dTree.prototype.add = function (dokuid, id, pid, name, hns, isdir, ajax) {
185 this.aNodes[this.aNodes.length] = new dTreeNode(dokuid, id, pid, name, hns, isdir, ajax);
246 if (this.aNodes[n].pid === pNode.id) {
306 node.icon = (this.root.id === node.pid) ? this.icon.root : ((node.hns) ? this.icon.folderH : ((node._hc) ? this.icon.folder : this.icon.node));
308 if (this.root.id === node.pid) {
41 dTreeNode(dokuid, id, pid, name, hns, isdir, ajax) global() argument
134 add(dokuid, id, pid, name, hns, isdir, ajax) global() argument
[all...]
/plugin/jplayer/vendor/symfony/process/
H A DProcess.php1586 if (null === $pid = $this->getPid()) {
1595 exec(sprintf('taskkill /F /T /PID %d 2>&1', $pid), $output, $exitCode);
1607 $ok = @posix_kill($pid, $signal);
1608 … } elseif ($ok = proc_open(sprintf('kill -%d %d', $signal, $pid), [2 => ['pipe', 'w']], $pipes)) {
/plugin/maintenance/
H A Dhelper.php76 $pid = trim(file_get_contents($this->script_last_pid_file));
77 $cmd = "ps p $pid >&-";
80 $cmd = "kill -9 $pid";
/plugin/mindmap/
H A Dsyntax.php450 if($id == $pid) continue; // skip self references
453 $pages[$pid]['links'][] = $id;
484 $pages[$pid]['media'][] = $mid;
486 $pages[$pid]['media'][] = $mid;
492 $pages[$pid]['links'] = array_unique($pages[$pid]['links']);
493 $pages[$pid]['media'] = array_unique($pages[$pid]['media']);
/plugin/navi/
H A Dsyntax.php226 foreach ((array)$navItems as $pid => $info) {
236 unset($pid);
238 foreach ((array)$navItems as $pid => $info) {
244 if (!empty($upper[$pid])) {
245 $menuitem = ($upper[$pid] == 'open') ? 'open' : 'close';
278 if (substr($pid, 0, 1) != '_') {
/plugin/projects/lib/
H A Dmaker.php225 $this->pid = array();
260 $this->pid[$name] = $this->make_target($file);
265 if (count($this->pid) > 0)
279 $pid = pcntl_wait($result);
281 $result = current($this->pid);
282 $pid = $result;
284 $name = array_search($pid, $this->pid);
285 unset($this->pid[$name]);
308 $pid = pcntl_fork();
310 if ($pid == -1) $this->parallel = false;
[all …]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/ServerRunner/
H A DPcntlServerRunner.php113 'pid' => posix_getpid(),
197 $pid = pcntl_fork();
198 if ($pid == -1) {
204 } elseif ($pid === 0) {
213 $pid,
359 int $pid
361 $context = ['pid' => $pid];
395 int $pid,
402 $pid,
[all...]
/plugin/snippets/
H A Daction.php232 foreach($page_ids as $pid) {
233 $page_time= filemtime(wikiFN($pid));
235 $span = str_replace(':','_',$pid);
236 …ge_time) . '<td><a href="javascript:update_snippets(\''.$pid .'\');" id="' .$span . '">' .$pid .'…
/plugin/sphinxsearch-was/contrib/etc/systemd/system/
H A Dsphinx-searchd-grimore.service11 PIDFile = /var/www/grimore.org/data/sphinxsearch/searchd.pid
/plugin/sphinxsearch-was/
H A Dsphinx.conf44 pid_file = ../../../data/sphinxsearch/searchd.pid
/plugin/sphinxsearch/
H A Dsphinx.conf46 pid_file = ../../../data/sphinxsearch/searchd.pid
/plugin/starred/db/
H A Dupdate0001.sql2 pid, field
7 CREATE UNIQUE INDEX idx_stars_pid_login ON stars(pid, login);
/plugin/starred/
H A Dsyntax.php73 foreach ($starred as $pid => $time) {
76 $R->internallink(':' . $pid, null, null, false, 'navigation');
81 $R->doc .= $hlp->starHtml($ID, $pid, false);
/plugin/stlviewer/stlviewer/
H A Dparser.min.js2pid&&void 0!==g.pindex&&v[g.pid]&&v[g.pid].color&&v[g.pid].color[g.pindex]&&(J=v[g.pid].color[g.pi…
/plugin/struct/action/
H A Daggregationeditor.php33 protected $pid = '';
125 $this->pid = $INPUT->str('pid');
141 $this->pid,
228 if ($this->pid) {
229 return AccessTable::getSerialAccess($tablename, $this->pid, $this->rid);
243 if ($this->pid) {
244 $config['filter'][] = ['%pageid%', '=', $this->pid, 'AND'];
30 protected $pid = ''; global() variable in action_plugin_struct_aggregationeditor
H A Dbureaucracy.php112 foreach ($value as $pid) {
115 // lookups can reference pages or global data, so check both pid and rid
116 // make sure not to double decode pid!
117 $originalPid = $pid;
119 $pid = json_decode($pid, null, 512)[0] ?? $pid;
121 if (($pid && $pids[$i] === $pid) || ($rid && $rids[$i] === $rid)) {
122 $field->opt['struct_pids'][] = $pid;
[all...]
H A Dinline.php34 protected $pid = '';
88 // only check page permissions for data with pid, skip for global data
89 if ($this->pid && auth_quickaclcheck($this->pid) < AUTH_EDIT) return;
90 if (checklock($this->pid)) return;
93 lock($this->pid);
131 $tables = $assignments->getPageAssignments($this->pid, true);
155 $revision = helper_plugin_struct::createPageRevision($this->pid, 'inline edit');
156 p_get_metadata($this->pid); // reparse the metadata of the page top update the titles/rev/lasteditor table
167 $this->pid,
31 protected $pid = ''; global() variable in action_plugin_struct_inline
[all...]
H A Dmigration.php103 // update pid definitions
104 $sql = preg_replace('/pid (\w* ?NOT NULL|\w* ?PRIMARY KEY)/', 'pid TEXT DEFAULT ""', $sql);
111 $sql = str_replace(')', ', rid INTEGER, PRIMARY KEY(pid,rid) )', $sql);
134 // transfer pid to rid
135 $s = sprintf('INSERT INTO data_%s SELECT *, pid FROM temp_data_%s', $name, $name);
139 $s = sprintf('INSERT INTO multi_%s SELECT *, pid FROM temp_multi_%s', $name, $name);
144 $s = "UPDATE data_$name SET pid = ''";
148 $s = "UPDATE multi_$name SET pid = ''";
232 * was always ["", <previous-pid
[all...]
/plugin/struct/db/
H A Dupdate0003.sql6 pid NOT NULL, field
10 PRIMARY KEY(tbl, colref, pid, rev, row)
H A Dupdate0006.sql5 pid NOT NULL, field
8 PRIMARY KEY(pid, tbl)
H A Dupdate0008.sql3 pid NOT NULL, field
5 PRIMARY KEY(pid)
9 INSERT INTO titles SELECT DISTINCT pid, pid FROM schema_assignments;
/plugin/struct/meta/
H A DAccessTable.php19 protected $pid; variable in dokuwiki\\plugin\\struct\\meta\\AccessTable
57 public static function getPageAccess($tablename, $pid, $ts = 0) argument
60 return new AccessTablePage($schema, $pid, $ts, 0);
63 public static function getSerialAccess($tablename, $pid, $rid = 0) argument
66 return new AccessTableSerial($schema, $pid, 0, $rid);
79 * @param string $pid Page id to access
85 public static function bySchema(Schema $schema, $pid, $ts = 0, $rid = 0) argument
87 if (self::isTypePage($pid, $ts)) {
88 return new AccessTablePage($schema, $pid, $ts, $rid);
90 return new AccessTableGlobal($schema, $pid,
104 byTableName($tablename, $pid, $ts = 0, $rid = 0) global() argument
124 __construct($schema, $pid, $ts = 0, $rid = 0) global() argument
585 isTypePage($pid, $rev) global() argument
598 isTypeGlobal($pid, $rev) global() argument
611 isTypeSerial($pid, $rev) global() argument
624 handleEmptyMulti($pid, $rid, $colref) global() argument
[all...]

12345