Home
last modified time | relevance | path

Searched refs:task_result (Results 1 – 25 of 205) sorted by relevance

123456789

/dports/devel/caf/actor-framework-0.18.5/libcaf_core/src/intrusive/
H A Dtask_result_strings.cpp19 case task_result::resume: in to_string()
21 case task_result::skip: in to_string()
23 case task_result::stop: in to_string()
25 case task_result::stop_all: in to_string()
32 out = task_result::resume; in from_string()
35 out = task_result::skip; in from_string()
38 out = task_result::stop; in from_string()
54 case task_result::resume: in from_integer()
55 case task_result::skip: in from_integer()
56 case task_result::stop: in from_integer()
[all …]
/dports/devel/caf/actor-framework-0.18.5/libcaf_core/test/intrusive/
H A Ddrr_cached_queue.cpp85 return task_result::skip; in CAF_TEST()
87 return task_result::resume; in CAF_TEST()
93 return task_result::skip; in CAF_TEST()
95 return task_result::resume; in CAF_TEST()
115 return task_result::skip; in CAF_TEST()
117 return task_result::resume; in CAF_TEST()
143 return task_result::resume; in CAF_TEST()
169 return task_result::skip; in CAF_TEST()
172 return task_result::resume; in CAF_TEST()
177 return task_result::skip; in CAF_TEST()
[all …]
/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/plugins/callback/
H A Dunixy.py70 task_result = "%s %s" % (task_host, msg)
74 return task_result
89 return task_result
116 task_result = self._process_result_output(result, msg)
117 self._display.display(" " + task_result, display_color)
129 task_result = self._process_result_output(result, msg)
142 task_result = self._process_result_output(result, msg)
143 self._display.display(" " + task_result, display_color)
145 task_result = self._process_result_output(result, msg)
146 self._display.display(" " + task_result, display_color)
[all …]
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/general/plugins/callback/
H A Dunixy.py70 task_result = "%s %s" % (task_host, msg)
74 return task_result
89 return task_result
116 task_result = self._process_result_output(result, msg)
117 self._display.display(" " + task_result, display_color)
129 task_result = self._process_result_output(result, msg)
142 task_result = self._process_result_output(result, msg)
143 self._display.display(" " + task_result, display_color)
145 task_result = self._process_result_output(result, msg)
146 self._display.display(" " + task_result, display_color)
[all …]
/dports/devel/libsoup3/libsoup-3.0.3/libsoup/auth/
H A Dsoup-tls-interaction.c48 int task_result; in soup_tls_interaction_request_certificate_finish() local
50 task_result = g_task_propagate_int (G_TASK (result), error); in soup_tls_interaction_request_certificate_finish()
51 return task_result != -1 ? task_result : G_TLS_INTERACTION_FAILED; in soup_tls_interaction_request_certificate_finish()
77 int task_result; in soup_tls_interaction_ask_password_finish() local
79 task_result = g_task_propagate_int (G_TASK (result), error); in soup_tls_interaction_ask_password_finish()
80 return task_result != -1 ? task_result : G_TLS_INTERACTION_FAILED; in soup_tls_interaction_ask_password_finish()
/dports/security/john/john-1.9.0-jumbo-1/src/ztex/
H A Dtask.h31 struct task_result { struct
32 struct task_result *next; argument
40 struct task_result *result_list; argument
41 struct task_result **index;
76 struct task_result *task_result_new(struct task *task,
143 void (*func)(struct task_result *result));
149 struct task_result *task_result_by_index(struct task_list *task_list, int index);
H A Dtask.c35 struct task_result *task_result) in task_result_list_add() argument
37 task_result->next = list->result_list; in task_result_list_add()
38 list->result_list = task_result; in task_result_list_add()
50 list->index = mem_alloc(list->count * sizeof(struct task_result *)); in task_result_list_create_index()
52 struct task_result *result; in task_result_list_create_index()
59 struct task_result *task_result_new(struct task *task, in task_result_new()
63 struct task_result *result = mem_alloc(sizeof(struct task_result)); in task_result_new()
100 struct task_result *result = list->result_list; in task_result_list_clear()
102 struct task_result *next = result->next; in task_result_list_clear()
413 void (*func)(struct task_result *result)) in task_result_execute()
[all …]
/dports/math/cado-nfs/cado-nfs-f4284e2391121b2bfb97bc4880b6273c7250dc2f/utils/
H A Dthreadpool.hpp105 class task_result { class
107 virtual ~task_result(){}; in ~task_result()
139 typedef task_result *(*task_function_t)(worker_thread * worker, task_parameters *, int id);
157 void add_result(size_t queue, task_result *result);
167 task_result *get_result(size_t queue = 0, bool blocking = true);
168 void drain_queue(const size_t queue, void (*f)(task_result*) = NULL);
221task_result * do_task_parameters_lambda(worker_thread * worker, task_parameters * _param, int id) { in do_task_parameters_lambda()
225 return new task_result; in do_task_parameters_lambda()
251 return new task_result; in call_class_operator()
297 … static task_result * call_shared_task(worker_thread * worker, task_parameters * _param, int id) { in call_shared_task()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/offline_pages/core/model/
H A Dget_pages_task_unittest.cc92 EXPECT_EQ(std::set<OfflinePageItem>(), task_result()); in TEST_F()
112 EXPECT_EQ(std::set<OfflinePageItem>(), task_result()); in TEST_F()
168 task_result()); in TEST_F()
182 EXPECT_EQ(std::set<OfflinePageItem>({item_1}), task_result()); in TEST_F()
186 EXPECT_EQ(std::set<OfflinePageItem>({}), task_result()); in TEST_F()
199 EXPECT_EQ(std::set<OfflinePageItem>({item_1}), task_result()); in TEST_F()
212 EXPECT_EQ(std::set<OfflinePageItem>({item_1}), task_result()); in TEST_F()
226 EXPECT_EQ(std::set<OfflinePageItem>({item_1}), task_result()); in TEST_F()
265 EXPECT_EQ(std::set<OfflinePageItem>({item_1}), task_result()); in TEST_F()
285 task_result()); in TEST_F()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/components/offline_pages/core/model/
H A Dget_pages_task_unittest.cc92 EXPECT_EQ(std::set<OfflinePageItem>(), task_result()); in TEST_F()
112 EXPECT_EQ(std::set<OfflinePageItem>(), task_result()); in TEST_F()
168 task_result()); in TEST_F()
182 EXPECT_EQ(std::set<OfflinePageItem>({item_1}), task_result()); in TEST_F()
186 EXPECT_EQ(std::set<OfflinePageItem>({}), task_result()); in TEST_F()
199 EXPECT_EQ(std::set<OfflinePageItem>({item_1}), task_result()); in TEST_F()
212 EXPECT_EQ(std::set<OfflinePageItem>({item_1}), task_result()); in TEST_F()
226 EXPECT_EQ(std::set<OfflinePageItem>({item_1}), task_result()); in TEST_F()
265 EXPECT_EQ(std::set<OfflinePageItem>({item_1}), task_result()); in TEST_F()
285 task_result()); in TEST_F()
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/openmp/runtime/test/tasking/
H A Domp_task_imp_firstprivate.c12 int task_result = 1; in test_omp_task_imp_firstprivate() local
18 #pragma omp task shared(result , task_result) in test_omp_task_imp_firstprivate()
23 task_result = 0; in test_omp_task_imp_firstprivate()
30 result = (task_result && i==5); in test_omp_task_imp_firstprivate()
/dports/devel/llvm10/llvm-10.0.1.src/projects/openmp/runtime/test/tasking/
H A Domp_task_imp_firstprivate.c12 int task_result = 1; in test_omp_task_imp_firstprivate() local
18 #pragma omp task shared(result , task_result) in test_omp_task_imp_firstprivate()
23 task_result = 0; in test_omp_task_imp_firstprivate()
30 result = (task_result && i==5); in test_omp_task_imp_firstprivate()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/openmp/runtime/test/tasking/
H A Domp_task_imp_firstprivate.c12 int task_result = 1; in test_omp_task_imp_firstprivate() local
18 #pragma omp task shared(result , task_result) in test_omp_task_imp_firstprivate()
23 task_result = 0; in test_omp_task_imp_firstprivate()
30 result = (task_result && i==5); in test_omp_task_imp_firstprivate()
/dports/devel/llvm11/llvm-11.0.1.src/projects/openmp/runtime/test/tasking/
H A Domp_task_imp_firstprivate.c12 int task_result = 1; in test_omp_task_imp_firstprivate() local
18 #pragma omp task shared(result , task_result) in test_omp_task_imp_firstprivate()
23 task_result = 0; in test_omp_task_imp_firstprivate()
30 result = (task_result && i==5); in test_omp_task_imp_firstprivate()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/openmp/runtime/test/tasking/
H A Domp_task_imp_firstprivate.c12 int task_result = 1; in test_omp_task_imp_firstprivate() local
18 #pragma omp task shared(result , task_result) in test_omp_task_imp_firstprivate()
23 task_result = 0; in test_omp_task_imp_firstprivate()
30 result = (task_result && i==5); in test_omp_task_imp_firstprivate()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/openmp/runtime/test/tasking/
H A Domp_task_imp_firstprivate.c12 int task_result = 1; in test_omp_task_imp_firstprivate() local
18 #pragma omp task shared(result , task_result) in test_omp_task_imp_firstprivate()
23 task_result = 0; in test_omp_task_imp_firstprivate()
30 result = (task_result && i==5); in test_omp_task_imp_firstprivate()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/openmp/runtime/test/tasking/
H A Domp_task_imp_firstprivate.c12 int task_result = 1; in test_omp_task_imp_firstprivate() local
18 #pragma omp task shared(result , task_result) in test_omp_task_imp_firstprivate()
23 task_result = 0; in test_omp_task_imp_firstprivate()
30 result = (task_result && i==5); in test_omp_task_imp_firstprivate()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/openmp/runtime/test/tasking/
H A Domp_task_imp_firstprivate.c12 int task_result = 1; in test_omp_task_imp_firstprivate() local
18 #pragma omp task shared(result , task_result) in test_omp_task_imp_firstprivate()
23 task_result = 0; in test_omp_task_imp_firstprivate()
30 result = (task_result && i==5); in test_omp_task_imp_firstprivate()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/openmp/runtime/test/tasking/
H A Domp_task_imp_firstprivate.c12 int task_result = 1; in test_omp_task_imp_firstprivate() local
18 #pragma omp task shared(result , task_result) in test_omp_task_imp_firstprivate()
23 task_result = 0; in test_omp_task_imp_firstprivate()
30 result = (task_result && i==5); in test_omp_task_imp_firstprivate()
/dports/devel/llvm12/llvm-project-12.0.1.src/openmp/runtime/test/tasking/
H A Domp_task_imp_firstprivate.c12 int task_result = 1; in test_omp_task_imp_firstprivate() local
18 #pragma omp task shared(result , task_result) in test_omp_task_imp_firstprivate()
23 task_result = 0; in test_omp_task_imp_firstprivate()
30 result = (task_result && i==5); in test_omp_task_imp_firstprivate()
/dports/devel/llvm90/llvm-9.0.1.src/projects/openmp/runtime/test/tasking/
H A Domp_task_imp_firstprivate.c12 int task_result = 1; in test_omp_task_imp_firstprivate() local
18 #pragma omp task shared(result , task_result) in test_omp_task_imp_firstprivate()
23 task_result = 0; in test_omp_task_imp_firstprivate()
30 result = (task_result && i==5); in test_omp_task_imp_firstprivate()
/dports/devel/llvm80/llvm-8.0.1.src/projects/openmp/runtime/test/tasking/
H A Domp_task_imp_firstprivate.c12 int task_result = 1; in test_omp_task_imp_firstprivate() local
18 #pragma omp task shared(result , task_result) in test_omp_task_imp_firstprivate()
23 task_result = 0; in test_omp_task_imp_firstprivate()
30 result = (task_result && i==5); in test_omp_task_imp_firstprivate()
/dports/devel/llvm13/llvm-project-13.0.1.src/openmp/runtime/test/tasking/
H A Domp_task_imp_firstprivate.c12 int task_result = 1; in test_omp_task_imp_firstprivate() local
18 #pragma omp task shared(result , task_result) in test_omp_task_imp_firstprivate()
23 task_result = 0; in test_omp_task_imp_firstprivate()
30 result = (task_result && i==5); in test_omp_task_imp_firstprivate()
/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/plugins/strategy/
H A D__init__.py39 from ansible.executor.task_result import TaskResult
527 task_result._host = original_host
528 task_result._task = original_task
535 if task_result.is_failed() or task_result.is_unreachable():
537 elif task_result.is_skipped():
548 if task_result.is_failed():
590 if 'changed' in task_result._result and task_result._result['changed']:
593 elif task_result.is_unreachable():
603 elif task_result.is_skipped():
724 if 'changed' in task_result._result and task_result._result['changed']:
[all …]
/dports/sysutils/py-ansible-base/ansible-base-2.10.15/lib/ansible/plugins/strategy/
H A D__init__.py39 from ansible.executor.task_result import TaskResult
529 task_result._host = original_host
530 task_result._task = original_task
537 if task_result.is_failed() or task_result.is_unreachable():
539 elif task_result.is_skipped():
550 if task_result.is_failed():
592 if 'changed' in task_result._result and task_result._result['changed']:
595 elif task_result.is_unreachable():
605 elif task_result.is_skipped():
726 if 'changed' in task_result._result and task_result._result['changed']:
[all …]

123456789