Home
last modified time | relevance | path

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

12345678910>>...81

/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/task_manager/
H A Dtest_task_manager.h26 void ActivateTask(TaskId task_id) override;
27 bool IsTaskKillable(TaskId task_id) override;
28 void KillTask(TaskId task_id) override;
34 int64_t GetGpuMemoryUsage(TaskId task_id,
39 void GetGDIHandles(TaskId task_id,
42 void GetUSERHandles(TaskId task_id,
45 int GetOpenFdCount(TaskId task_id) const override;
52 Task::Type GetType(TaskId task_id) const override;
55 void GetTerminationStatus(TaskId task_id,
63 bool GetV8Memory(TaskId task_id,
[all …]
H A Dtest_task_manager.cc18 void TestTaskManager::ActivateTask(TaskId task_id) { in ActivateTask() argument
21 bool TestTaskManager::IsTaskKillable(TaskId task_id) { in IsTaskKillable() argument
25 void TestTaskManager::KillTask(TaskId task_id) { in KillTask() argument
65 void TestTaskManager::GetGDIHandles(TaskId task_id, in GetGDIHandles() argument
69 void TestTaskManager::GetUSERHandles(TaskId task_id, in GetUSERHandles() argument
94 TaskId task_id) const { in GetProcessHandle()
137 TaskId task_id) const { in GetCumulativeProcessTotalNetworkUsage()
145 bool TestTaskManager::GetV8Memory(TaskId task_id, in GetV8Memory() argument
152 TaskId task_id, in GetWebCacheStats() argument
166 TaskId task_id) const { in GetIdsOfTasksSharingSameProcess()
[all …]
H A Dtask_manager_interface.h53 virtual void ActivateTask(TaskId task_id) = 0;
56 virtual bool IsTaskKillable(TaskId task_id) = 0;
59 virtual void KillTask(TaskId task_id) = 0;
85 virtual int64_t GetGpuMemoryUsage(TaskId task_id,
103 virtual void GetGDIHandles(TaskId task_id,
106 virtual void GetUSERHandles(TaskId task_id,
113 virtual int GetOpenFdCount(TaskId task_id) const = 0;
156 virtual void GetTerminationStatus(TaskId task_id,
180 TaskId task_id) const = 0;
189 virtual bool GetV8Memory(TaskId task_id,
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/task_manager/sampling/
H A Dtask_manager_impl.cc123 GetTaskByTaskId(task_id)->Activate(); in ActivateTask()
131 GetTaskByTaskId(task_id)->Kill(); in KillTask()
247 TaskId task_id) const { in GetProcessHandle()
286 TaskId task_id) const { in GetCumulativeProcessTotalNetworkUsage()
310 TaskId task_id, in GetWebCacheStats() argument
434 TaskId task_id) const { in GetIdsOfTasksSharingSameProcess()
464 return task->task_id(); in GetTaskIdForWebContents()
471 const TaskId task_id = task->task_id(); in TaskAdded() local
497 NotifyObserversOnTaskAdded(task_id); in TaskAdded()
504 const TaskId task_id = task->task_id(); in TaskRemoved() local
[all …]
H A Dtask_manager_impl.h78 void ActivateTask(TaskId task_id) override;
79 bool IsTaskKillable(TaskId task_id) override;
80 void KillTask(TaskId task_id) override;
86 int64_t GetGpuMemoryUsage(TaskId task_id,
91 void GetGDIHandles(TaskId task_id,
94 void GetUSERHandles(TaskId task_id,
97 int GetOpenFdCount(TaskId task_id) const override;
107 void GetTerminationStatus(TaskId task_id,
115 bool GetV8Memory(TaskId task_id,
118 bool GetWebCacheStats(TaskId task_id,
[all …]
/dports/www/kanboard/kanboard-1.2.21/app/Model/
H A DTaskStatusModel.php19 * @param integer $task_id Task id
22 public function isClosed($task_id) argument
31 * @param integer $task_id Task id
34 public function isOpen($task_id) argument
43 * @param integer $task_id Task id
46 public function close($task_id) argument
56 * @param integer $task_id Task id
59 public function open($task_id) argument
72 foreach ($task_ids as $task_id) {
73 $this->close($task_id);
[all …]
H A DTaskTagModel.php26 * @param integer $task_id
43 * @param integer $task_id
82 * @param integer $task_id
85 public function getList($task_id) argument
96 * @param integer $task_id
113 * @param integer $task_id
120 'task_id' => $task_id,
129 * @param integer $task_id
136 ->eq('task_id', $task_id)
146 * @param integer $task_id
[all …]
H A DTaskPositionModel.php34 ->eq('id', $task_id)
58 * @param integer $task_id Task id
104 * @param integer $task_id
117 $r3 = $this->saveTaskTimestamps($task_id);
128 * @param integer $task_id
151 * @param integer $task_id
171 * @param integer $task_id
184 ->neq('id', $task_id)
221 * @param integer $task_id
224 private function saveTaskTimestamps($task_id) argument
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/platform/heap/
H A Dworklist.h103 DCHECK_LT(task_id, kNumTasks); in Push()
104 DCHECK(private_push_segment(task_id)); in Push()
106 PublishPushSegmentToGlobal(task_id); in Push()
115 DCHECK_LT(task_id, kNumTasks); in Pop()
116 DCHECK(private_pop_segment(task_id)); in Pop()
120 private_pop_segment(task_id) = private_push_segment(task_id); in Pop()
132 bool IsLocalEmpty(int task_id) const { in IsLocalEmpty() argument
151 size_t LocalSize(int task_id) const { in LocalSize() argument
196 void FlushToGlobal(int task_id) { in FlushToGlobal() argument
197 PublishPushSegmentToGlobal(task_id); in FlushToGlobal()
[all …]
/dports/www/node10/node-v10.24.1/deps/v8/src/heap/
H A Dworklist.h81 bool Push(int task_id, EntryType entry) { in Push() argument
82 DCHECK_LT(task_id, num_tasks_); in Push()
85 PublishPushSegmentToGlobal(task_id); in Push()
93 bool Pop(int task_id, EntryType* entry) { in Pop() argument
94 DCHECK_LT(task_id, num_tasks_); in Pop()
99 private_pop_segment(task_id) = private_push_segment(task_id); in Pop()
115 bool IsLocalEmpty(int task_id) { in IsLocalEmpty() argument
129 size_t LocalSize(int task_id) { in LocalSize() argument
167 void FlushToGlobal(int task_id) { in FlushToGlobal() argument
168 PublishPushSegmentToGlobal(task_id); in FlushToGlobal()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/platform/heap/impl/
H A Dworklist.h103 DCHECK_LT(task_id, kNumTasks); in Push()
104 DCHECK(private_push_segment(task_id)); in Push()
106 PublishPushSegmentToGlobal(task_id); in Push()
115 DCHECK_LT(task_id, kNumTasks); in Pop()
116 DCHECK(private_pop_segment(task_id)); in Pop()
120 private_pop_segment(task_id) = private_push_segment(task_id); in Pop()
132 bool IsLocalEmpty(int task_id) const { in IsLocalEmpty() argument
151 size_t LocalSize(int task_id) const { in LocalSize() argument
196 void FlushToGlobal(int task_id) { in FlushToGlobal() argument
197 PublishPushSegmentToGlobal(task_id); in FlushToGlobal()
[all …]
/dports/devel/py-doit/doit-0.31.1/doit/
H A Ddependency.py99 if task_id in self._db:
103 def in_(self, task_id): argument
108 def remove(self, task_id): argument
110 if task_id in self._db:
162 self._dbm[task_id] = json.dumps(self._db[task_id])
201 def in_(self, task_id): argument
203 return self._in_dbm(task_id) or task_id in self.dirty
206 def remove(self, task_id): argument
289 data = self._cache[task_id] = self._get_task_data(task_id)
305 def in_(self, task_id): argument
[all …]
/dports/security/py-python-gvm/python-gvm-21.10.0/tests/protocols/gmpv208/entities/tasks/
H A Dtest_modify_task.py40 self.gmp.modify_task(task_id='')
43 self.gmp.modify_task(task_id='t1', name='foo')
50 self.gmp.modify_task(task_id='t1', config_id='c1')
57 self.gmp.modify_task(task_id='t1', target_id='t1')
64 self.gmp.modify_task(task_id='t1', scanner_id='s1')
71 self.gmp.modify_task(task_id='t1', schedule_id='s1')
78 self.gmp.modify_task(task_id='t1', comment='bar')
105 self.gmp.modify_task(task_id='t1', alert_ids=[])
112 self.gmp.modify_task(task_id='t1', alterable=True)
120 self.gmp.modify_task(task_id='t1', alterable=False)
[all …]
/dports/lang/v8/v8-9.6.180.12/src/heap/
H A Dworklist.h93 bool Push(int task_id, EntryType entry) { in Push() argument
94 DCHECK_LT(task_id, num_tasks_); in Push()
97 PublishPushSegmentToGlobal(task_id); in Push()
105 bool Pop(int task_id, EntryType* entry) { in Pop() argument
106 DCHECK_LT(task_id, num_tasks_); in Pop()
111 private_pop_segment(task_id) = private_push_segment(task_id); in Pop()
127 bool IsLocalEmpty(int task_id) { in IsLocalEmpty() argument
146 size_t LocalSize(int task_id) { in LocalSize() argument
201 void FlushToGlobal(int task_id) { in FlushToGlobal() argument
202 PublishPushSegmentToGlobal(task_id); in FlushToGlobal()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/heap/
H A Dworklist.h93 bool Push(int task_id, EntryType entry) { in Push() argument
94 DCHECK_LT(task_id, num_tasks_); in Push()
97 PublishPushSegmentToGlobal(task_id); in Push()
105 bool Pop(int task_id, EntryType* entry) { in Pop() argument
106 DCHECK_LT(task_id, num_tasks_); in Pop()
111 private_pop_segment(task_id) = private_push_segment(task_id); in Pop()
127 bool IsLocalEmpty(int task_id) { in IsLocalEmpty() argument
146 size_t LocalSize(int task_id) { in LocalSize() argument
201 void FlushToGlobal(int task_id) { in FlushToGlobal() argument
202 PublishPushSegmentToGlobal(task_id); in FlushToGlobal()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/heap/
H A Dworklist.h93 bool Push(int task_id, EntryType entry) { in Push() argument
94 DCHECK_LT(task_id, num_tasks_); in Push()
97 PublishPushSegmentToGlobal(task_id); in Push()
105 bool Pop(int task_id, EntryType* entry) { in Pop() argument
106 DCHECK_LT(task_id, num_tasks_); in Pop()
111 private_pop_segment(task_id) = private_push_segment(task_id); in Pop()
127 bool IsLocalEmpty(int task_id) { in IsLocalEmpty() argument
146 size_t LocalSize(int task_id) { in LocalSize() argument
201 void FlushToGlobal(int task_id) { in FlushToGlobal() argument
202 PublishPushSegmentToGlobal(task_id); in FlushToGlobal()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/testing/mozharness/mozharness/mozilla/
H A Dtaskcluster_helper.py17 task_id=None): argument
36 self.task_id = task_id or taskcluster.slugId()
65 }, taskId=self.task_id)
77 def get_task(self, task_id): argument
140 task_id = task['status']['taskId']
150 (task_id, run_id))
156 self.task_id,
167 def get_task(self, task_id): argument
196 if task['taskId'] == task_id:
263 task_id=parent_id,
[all …]
/dports/devel/py-celery/celery-4.4.7/celery/backends/
H A Damqp.py88 def _create_binding(self, task_id): argument
89 name = self.rkey(task_id)
102 def rkey(self, task_id): argument
103 return task_id.replace('-', '')
107 return self.rkey(task_id), request.correlation_id or task_id
108 return self.rkey(task_id), task_id
143 def on_reply_declare(self, task_id): argument
239 return [self._create_binding(task_id) for task_id in ids]
250 for task_id in ids:
290 def reload_task_result(self, task_id): argument
[all …]
H A Drpc.py79 def consume_from(self, task_id): argument
81 return self.start(task_id)
82 queue = self._create_binding(task_id)
87 def cancel_for(self, task_id): argument
154 def _create_binding(self, task_id): argument
185 def on_reply_declare(self, task_id): argument
220 'task_id': task_id,
234 self._out_of_band[task_id] = message
263 return self._cache[task_id]
300 def reload_task_result(self, task_id): argument
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/services/sharing/nearby/platform/
H A Dsingle_thread_executor_unittest.cc33 executed_tasks_.insert(task_id); in CreateTrackedRunnable()
38 bool HasTaskExecuted(const base::UnguessableToken& task_id) { in HasTaskExecuted() argument
40 return executed_tasks_.find(task_id) != executed_tasks_.end(); in HasTaskExecuted()
57 CreateTrackedRunnable(run_loop, task_id))); in TEST_F()
60 EXPECT_TRUE(HasTaskExecuted(task_id)); in TEST_F()
69 EXPECT_TRUE(HasTaskExecuted(task_id)); in TEST_F()
77 CreateTrackedRunnable(run_loop, task_id))); in TEST_F()
79 EXPECT_FALSE(HasTaskExecuted(task_id)); in TEST_F()
86 CreateTrackedRunnable(run_loop, task_id))); in TEST_F()
87 EXPECT_FALSE(HasTaskExecuted(task_id)); in TEST_F()
[all …]
/dports/devel/py-ddtrace/ddtrace-0.56.1/ddtrace/contrib/celery/
H A Dsignals.py28 task_id = kwargs.get("task_id")
30 if task is None or task_id is None:
52 attach_span(task, task_id, span)
59 task_id = kwargs.get("task_id")
61 if task is None or task_id is None:
66 span = retrieve_span(task, task_id)
76 detach_span(task, task_id)
86 task_id = retrieve_task_id(kwargs)
109 span.set_tag("celery.id", task_id)
133 task_id = retrieve_task_id(kwargs)
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/ui/ash/launcher/app_service/
H A Dapp_service_app_window_arc_tracker.cc88 if (task_id == arc::kNoTaskId || task_id == arc::kSystemWindowTaskId) in OnWindowVisibilityChanged()
119 OnTaskDestroyed(task_id); in OnAppRemoved()
124 int task_id, in OnTaskCreated() argument
146 AttachControllerToTask(task_id); in OnTaskCreated()
168 int32_t task_id, in OnTaskDescriptionChanged() argument
228 active_task_id_ = task_id; in OnTaskSetActive()
232 if (task_id == active_task_id_) in OnTaskSetActive()
261 active_task_id_ = task_id; in OnTaskSetActive()
290 if (task_id == arc::kNoTaskId) in AttachControllerToWindow()
317 AttachControllerToTask(task_id); in AttachControllerToWindow()
[all …]
/dports/www/kanboard/kanboard-1.2.21/app/Api/Procedure/
H A DTaskMetadataProcedure.php15 public function getTaskMetadata($task_id) argument
17 …askAuthorization::getInstance($this->container)->check($this->getClassName(), 'getTask', $task_id);
18 return (object) $this->taskMetadataModel->getAll($task_id);
21 public function getTaskMetadataByName($task_id, $name) argument
23 …askAuthorization::getInstance($this->container)->check($this->getClassName(), 'getTask', $task_id);
24 return $this->taskMetadataModel->get($task_id, $name);
27 public function saveTaskMetadata($task_id, array $values) argument
29 …Authorization::getInstance($this->container)->check($this->getClassName(), 'updateTask', $task_id);
30 return $this->taskMetadataModel->save($task_id, $values);
33 public function removeTaskMetadata($task_id, $name) argument
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/media/gpu/vaapi/
H A Dvaapi_jpeg_encode_accelerator.cc54 int32_t task_id, in EncodeRequest() argument
59 : task_id(task_id), in EncodeRequest()
79 int32_t task_id,
140 int32_t task_id, in EncodeWithDmaBufTask() argument
175 notify_error_cb_.Run(task_id, PLATFORM_FAILURE); in EncodeWithDmaBufTask()
187 notify_error_cb_.Run(task_id, PLATFORM_FAILURE); in EncodeWithDmaBufTask()
195 notify_error_cb_.Run(task_id, PLATFORM_FAILURE); in EncodeWithDmaBufTask()
365 const int task_id = request->task_id; in EncodeTask() local
477 client_->NotifyError(task_id, status); in NotifyError()
555 int32_t task_id = output_buffer.id(); in Encode() local
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/testing/docker/rust-build/
H A Dtcbuild.py56 task_id = taskcluster.utils.slugId()
64 queue.createTask(task_id, payload)
66 return task_id
68 def wait_for_task(queue, task_id, initial_wait=5): argument
80 res = queue.status(task_id)
118 def make_artifact_dir(task_id, run_id): argument
119 prefix = 'tc-artifacts.%s.%d.' % (task_id, run_id)
123 def fetch_artifacts(queue, task_id, run_id): argument
129 tempdir = make_artifact_dir(task_id, run_id)
130 res = queue.listArtifacts(task_id, run_id)
[all …]

12345678910>>...81