- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for newLinkageError (0.05 sec)
-
android/guava-testlib/test/com/google/common/collect/testing/MapTestSuiteBuilderTests.java
try { return method.invoke(map, args); } catch (InvocationTargetException e) { throw e.getCause(); } catch (IllegalAccessException e) { throw newLinkageError(e); } } } /** Verifies that {@code setUp} and {@code tearDown} are called in all map test cases. */ private static Test testsForSetUpTearDown() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu May 22 16:18:11 UTC 2025 - 11.4K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AbstractFutureState.java
valueUpdater = lookup.findVarHandle(AbstractFutureState.class, "valueField", Object.class); } catch (ReflectiveOperationException e) { // Those fields exist. throw newLinkageError(e); } } @Override void putThread(Waiter waiter, Thread newValue) { waiterThreadUpdater.setRelease(waiter, newValue); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 34.8K bytes - Viewed (0)