Home
last modified time | relevance | path

Searched refs:timeout (Results 1 – 25 of 46) sorted by relevance

12

/arkcompiler/ets_runtime/test/typeinfer/automatedcases/jsDeclarationsFunctionClassesCjsExportAssignment/
Dtimer.js24 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/
DstaticInstanceResolution3_1.ts23 WinJS.Promise.timeout(10);
24 AssertType(WinJS.Promise.timeout(10), "WinJS.Promise");
25 AssertType(WinJS.Promise.timeout, "(number) => WinJS.Promise");
DstaticInstanceResolution3_0.ts22 static timeout(delay: number): Promise {
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/memberAccessMustUseModuleInstances/
DmemberAccessMustUseModuleInstances_1.ts24 WinJS.Promise.timeout(10);
25 AssertType(WinJS.Promise.timeout(10), "WinJS.Promise");
26 AssertType(WinJS.Promise.timeout, "(number) => WinJS.Promise");
DmemberAccessMustUseModuleInstances_0.ts22 static timeout(delay: number): Promise {
/arkcompiler/ets_frontend/test/scripts/auto_xts_test/
Dautoburn.py24 timeout = 300
26 if timeout < 0:
36 timeout -= 5
/arkcompiler/runtime_core/tests/cts-generator/
DCMakeLists.txt34 # 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}
DREADME.md47 --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/
Dwebsocket.cpp532 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/
Drun_ts_test262.py118 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)
Druntest.py77 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/
DPandaAssembly.cmake106 # [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 …]
DCommonTesting.cmake128 … 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/
Dfmutex.h77 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()
Dmutex.cpp372 bool timeout = false; in TimedWait() local
397 timeout = true; in TimedWait()
407 return timeout; in TimedWait()
/arkcompiler/ets_frontend/test/scripts/sdk_test/
Dentry.py44 stdout, stderr = process.communicate(timeout=60 * 60 * 5)
/arkcompiler/ets_frontend/test/scripts/performance_test/
Dperformance_build.py45 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/
DBUILD.gn18 timeout = "300"
/arkcompiler/ets_runtime/test/moduletest/typearray/
DBUILD.gn18 timeout = "300"
/arkcompiler/toolchain/test/
Dtest_helper.gni64 "--timeout-limit",
107 "--timeout-limit",
/arkcompiler/ets_frontend/test262/
Drun_test262.py541 timeout = DEFAULT_TIMEOUT * threads
542 if args.timeout:
543 timeout = args.timeout
544 return timeout
637 timeout = get_timeout(args, threads)
DREADME.md22 [--engine FILE] [--babel] [--timeout TIMEOUT]
46 --timeout TIMEOUT Set a custom test timeout in milliseconds !!!
151 --timeout=60000
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_atomics.cpp166 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/
Dtest_helper.gni49 "--timeout-limit",
/arkcompiler/ets_runtime/test/moduletest/container/
DBUILD.gn105 timeout = "300"

12