- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 14 for _extends (0.05 sec)
-
guava/src/com/google/common/reflect/Types.java
} throw new AssertionError(); } } /** * Returns a new {@link TypeVariable} that belongs to {@code declaration} with {@code name} and * {@code bounds}. */ static <D extends GenericDeclaration> TypeVariable<D> newArtificialTypeVariable( D declaration, String name, Type... bounds) { return newTypeVariableImpl(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 14:03:14 UTC 2025 - 23.5K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/Types.java
} throw new AssertionError(); } } /** * Returns a new {@link TypeVariable} that belongs to {@code declaration} with {@code name} and * {@code bounds}. */ static <D extends GenericDeclaration> TypeVariable<D> newArtificialTypeVariable( D declaration, String name, Type... bounds) { return newTypeVariableImpl(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 14:03:14 UTC 2025 - 23.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java
*/ public class SystemMonitorTargetTest extends UnitFessTestCase { private SystemMonitorTarget target; @Override public void setUp() throws Exception { super.setUp(); target = new SystemMonitorTarget(); } public void test_inheritance() { assertTrue("SystemMonitorTarget should extend MonitorTarget", MonitorTarget.class.isAssignableFrom(SystemMonitorTarget.class));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 8.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/reflect/TypeTokenTest.java
// ? extends Number assertAssignable(new TypeToken<List<N1>>() {}, new TypeToken<List<? extends Number>>() {}); assertAssignable(new TypeToken<ArrayList<N1>>() {}, new TypeToken<List<? extends Number>>() {}); assertAssignable( new TypeToken<List<? extends N11>>() {}, new TypeToken<List<? extends Number>>() {}); } public <N1 extends Number, N2 extends Number, N11 extends N1>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Sep 02 17:23:59 UTC 2025 - 89K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java
// ? extends Number assertAssignable(new TypeToken<List<N1>>() {}, new TypeToken<List<? extends Number>>() {}); assertAssignable(new TypeToken<ArrayList<N1>>() {}, new TypeToken<List<? extends Number>>() {}); assertAssignable( new TypeToken<List<? extends N11>>() {}, new TypeToken<List<? extends Number>>() {}); } public <N1 extends Number, N2 extends Number, N11 extends N1>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Sep 02 17:23:59 UTC 2025 - 89K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/UploadProgress.java
System.out.println(response.body().string()); } public static void main(String... args) throws Exception { new UploadProgress().run(); } private static class ProgressRequestBody extends RequestBody { private final ProgressListener progressListener; private final RequestBody delegate; public ProgressRequestBody(RequestBody delegate, ProgressListener progressListener) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 17:01:12 UTC 2025 - 4.2K bytes - Viewed (1) -
guava/src/com/google/common/collect/TopKSelector.java
* equivalent elements are added to it, it is undefined which will come first in the output. * * @author Louis Wasserman */ @GwtCompatible final class TopKSelector< T extends @Nullable Object> { /** * Returns a {@code TopKSelector} that collects the lowest {@code k} elements added to it, * relative to the natural ordering of the elements, and returns them via {@link #topK} in
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 31 13:15:26 UTC 2025 - 11.4K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/TypeResolver.java
* matches. * * <p>On the other hand, if for example we are resolving {@code List<A extends B>} to {@code * List<A extends String>}, we need to compare that {@code <A extends B>} is unequal to {@code <A * extends String>} in order to decide to use the transformed type instead of the original type. */ static final class TypeVariableKey {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 14:03:14 UTC 2025 - 24.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/CartesianList.java
*/ @GwtCompatible final class CartesianList<E> extends AbstractList<List<E>> implements RandomAccess { private final transient ImmutableList<List<E>> axes; private final transient int[] axesSizeProduct; static <E> List<List<E>> create(List<? extends List<? extends E>> lists) { ImmutableList.Builder<List<E>> axesBuilder = new ImmutableList.Builder<>(lists.size()); for (List<? extends E> list : lists) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 31 13:15:26 UTC 2025 - 4.7K bytes - Viewed (0) -
guava/src/com/google/common/reflect/TypeResolver.java
* matches. * * <p>On the other hand, if for example we are resolving {@code List<A extends B>} to {@code * List<A extends String>}, we need to compare that {@code <A extends B>} is unequal to {@code <A * extends String>} in order to decide to use the transformed type instead of the original type. */ static final class TypeVariableKey {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 14:03:14 UTC 2025 - 24.2K bytes - Viewed (0)