HomeSort by relevance Sort by last modified time
    Searched refs:timeOut (Results 1 - 25 of 250) sorted by null

1 2 3 4 5 6 7 8 910

  /external/testng/src/test/java/test/timeout/
TimeOutSampleTest.java 1 package test.timeout;
12 @Test(timeOut = 5_000 /* 5 seconds */)
16 @Test(timeOut = 5_000 /* 5 seconds */)
21 @Test(timeOut = 1_000 /* 1 second */)
TimeOutSample2Test.java 1 package test.timeout;
11 @Test(timeOut = 1_500)
TimeOutWithParallelSample.java 1 package test.timeout;
7 @Test(timeOut = 1_000)
  /external/testng/src/test/java/test/thread/
ThreadPoolSizeSampleTest.java 6 @Test(threadPoolSize=2, timeOut=100)
ThreadPoolSampleBugTest.java 6 private static final long TIMEOUT = 500;
10 Thread.sleep(TIMEOUT);
15 Thread.sleep(TIMEOUT);
18 @Test(timeOut = 10, invocationCount = 1, threadPoolSize = 5)
20 Thread.sleep(TIMEOUT);
23 @Test(timeOut = 10, invocationCount = 2, threadPoolSize = 5)
25 Thread.sleep(TIMEOUT);
ThreadPoolSizeWithTimeOutTest.java 11 @Test(invocationCount = 5, threadPoolSize = 3, timeOut = 1000)
  /external/testng/src/test/java/test/expectedexceptions/
WrappedExpectedExceptionTest.java 8 @Test(timeOut = 1000L)
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
AsyncResultHolder.java 61 * @param timeOut the maximum time to wait.
64 public E get(final E defaultValue, final long timeOut) {
66 return mLatch.await(timeOut, TimeUnit.MILLISECONDS) ? mResult : defaultValue;
68 Log.w(mTag, "get() : Interrupted after " + timeOut + " ms");
  /external/testng/src/test/java/test/annotationtransformer/
AnnotationTransformerClassSampleTest.java 13 @Test(timeOut = 1000)
  /external/testng/src/test/java/test/reports/
ReporterSampleTest.java 8 * Regression test: if a timeOut is provided, getReporter(testResult) returns
24 @Test(dataProvider = "dp", timeOut = 10000)
  /external/testng/src/main/java/org/testng/annotations/
AfterClass.java 71 public long timeOut() default 0;
AfterGroups.java 81 public long timeOut() default 0;
AfterMethod.java 77 public long timeOut() default 0;
AfterSuite.java 71 public long timeOut() default 0;
AfterTest.java 71 public long timeOut() default 0;
BeforeClass.java 71 public long timeOut() default 0;
BeforeGroups.java 80 public long timeOut() default 0;
BeforeMethod.java 77 public long timeOut() default 0;
BeforeSuite.java 71 public long timeOut() default 0;
BeforeTest.java 71 public long timeOut() default 0;
  /external/testng/src/test/java/test/mannotation/
MTest1.java 23 timeOut = 42, invocationCount = 43, successPercentage = 44,
31 timeOut = 242, invocationCount = 243, successPercentage = 62,
39 timeOut = 142, invocationCount = 143, successPercentage = 61,
  /external/tpm2/
Policy_spt.c 121 // update the timeout if it is specified
124 // If the timeout has not been set, then set it to the new value
125 if(session->timeOut == 0)
126 session->timeOut = policyTimeout;
127 else if(session->timeOut > policyTimeout)
128 session->timeOut = policyTimeout;
  /external/aac/libSBRdec/src/
sbr_dec.h 167 INT_PCM *timeOut, /*!< pointer to output time signal */
178 INT_PCM *timeOut, /*!< pointer to output time signal */
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
ExitTest.java 72 long timeOut = settings.getTimeout();
81 if (System.currentTimeMillis() - startTime > timeOut) {
  /external/testng/src/main/java/org/testng/internal/annotations/
TestOrConfiguration.java 86 public void setTimeOut(long timeOut) {
87 m_timeOut = timeOut;

Completed in 525 milliseconds

1 2 3 4 5 6 7 8 910