Searched refs:timeOut (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DCommunicatorServerMBean.java103 * or the specified <VAR>timeOut</VAR> has elapsed. The method <CODE>waitState</CODE> returns with a boolean value indicating whether
106 * Two special cases for the <VAR>timeOut</VAR> parameter value are:
107 * <UL><LI> if <VAR>timeOut</VAR> is negative then <CODE>waitState</CODE> returns immediately (i.e. does not wait at all),</LI>
108 * <LI> if <VAR>timeOut</VAR> equals zero then <CODE>waitState</CODE> waits untill the value of this MBean's State attribute
119 * @param timeOut The maximum time to wait for, in
126 public boolean waitState(int state , long timeOut) ; argument
H A DCommunicatorServer.java405 * or the specified <VAR>timeOut</VAR> has elapsed.
411 * <p>Two special cases for the <VAR>timeOut</VAR> parameter value are:</p>
412 * <UL><LI> if <VAR>timeOut</VAR> is negative then <CODE>waitState</CODE>
414 * <LI> if <VAR>timeOut</VAR> equals zero then <CODE>waitState</CODE>
427 * @param timeOut The maximum time to wait for, in milliseconds,
434 public boolean waitState(int wantedState, long timeOut) { argument
437 "waitState", wantedState + "(0on,1off,2st) TO=" + timeOut +
442 if (timeOut > 0)
443 endTime = System.currentTimeMillis() + timeOut;
447 if (timeOut <
[all...]
/openjdk7/jdk/test/java/rmi/transport/dgcDeadLock/
H A DTestImpl.java91 static Thread lockTargetExpireLeases(Remote toLock, int timeOut) { argument
92 Thread t = new Thread((Runnable) new TargetLocker(toLock, timeOut));
100 int timeOut = 0; field in class:TestImpl.TargetLocker
102 TargetLocker(Remote toLock, int timeOut) { argument
104 this.timeOut = timeOut;
114 timeOut));
128 int timeOut = 0; field in class:TestImpl.LockTargetCheckLeases
130 LockTargetCheckLeases(Remote toLock, int timeOut) { argument
132 this.timeOut
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DQueue.java81 * @param timeOut the number of milliseconds to wait for something
88 public synchronized Object dequeue(long timeOut) argument
92 wait(timeOut);
/openjdk7/jdk/test/java/util/concurrent/CountDownLatch/
H A DBasic.java154 public static void timeOut() throws Throwable { method in class:Basic
185 timeOut();

Completed in 40 milliseconds