Home
last modified time | relevance | path

Searched refs:task_id (Results 1 – 25 of 28) sorted by relevance

12

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Tasks/
H A DCancel.php30 protected $task_id; variable in Elasticsearch\\Endpoints\\Tasks\\Cancel
34 $task_id = $this->task_id ?? null;
36 if (isset($task_id)) {
37 return "/_tasks/$task_id/_cancel";
57 public function setTaskId($task_id): Cancel argument
59 if (isset($task_id) !== true) {
62 $this->task_id = $task_id;
H A DGet.php31 protected $task_id; variable in Elasticsearch\\Endpoints\\Tasks\\Get
35 $task_id = $this->task_id ?? null;
37 if (isset($task_id)) {
38 return "/_tasks/$task_id";
56 public function setTaskId($task_id): Get argument
58 if (isset($task_id) !== true) {
61 $this->task_id = $task_id;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/
H A DUpdateByQueryRethrottle.php31 protected $task_id; variable in Elasticsearch\\Endpoints\\UpdateByQueryRethrottle
35 $task_id = $this->task_id ?? null;
37 if (isset($task_id)) {
38 return "/_update_by_query/$task_id/_rethrottle";
55 public function setTaskId($task_id): UpdateByQueryRethrottle argument
57 if (isset($task_id) !== true) {
60 $this->task_id = $task_id;
H A DDeleteByQueryRethrottle.php31 protected $task_id; variable in Elasticsearch\\Endpoints\\DeleteByQueryRethrottle
35 $task_id = $this->task_id ?? null;
37 if (isset($task_id)) {
38 return "/_delete_by_query/$task_id/_rethrottle";
55 public function setTaskId($task_id): DeleteByQueryRethrottle argument
57 if (isset($task_id) !== true) {
60 $this->task_id = $task_id;
H A DReindexRethrottle.php31 protected $task_id; variable in Elasticsearch\\Endpoints\\ReindexRethrottle
35 $task_id = $this->task_id ?? null;
37 if (isset($task_id)) {
38 return "/_reindex/$task_id/_rethrottle";
55 public function setTaskId($task_id): ReindexRethrottle argument
57 if (isset($task_id) !== true) {
60 $this->task_id = $task_id;
/plugin/timetrack/
H A Daction.php209 foreach($taskValues as $task_id => $dateValues) {
213 $task_ids[] = $task_id;
236 foreach($taskValues as $task_id => $dateValues) {
246 …if(isset($dbUserValues[$project_id][$task_id][$date]) && $dbUserValues[$project_id][$task_id][$dat…
247 $dbUserValues[$project_id][$task_id][$date]['value'] = $value;
248 … $res = $this->tthlp->updateUserTime($dbUserValues[$project_id][$task_id][$date]['id'], $value);
250 $dbUserValues[$project_id][$task_id][$date]['value'] = $value;
252 … $res = $this->tthlp->insertUserTime($this->tthlp->getCurrentUser(), $task_id, $date, $value);
262 foreach($taskValues as $task_id => $dateValues) {
264 …es[$project_id][$task_id][$date]['value_db'] = $dbUserValues[$project_id][$task_id][$date]['value'…
[all …]
H A Dhelper.php139 $task_id = $this->updateTask($project_id,$abbr,$name);
160 $task_id = (int) $sqlite->res2single($res);
163 if(!$task_id) {
170 return $task_id;
208 * @param integer $task_id
213 public function insertUserTime($user, $task_id, $date, $value){ argument
219 $task_id,
323 public function getUserPageTaskData($user, $task_id, $daterange = null) { argument
340 $task_id,
446 public function getTaskDataById($task_id) { argument
[all …]
H A Dsyntax.php125 foreach($data as $task_id=>$weekValues) {
136 $sum_task[$task_id] += $cell;
141 $r->doc .= $r->_xmlEntities($sum_task[$task_id]);
179 foreach($flags['tasks'] as $task_id => $task_name) {
180 $this->tthlp->updateTask($project_id,$task_id,$task_name);
/plugin/bez/mdl/
H A DTask_comment.php8 protected $id, $task_id, $author, $create_date, $last_modification_date, $content, $content_html;
14 return array('id', 'task_id', 'author',
20 if ($this->task_id == null) {
24 $this->task = $this->model->taskFactory->get_one($this->task_id);
50 $this->task_id = $this->task->id;
58 if (isset($defaults['task']) && $this->task_id == $defaults['task']->id) {
78 return $tpl->url('task', 'tid', $this->task_id) . '#zk' . $this->id;
H A DTask_commentFactory.php10 return $this->get_all(array('task_id' => $task->id), '', array('task' => $task));
44 $this->model->sqlite->query("UPDATE {$this->get_table_name()} SET closing=0 WHERE task_id=?",
45 $task_comment->task_id);
101 if ($this->count(array('task_id' => $obj->task_id, 'author' => $obj->author)) == 0) {
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
H A DTasksNamespace.php33 * $params['task_id'] = (string) Cancel the task with specified task id (node_id:task_number)
48 $task_id = $this->extractArgument($params, 'task_id');
53 $endpoint->setTaskId($task_id);
60 * $params['task_id'] = (string) Return the task with specified id (node_id:task_number)
73 $task_id = $this->extractArgument($params, 'task_id');
78 $endpoint->setTaskId($task_id);
/plugin/timetrack/db/
H A Dupdate0001.sql13 CREATE TABLE user_time (id INTEGER PRIMARY KEY, update_time INTEGER, user_id INTEGER, task_id INTEG… field
14 CREATE UNIQUE INDEX idx_user_time ON user_time(user_id,task_id,date);
/plugin/bez/db/
H A Dupdate0006.sql4 UPDATE task_comment SET closing=1 WHERE id IN (SELECT MAX(id) FROM task_comment GROUP BY task_id)
H A Dupdate0012.sql14 DELETE FROM task_comment WHERE task_id=old.id;
H A Dupdate0003.sql12 DELETE FROM task_comment WHERE task_id=old.id;
H A Dupdate0001.sql319 task_id INTEGER NOT NULL REFERENCES thread (id), field
331 PRIMARY KEY (task_id, user_id)
337 task_id INTEGER NOT NULL REFERENCES task (id), field
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A D68738b4fd0dda177022be45be95b4c84.asciidoc6 'task_id' => 'r1A2WoRbTwKZ516z6NEs5A:36619',
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DTasksNamespace.asciidoc35 $params['task_id'] = (string) Cancel the task with specified task id (node_id:task_number)
51 $params['task_id'] = (string) Return the task with specified id (node_id:task_number)
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/ext/
H A Ddhtmlxgantt_multiselect.js404 multiselect.forSelected(function (task_id) { argument
405 if (!gantt.isTaskExists(task_id))
406 multiselect.unselect(task_id, null);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DClient.php564 * $params['task_id'] = (string) The task id to rethrottle
573 $task_id = $this->extractArgument($params, 'task_id');
578 $endpoint->setTaskId($task_id);
1209 * $params['task_id'] = (string) The task id to rethrottle
1218 $task_id = $this->extractArgument($params, 'task_id');
1223 $endpoint->setTaskId($task_id);
1646 * $params['task_id'] = (string) The task id to rethrottle
1655 $task_id
[all...]
/plugin/yuriigantt/3rd/dhtmlxgantt/
H A Ddhtmlxgantt.d.ts1804 getSubtaskDates(task_id?: string|number): any;
1810 getSubtaskDuration(task_id?: string|number): number;
/plugin/yuriigantt/3rd/dhtmlxgantt/ext/
H A Ddhtmlxgantt_multiselect.js.map1task_id","state"],"mappings":";;;;;;;;;;;;CAAA,SAAAA,EAAAC,GACA,iBAAAC,SAAA,iBAAAC,OACAA,OAAAD,QAA…
/plugin/farm/install/animaltemplate/conf/
H A Dinterwiki.conf25 dokubug http://bugs.splitbrain.org/index.php?do=details&task_id=
/plugin/odt/
H A DChangeLog.txt209 details, see: http://bugs.splitbrain.org/index.php?do=details&task_id=1598
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClient.asciidoc261 $params['task_id'] = (string) The task id to rethrottle
675 $params['task_id'] = (string) The task id to rethrottle
892 $params['task_id'] = (string) The task id to rethrottle

12