Home
last modified time | relevance | path

Searched full:future (Results 1 – 25 of 95) sorted by relevance

1234

/arkcompiler/toolchain/test/autotest/aw/
Dtaskpool.py36 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/
DtokenType.h176 /* strict mode future reserved keywords */
184 /* context dependent future */
/arkcompiler/runtime_core/static_core/plugins/ets/doc/cookbook/
Dguide.rst62 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/
Danno2.txt23 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/
DtokenType.h208 /* strict mode future reserved keywords */
217 /* context dependent future */
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/core/
DPromiseRef.sts19 * Class represents a result of an asynchronous operation in the future.
/arkcompiler/ets_frontend/ets2panda/linter/
Dtslinter.sh18 # 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/
Dreserved.sts18 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/
Dreference_processor.h60 …* 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/
Denum_indexing.sts25 // check required in future
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_es_checked/
Djson.yaml14 # excluded due to future milestone
/arkcompiler/ets_frontend/ets2panda/test/
DCMakeLists.txt27 # this will be fixed in the future
/arkcompiler/runtime_core/scripts/
Drun-check-concurrency-format.sh19 …'<mutex>' 'pthread' '<shared_mutex>' '<condition_variable>' '<future>' '<stop_token>' 'this_thread'
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/tests/
Dpgo_profiler_test_one.cpp17 #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/
DREADME.MD76 TS used in interop tests, either as transpilation source or (future) as directly ran scripting lang…
/arkcompiler/runtime_core/static_core/libpandafile/
Dliteral_data_accessor.h30 // by adding `INTARRAY` in the future
/arkcompiler/runtime_core/libpandafile/
Dliteral_data_accessor.h30 // by adding `INTARRAY` in the future
/arkcompiler/ets_runtime/ecmascript/compiler/aot_file/
Dan_file_info.h114 // Future work: add main entry mapping to ai file
/arkcompiler/runtime_core/static_core/plugins/ets/tests/lookup_by_name/
DCMakeLists.txt149 # will need redesign for union types support in the future
/arkcompiler/runtime_core/static_core/compiler/docs/
Dcompilation_start.md87 std::future<bool> compilation_result_future = compilation_result_promise->get_future();
/arkcompiler/ets_runtime/docs/
Doverview.md49 …methods, and bytecodes (built-in code blocks and constant strings in the future) in Actor instance…
/arkcompiler/runtime_core/static_core/libpandabase/taskmanager/
Dtask_scheduler.h76 * @param taskType - TaskType of future TaskQueue.
77 * @param vmType - VMType of future TaskQueue.
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
Doperands.h145 * 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/
Dabc_class_processor.cpp43 * AbcClassProcessor must only collect record name for future purposes in FillRecord()
/arkcompiler/runtime_core/static_core/plugins/ets/doc/spec/
D20_implementation.rst159 in the future. The compiler applies boxing (see :ref:`Boxing Conversions`) to

1234