/arkcompiler/ets_runtime/test/typeinfer/automatedcases/jsDeclarationsFunctionClassesCjsExportAssignment/ |
D | timer.js | 24 function Timer(timeout) { argument 25 this.timeout = timeout; 26 AssertType(this.timeout = timeout, "number"); 27 AssertType(this.timeout, "any"); 29 AssertType(timeout, "number");
|
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/staticInstanceResolution3/ |
D | staticInstanceResolution3_1.ts | 23 WinJS.Promise.timeout(10); 24 AssertType(WinJS.Promise.timeout(10), "WinJS.Promise"); 25 AssertType(WinJS.Promise.timeout, "(number) => WinJS.Promise");
|
D | staticInstanceResolution3_0.ts | 22 static timeout(delay: number): Promise {
|
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/memberAccessMustUseModuleInstances/ |
D | memberAccessMustUseModuleInstances_1.ts | 24 WinJS.Promise.timeout(10); 25 AssertType(WinJS.Promise.timeout(10), "WinJS.Promise"); 26 AssertType(WinJS.Promise.timeout, "(number) => WinJS.Promise");
|
D | memberAccessMustUseModuleInstances_0.ts | 22 static timeout(delay: number): Promise {
|
/arkcompiler/ets_frontend/test/scripts/auto_xts_test/ |
D | autoburn.py | 24 timeout = 300 26 if timeout < 0: 36 timeout -= 5
|
/arkcompiler/runtime_core/tests/cts-generator/ |
D | CMakeLists.txt | 34 # Set timeout for the entire CTS test suite 36 # Increase timeout for build with sanitizers 44 # Set timeout for each single test 46 # Increase single test timeout for build with sanitizers 156 --global-timeout ${PANDA_CTS_TESTING_TIMEOUT} 157 --timeout ${PANDA_CTS_TEST_TIMEOUT} 170 --global-timeout ${PANDA_CTS_TESTING_TIMEOUT} 171 --timeout ${PANDA_CTS_TEST_TIMEOUT} 183 --global-timeout ${PANDA_CTS_TESTING_TIMEOUT} 184 --timeout ${PANDA_CTS_TEST_TIMEOUT}
|
D | README.md | 47 --timeout SECONDS Set process timeout, default is 30 seconds 48 --dump-timeout SECONDS Set process completion timeout, default is 30 seconds 52 --global-timeout SECONDS Set testing timeout, default is 0 (ulimited)
|
/arkcompiler/toolchain/websocket/ |
D | websocket.cpp | 532 struct timeval timeout = {timeoutLimit, 0}; in SetWebSocketTimeOut() local 534 reinterpret_cast<char *>(&timeout), sizeof(timeout)) != SOCKET_SUCCESS) { in SetWebSocketTimeOut() 539 reinterpret_cast<char *>(&timeout), sizeof(timeout)) != SOCKET_SUCCESS) { in SetWebSocketTimeOut() 550 struct timeval timeout = {timeoutLimit, 0}; in SetWebSocketTimeOut() local 551 if (setsockopt(fd, SOL_SOCKET, SO_SNDTIMEO, &timeout, sizeof(timeout)) != SOCKET_SUCCESS) { in SetWebSocketTimeOut() 555 if (setsockopt(fd, SOL_SOCKET, SO_RCVTIMEO, &timeout, sizeof(timeout)) != SOCKET_SUCCESS) { in SetWebSocketTimeOut()
|
/arkcompiler/ets_runtime/test/ |
D | run_ts_test262.py | 118 process.communicate(timeout=5000) 125 out, err = process.communicate(timeout=5000) 139 process.communicate(timeout=5000) 145 out, err = process.communicate(timeout=5000) 150 out, err = process.communicate(timeout=5000)
|
D | runtest.py | 77 def run_command(cmd, timeout=DEFAULT_TIMEOUT): argument 81 (msg, errs) = proc.communicate(timeout=timeout) 295 ret = run_command(cmd, self.args.timeout)
|
/arkcompiler/runtime_core/cmake/ |
D | PandaAssembly.cmake | 106 # [TIMEOUT <timeout>] 153 # to SIGUSR1 on most platforms) after the given timeout. The format of the value 154 # must match the `timeout` command. The run will be considered successful if the program 155 # exits before the timeout with the successful exit code or if it is terminated 156 # after the timeout with the signal 10. 215 …set(timeout_prefix "timeout --preserve-status --signal=${timeout_signal} --kill-after=10s ${ARG_TI… 372 # [TIMEOUT <timeout>] 403 # to SIGUSR1 on most platforms) after the given timeout. The format of the value 404 # must match the `timeout` command. The run will be considered successful if the program 405 # exits before the timeout with the successful exit code or if it is terminated [all …]
|
D | CommonTesting.cmake | 128 … set(timeout_prefix timeout --preserve-status --signal=${TIMEOUT_SIGNAL} --kill-after=30s 40m) 130 … set(timeout_prefix timeout --preserve-status --signal=${TIMEOUT_SIGNAL} --kill-after=30s 20m)
|
/arkcompiler/runtime_core/platforms/unix/libpandabase/futex/ |
D | fmutex.h | 77 inline int futex(volatile int *uaddr, int op, int val, const struct timespec *timeout, volatile int… in futex() argument 80 return syscall(SYS_futex, uaddr, op, val, timeout, uaddr2, val3); in futex()
|
D | mutex.cpp | 372 bool timeout = false; in TimedWait() local 397 timeout = true; in TimedWait() 407 return timeout; in TimedWait()
|
/arkcompiler/ets_frontend/test/scripts/sdk_test/ |
D | entry.py | 44 stdout, stderr = process.communicate(timeout=60 * 60 * 5)
|
/arkcompiler/ets_frontend/test/scripts/performance_test/ |
D | performance_build.py | 45 self.timeout = 180 133 stdout=sys.stdout).communicate(timeout=self.timeout) 185 p.communicate(timeout=self.timeout) 190 p.communicate(timeout=self.timeout)
|
/arkcompiler/ets_runtime/test/moduletest/hugearray/ |
D | BUILD.gn | 18 timeout = "300"
|
/arkcompiler/ets_runtime/test/moduletest/typearray/ |
D | BUILD.gn | 18 timeout = "300"
|
/arkcompiler/toolchain/test/ |
D | test_helper.gni | 64 "--timeout-limit", 107 "--timeout-limit",
|
/arkcompiler/ets_frontend/test262/ |
D | run_test262.py | 541 timeout = DEFAULT_TIMEOUT * threads 542 if args.timeout: 543 timeout = args.timeout 544 return timeout 637 timeout = get_timeout(args, threads)
|
D | README.md | 22 [--engine FILE] [--babel] [--timeout TIMEOUT] 46 --timeout TIMEOUT Set a custom test timeout in milliseconds !!! 151 --timeout=60000
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
D | builtins_atomics.cpp | 166 JSHandle<JSTaggedValue> timeout = GetCallArg(argv, BuiltinsBase::ArgsPosition::FOURTH); in Wait() local 198 if (timeout->IsUndefined()) { in Wait() 201 JSTaggedNumber q = JSTaggedValue::ToNumber(thread, timeout); in Wait() 517 size_t index, T execpt, double timeout) in DoWait() argument 536 bool hasTimeout = timeout != base::POSITIVE_INFINITY; in DoWait() 539 timeoutTime = currentTime + static_cast<uint64_t>(timeout); in DoWait()
|
/arkcompiler/runtime_core/tests/ |
D | test_helper.gni | 49 "--timeout-limit",
|
/arkcompiler/ets_runtime/test/moduletest/container/ |
D | BUILD.gn | 105 timeout = "300"
|