OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:checkedget
(Results
1 - 8
of
8
) sorted by null
/external/guava/guava/src/com/google/common/util/concurrent/
ForwardingCheckedFuture.java
35
* {@code
checkedGet
} method
45
public V
checkedGet
() throws X {
46
return delegate().
checkedGet
();
50
public V
checkedGet
(long timeout, TimeUnit unit) throws TimeoutException, X {
51
return delegate().
checkedGet
(timeout, unit);
AbstractCheckedFuture.java
28
* the {@link #
checkedGet
()} and {@link #
checkedGet
(long, TimeUnit)} methods.
48
* {@code
checkedGet
}. Subclasses must implement this method.
51
* {@code
checkedGet
} method has already restored the interrupt after catching
76
public V
checkedGet
() throws X {
105
public V
checkedGet
(long timeout, TimeUnit unit) throws TimeoutException, X {
CheckedFuture.java
63
V
checkedGet
() throws X;
75
V
checkedGet
(long timeout, TimeUnit unit) throws TimeoutException, X;
Futures.java
169
public V
checkedGet
() {
174
public V
checkedGet
(long timeout, TimeUnit unit) {
229
public V
checkedGet
() throws X {
234
public V
checkedGet
(long timeout, TimeUnit unit) throws X {
256
*
checkedGet
()} will immediately return the provided value.
295
* ExecutionException}, and calling {@code
checkedGet
()} will throw the
[
all
...]
/external/guava/guava-testlib/src/com/google/common/util/concurrent/testing/
AbstractCheckedFutureTest.java
27
* Test case to make sure the {@link CheckedFuture#
checkedGet
()} and
28
* {@link CheckedFuture#
checkedGet
(long, TimeUnit)} methods work correctly.
65
* Tests that the {@link CheckedFuture#
checkedGet
()} method throws the correct
84
future.
checkedGet
();
112
future.
checkedGet
();
148
future.
checkedGet
();
/external/guava/guava-tests/test/com/google/common/util/concurrent/
FuturesTest.java
168
assertSame(DATA1, future.
checkedGet
(0L, TimeUnit.MILLISECONDS));
179
assertSame(DATA1, future1.
checkedGet
(0L, TimeUnit.MILLISECONDS));
181
assertSame(DATA2, future2.
checkedGet
(0L, TimeUnit.MILLISECONDS));
198
future.
checkedGet
(0L, TimeUnit.MILLISECONDS);
[
all
...]
/packages/services/Telecomm/libs/
guava.jar
/prebuilts/tools/common/m2/repository/org/glassfish/jaxb/jaxb-runtime/2.2.11/
jaxb-runtime-2.2.11.jar
Completed in 1286 milliseconds