Searched full:future (Results 1 – 25 of 95) sorted by relevance
1234
| /arkcompiler/toolchain/test/autotest/aw/ |
| D | taskpool.py | 36 future = asyncio.run_coroutine_threadsafe(coro=coroutine, loop=self.event_loop) 37 future.add_done_callback(callback) if callback else None 39 future.add_done_callback(self._task_done) 50 def _task_done(self, future): argument 52 if future.exception(): 53 logging.error(f'future.exception: {future.exception()}') 57 self.task_exception = future.exception()
|
| /arkcompiler/ets_frontend/es2panda/lexer/token/ |
| D | tokenType.h | 176 /* strict mode future reserved keywords */ 184 /* context dependent future */
|
| /arkcompiler/runtime_core/static_core/plugins/ets/doc/cookbook/ |
| D | guide.rst | 62 compilation failure in the future versions. 77 list in future releases based on the developer feedback and more real-world
|
| /arkcompiler/runtime_core/static_core/plugins/ets/doc/annotations/ |
| D | anno2.txt | 23 A set of *built-in annotations* can be added to some future language version. 55 A notion of *plugin-defined annotations* can be added to some future language version.
|
| /arkcompiler/ets_frontend/ets2panda/lexer/token/ |
| D | tokenType.h | 208 /* strict mode future reserved keywords */ 217 /* context dependent future */
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/core/ |
| D | PromiseRef.sts | 19 * Class represents a result of an asynchronous operation in the future.
|
| /arkcompiler/ets_frontend/ets2panda/linter/ |
| D | tslinter.sh | 18 # get absolute path to linter folder for possible use in future
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/02.lexical_elements/07.keywords/ |
| D | reserved.sts | 18 desc: The following identifiers are also treated as keywords and are reserved for the future use (o…
|
| /arkcompiler/runtime_core/static_core/runtime/mem/gc/reference-processor/ |
| D | reference_processor.h | 60 …* Save reference for future processing and handle it with GC point of view (mark needed fields, if… 65 …/// Save reference for future processing and handle it with GC point of view (traverse needed fiel…
|
| /arkcompiler/ets_frontend/ets2panda/linter/test/main/ |
| D | enum_indexing.sts | 25 // check required in future
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_es_checked/ |
| D | json.yaml | 14 # excluded due to future milestone
|
| /arkcompiler/ets_frontend/ets2panda/test/ |
| D | CMakeLists.txt | 27 # this will be fixed in the future
|
| /arkcompiler/runtime_core/scripts/ |
| D | run-check-concurrency-format.sh | 19 …'<mutex>' 'pthread' '<shared_mutex>' '<condition_variable>' '<future>' '<stop_token>' 'this_thread'
|
| /arkcompiler/ets_runtime/ecmascript/pgo_profiler/tests/ |
| D | pgo_profiler_test_one.cpp | 17 #include <future> 389 std::future<void> future1 = std::async(std::launch::async, [state, &mtx, &cv, &ready]() { in HWTEST_F_L0() 397 std::future<void> future2 = std::async(std::launch::async, [state, &mtx, &cv, &ready]() { in HWTEST_F_L0() 430 std::future<void> future1 = std::async(std::launch::async, [state, &mtx, &cv, &ready]() { in HWTEST_F_L0() 438 std::future<void> future2 = std::async(std::launch::async, [state, &mtx, &cv, &ready]() { in HWTEST_F_L0()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/ |
| D | README.MD | 76 TS used in interop tests, either as transpilation source or (future) as directly ran scripting lang…
|
| /arkcompiler/runtime_core/static_core/libpandafile/ |
| D | literal_data_accessor.h | 30 // by adding `INTARRAY` in the future
|
| /arkcompiler/runtime_core/libpandafile/ |
| D | literal_data_accessor.h | 30 // by adding `INTARRAY` in the future
|
| /arkcompiler/ets_runtime/ecmascript/compiler/aot_file/ |
| D | an_file_info.h | 114 // Future work: add main entry mapping to ai file
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/lookup_by_name/ |
| D | CMakeLists.txt | 149 # will need redesign for union types support in the future
|
| /arkcompiler/runtime_core/static_core/compiler/docs/ |
| D | compilation_start.md | 87 std::future<bool> compilation_result_future = compilation_result_promise->get_future();
|
| /arkcompiler/ets_runtime/docs/ |
| D | overview.md | 49 …methods, and bytecodes (built-in code blocks and constant strings in the future) in Actor instance…
|
| /arkcompiler/runtime_core/static_core/libpandabase/taskmanager/ |
| D | task_scheduler.h | 76 * @param taskType - TaskType of future TaskQueue. 77 * @param vmType - VMType of future TaskQueue.
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/ |
| D | operands.h | 145 * Immediate class may hold only int or float values (maybe vectors in future). 146 * It knows nothing about pointers and bools (bools maybe be in future).
|
| /arkcompiler/runtime_core/abc2program/ |
| D | abc_class_processor.cpp | 43 * AbcClassProcessor must only collect record name for future purposes in FillRecord()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/doc/spec/ |
| D | 20_implementation.rst | 159 in the future. The compiler applies boxing (see :ref:`Boxing Conversions`) to
|
1234