Searched refs:waitTime (Results 1 – 4 of 4) sorted by relevance
80 DWORD waitTime = status.dwWaitHint / 10; in StopIndexingService() local82 if (waitTime < 1000) in StopIndexingService()83 waitTime = 1000; in StopIndexingService()84 else if (waitTime > 10000) in StopIndexingService()85 waitTime = 10000; in StopIndexingService()87 Sleep(waitTime); in StopIndexingService()128 if (waitTime < 1000) in StartIndexingService()129 waitTime = 1000; in StartIndexingService()130 else if (waitTime > 10000) in StartIndexingService()131 waitTime = 10000; in StartIndexingService()[all …]
49 TestThread t = new TestThread(waitTime); in testThreadLeavesJobQueueOnDispose()69 private void testThreadLeavesJobQueueOnReply(int waitTime) in testThreadLeavesJobQueueOnReply() argument72 TestThread t = new TestThread(waitTime); in testThreadLeavesJobQueueOnReply()95 private void testStaticThreadExecutesJobs(int waitTime) in testStaticThreadExecutesJobs() argument98 TestThread t = new TestThread(waitTime); in testStaticThreadExecutesJobs()205 public TestThread(int waitTime) { in TestThread() argument206 this.waitTime = waitTime; in TestThread()211 waitTime = 0; in TestThread()220 if (waitTime != 0) { in run()221 Thread.sleep(waitTime); in run()[all …]
200 private Job removeJob(int waitTime) { in removeJob() argument207 while(_head == null && (waitTime == 0 || !waited)) { in removeJob()219 wait(waitTime); in removeJob()313 Object enter(int waitTime, Object disposeId) throws Throwable { in enter() argument330 job = removeJob(waitTime); in enter()
559 Dim waitTime As Long variable568 waitTime = val(DateDiff("s", curDate, Now()))569 If (waitTime > C_ABORT_TIMEOUT) Then
Completed in 20 milliseconds