/external/testng/src/test/java/test/timeout/ |
H A D | TimeOutSampleTest.java | 12 @Test(timeOut = 5_000 /* 5 seconds */) 16 @Test(timeOut = 5_000 /* 5 seconds */) 21 @Test(timeOut = 1_000 /* 1 second */)
|
H A D | TimeOutSample2Test.java | 11 @Test(timeOut = 1_500)
|
H A D | TimeOutWithParallelSample.java | 7 @Test(timeOut = 1_000)
|
/external/testng/src/test/java/test/thread/ |
H A D | ThreadPoolSizeSampleTest.java | 6 @Test(threadPoolSize=2, timeOut=100)
|
H A D | ThreadPoolSampleBugTest.java | 18 @Test(timeOut = 10, invocationCount = 1, threadPoolSize = 5) 23 @Test(timeOut = 10, invocationCount = 2, threadPoolSize = 5)
|
H A D | ThreadPoolSizeWithTimeOutTest.java | 11 @Test(invocationCount = 5, threadPoolSize = 3, timeOut = 1000)
|
/external/testng/src/test/java/test/expectedexceptions/ |
H A D | WrappedExpectedExceptionTest.java | 8 @Test(timeOut = 1000L)
|
/external/testng/src/test/java/test/annotationtransformer/ |
H A D | AnnotationTransformerClassSampleTest.java | 13 @Test(timeOut = 1000)
|
/external/testng/src/test/java/test/reports/ |
H A D | 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/ |
H A D | AfterClass.java | 71 public long timeOut() default 0;
|
H A D | AfterGroups.java | 81 public long timeOut() default 0;
|
H A D | AfterMethod.java | 77 public long timeOut() default 0;
|
H A D | AfterSuite.java | 71 public long timeOut() default 0;
|
H A D | AfterTest.java | 71 public long timeOut() default 0;
|
H A D | BeforeClass.java | 71 public long timeOut() default 0;
|
H A D | BeforeGroups.java | 80 public long timeOut() default 0;
|
H A D | BeforeMethod.java | 77 public long timeOut() default 0;
|
H A D | BeforeSuite.java | 71 public long timeOut() default 0;
|
H A D | BeforeTest.java | 71 public long timeOut() default 0;
|
/external/libgdx/gdx/src/com/badlogic/gdx/ |
H A D | Net.java | 147 private int timeOut = 0;
field in class:Net.HttpRequest 198 * @param timeOut the number of milliseconds to wait before giving up, 0 or negative to block until the operation is done */
199 public void setTimeOut (int timeOut) {
argument 200 this.timeOut = timeOut;
226 /** Returns the timeOut of the HTTP request.
227 * @return the timeOut. */
229 return timeOut;
277 timeOut = 0;
|
/external/testng/src/test/java/test/mannotation/ |
H A D | 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/ |
H A D | Policy_spt.c | 125 if(session->timeOut == 0) 126 session->timeOut = policyTimeout; 127 else if(session->timeOut > policyTimeout) 128 session->timeOut = policyTimeout;
|
/external/aac/libSBRdec/src/ |
H A D | 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/ |
H A D | ExitTest.java | 72 long timeOut = settings.getTimeout(); 81 if (System.currentTimeMillis() - startTime > timeOut) {
|
/external/testng/src/main/java/org/testng/internal/annotations/ |
H A D | TestOrConfiguration.java | 86 public void setTimeOut(long timeOut) { argument 87 m_timeOut = timeOut;
|