HomeSort by relevance Sort by last modified time
    Searched full:tries (Results 1 - 25 of 2764) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/tlsdate/tests/run-idle/
test.conf 3 subprocess-tries 1
4 subprocess-wait-between-tries 2
  /external/tlsdate/
test.conf 2 wait-between-tries 1
  /dalvik/dx/tests/127-merge-stress/
info.txt 1 This test tries to merge dex files it finds in the android tree at random, 2 by 2.
  /external/autotest/client/site_tests/platform_TLSDate/src/
test.conf 1 subprocess-wait-between-tries 2
2 subprocess-tries 2
3 wait-between-tries 2
4 tries 2
  /external/chromium-trace/catapult/devil/devil/utils/
timeout_retry_unittest.py 23 def _CountTries(tries):
24 tries[0] += 1
36 tries = [0]
39 tries[0] += 1
45 self.assertEqual(tries[0], 2)
48 tries = [0]
50 TestException, timeout_retry.Run, lambda: _CountTries(tries),
52 self.assertEqual(tries[0], 4)
55 tries = [0]
57 TestException, timeout_retry.Run, lambda: _CountTries(tries),
    [all...]
  /external/autotest/client/samples/
control.soft_reboot 16 tries = job.get_state('soft_reboot_tries', 0) + 1
17 job.set_state("soft_reboot_tries", tries)
19 if tries < ITERATIONS:
28 if tries <= ITERATIONS:
  /external/tlsdate/tests/run-routeup/
test.conf 4 wait-between-tries 1
  /dalvik/dx/tests/034-dex-minimal/
info.txt 3 The first test tries to create the truly minimal dex file by using the
7 The second test tries to convert a minimal classfile and ensures that
  /external/tlsdate/etc/
tlsdated.conf 8 max-tries 10
17 wait-between-tries 10
  /external/chromium-trace/catapult/third_party/closure_linter/
README 9 fixjsstyle - tries to fix errors automatically
  /ndk/tests/build/ndk-build-unit-tests/
build.sh 3 # within the build system, not anything that tries to build something.
  /external/tlsdate/src/events/
run_tlsdate.c 37 if (state->tries > 0)
39 state->tries--;
48 if (state->tries < state->opts.max_tries)
50 state->tries++;
54 state->tries = 0;
61 state->tries, state->backoff);
73 state->tries = 0;
  /external/autotest/server/site_tests/cellular_StaleModemReboot/
control 12 modem is in a non testable state after two or more tries.
28 is in. After the reboot, it tries to get the modem state again and if the
30 it tries to reboot the DUT for a maximum of two tries by default. User can
31 override the number of tries by passing a tries flag with a desired value.
75 tries = int(args_dict.get('tries', 2))
76 job.run_test('cellular_StaleModemReboot', host=host, tries=tries)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/
Code.java 25 private final Try[] tries; field in class:Code
29 short[] instructions, Try[] tries, CatchHandler[] catchHandlers) {
35 this.tries = tries;
60 return tries;
  /external/chromium-trace/catapult/third_party/gsutil/third_party/retry-decorator/retry_decorator/
retry_decorator.py 11 def retry(ExceptionToCheck, tries=10, timeout_secs=1.0, logger=None):
17 mtries, mdelay = tries, timeout_secs
  /external/eigen/bench/
basicbenchmark.cpp 21 const int tries = 10; local
26 BOOST_PP_SEQ_ELEM(1,EL),BOOST_PP_SEQ_ELEM(1,EL)), BOOST_PP_SEQ_ELEM(2,EL), tries) \
basicbenchmark.h 38 double benchBasic(const MatrixType& mat, int size, int tries) __attribute__((noinline));
41 double benchBasic(const MatrixType& mat, int iterations, int tries)
52 for(uint t=0; t<tries; ++t)
quatmul.cpp 22 int tries = 10; local
32 BENCH(t, tries, rep, quatmul_default(a,b,c));
35 BENCH(t, tries, rep, quatmul_novec(a,b,c));
  /external/libchrome/sandbox/win/sandbox_poc/pocdll/
exports.h 17 // Tries to open several known system path and outputs
22 // Tries to find all handles open in the process and prints the name of the
53 // Receives a hwnd and tries to close it. This is the callback for EnumWindows.
60 // Tries to listen on the port 88.
64 // Lists all processes on the system and tries to open them
68 // Lists all threads on the system and tries to open them
72 // Tries to open some known system registry key and outputs the result.
80 // Tries to read pixels on the monitor and output if the operation
  /external/llvm/test/CodeGen/AArch64/
arm64-shrink-v1i64.ll 3 ; The DAGCombiner tries to do following shrink:
6 ; when it tries to generate an add mixed using vector type and scaler type.
  /external/llvm/test/Transforms/DeadArgElim/
2008-06-23-DeadAfterLive.ll 4 ; This test tries to catch wrongful removal of return values for a specific case
12 ; This function doesn't use the return value @test5 and tries to lure DAE into
  /external/chromium-trace/catapult/third_party/gsutil/third_party/retry-decorator/
README.rst 14 @retry(Exception, tries = 3, timeout_secs = 0.1)
  /external/llvm/test/Transforms/Inline/
2004-04-15-InlineDeletesCall.ll 4 ; call. Then the inliner tries to inline the second call, which no longer
  /external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/rsa/
randnum.py 70 tries = 0
76 if tries and tries % 10 == 0:
77 # After a lot of tries to get the right number of bits but still
81 tries += 1
  /libcore/dex/src/main/java/com/android/dex/
Code.java 25 private final Try[] tries; field in class:Code
29 short[] instructions, Try[] tries, CatchHandler[] catchHandlers) {
35 this.tries = tries;
60 return tries;

Completed in 1803 milliseconds

1 2 3 4 5 6 7 8 91011>>