- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 2,183 for list (0.03 seconds)
-
guava/javadoc-link/error_prone_annotations/element-list
cpovirk <******@****.***> 1763415091 -0800
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Nov 17 21:36:50 GMT 2025 - 79 bytes - Click Count (0) -
android/guava/javadoc-link/j2objc-annotations/package-list
cpovirk <******@****.***> 1510351134 -0800
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Nov 10 22:31:30 GMT 2017 - 30 bytes - Click Count (0) -
guava/javadoc-link/j2objc-annotations/package-list
cpovirk <******@****.***> 1509125686 -0700
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Oct 27 17:43:17 GMT 2017 - 30 bytes - Click Count (0) -
android/guava-testlib/test/com/google/common/collect/testing/HelpersTest.java
} public void testAssertEqualInOrder() { List<?> list = asList("a", "b", "c"); assertEqualInOrder(list, list); List<?> fewer = asList("a", "b"); assertThrows(AssertionFailedError.class, () -> assertEqualInOrder(list, fewer)); assertThrows(AssertionFailedError.class, () -> assertEqualInOrder(fewer, list)); List<?> differentOrder = asList("a", "c", "b");
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 09 19:16:24 GMT 2026 - 4.4K bytes - Click Count (0) -
guava-testlib/test/com/google/common/collect/testing/HelpersTest.java
} public void testAssertEqualInOrder() { List<?> list = asList("a", "b", "c"); assertEqualInOrder(list, list); List<?> fewer = asList("a", "b"); assertThrows(AssertionFailedError.class, () -> assertEqualInOrder(list, fewer)); assertThrows(AssertionFailedError.class, () -> assertEqualInOrder(fewer, list)); List<?> differentOrder = asList("a", "c", "b");
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 09 19:16:24 GMT 2026 - 4.4K bytes - Click Count (0) -
guava/src/com/google/common/collect/CartesianList.java
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) { List<E> copy = ImmutableList.copyOf(list); if (copy.isEmpty()) { return ImmutableList.of(); } axesBuilder.add(copy); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Aug 31 13:15:26 GMT 2025 - 4.7K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/PeekingIteratorTest.java
@Override protected void verify(List<T> elements) { // verify same objects were removed from reference and target assertEquals(elements, targetList); } } private <T extends @Nullable Object> void actsLikeIteratorHelper(List<T> list) { // Check with modifiable copies of the list new PeekingIteratorTester<T>(list).test(); // Check with unmodifiable lists new IteratorTester<T>(Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Sep 23 17:50:58 GMT 2025 - 8.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsCrawlingInfoBhv.java
return doBatchInsert(new BulkList<>(list, call, entityCall), null); } public int[] batchUpdate(List<CrawlingInfo> list) { return batchUpdate(list, null, null); } public int[] batchUpdate(List<CrawlingInfo> list, RequestOptionCall<BulkRequestBuilder> call) { return batchUpdate(list, call, null); } public int[] batchUpdate(List<CrawlingInfo> list, RequestOptionCall<BulkRequestBuilder> call,
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 9.5K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/PeekingIteratorTest.java
@Override protected void verify(List<T> elements) { // verify same objects were removed from reference and target assertEquals(elements, targetList); } } private <T extends @Nullable Object> void actsLikeIteratorHelper(List<T> list) { // Check with modifiable copies of the list new PeekingIteratorTester<T>(list).test(); // Check with unmodifiable lists new IteratorTester<T>(Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Sep 23 17:50:58 GMT 2025 - 8.5K bytes - Click Count (0) -
guava-tests/test/com/google/common/reflect/TypeResolverTest.java
.where( new TypeCapture<List<T>>() {}.capture(), new TypeCapture<List<String>>() {}.capture()) .resolveType(t)); assertEquals( Types.subtypeOf(String.class), new TypeResolver() .where( new TypeCapture<List<T>>() {}.capture(), new TypeCapture<List<? extends String>>() {}.capture()) .resolveType(t));
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Dec 19 18:03:30 GMT 2024 - 9.8K bytes - Click Count (0)