- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for allMatch (0.1 sec)
-
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
} } if (logger.isDebugEnabled()) { logger.debug("generator path: {}", s); } return s; }).allMatch(s -> { final boolean found = new File(s).isFile(); if (found && logger.isDebugEnabled()) { logger.debug("{} is found.", s); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java
assertFalse(result); assertEquals(1, chain1.changePasswordCallCount); assertEquals(1, chain2.changePasswordCallCount); // allMatch may short-circuit, so chain3 might not be called assertTrue(chain3.changePasswordCallCount <= 1); } // Test delete with no chains public void test_delete_noChains() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/FluentIterable.java
* fluent iterable is empty, {@code true} is returned. * * <p><b>{@code Stream} equivalent:</b> {@link Stream#allMatch} (same). */ public final boolean allMatch(Predicate<? super E> predicate) { return Iterables.all(getDelegate(), predicate); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 35.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/FluentIterable.java
* fluent iterable is empty, {@code true} is returned. * * <p><b>{@code Stream} equivalent:</b> {@link Stream#allMatch} (same). */ public final boolean allMatch(Predicate<? super E> predicate) { return Iterables.all(getDelegate(), predicate); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 34.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Iterables.java
/** * Returns {@code true} if every element in {@code iterable} satisfies the predicate. If {@code * iterable} is empty, {@code true} is returned. * * <p><b>{@code Stream} equivalent:</b> {@link Stream#allMatch}. */ public static <T extends @Nullable Object> boolean all( Iterable<T> iterable, Predicate<? super T> predicate) { return Iterators.all(iterable.iterator(), predicate); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 43.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
propMap.put(SUGGEST_SEARCH_LOG_PERMISSIONS, validPermissionList); } final List<String> list = validPermissionList; return stream(permissions).get(stream -> stream.allMatch(v -> list.contains(v))); } String getRoleSearchUserPrefix(); String getRoleSearchGuestPermissions(); default List<String> getSearchGuestRoleList() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 86.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/Iterables.java
/** * Returns {@code true} if every element in {@code iterable} satisfies the predicate. If {@code * iterable} is empty, {@code true} is returned. * * <p><b>{@code Stream} equivalent:</b> {@link Stream#allMatch}. */ public static <T extends @Nullable Object> boolean all( Iterable<T> iterable, Predicate<? super T> predicate) { return Iterators.all(iterable.iterator(), predicate); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 43.3K bytes - Viewed (0)