- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 61 for skipped (0.21 sec)
-
src/test/java/org/codelibs/fess/job/PurgeLogJobTest.java
assertFalse(deleteUserInfoCalled[0]); // Assert result contains skip messages assertTrue(result.contains("Skipped to purge search logs")); assertTrue(result.contains("Skipped to purge job logs")); assertTrue(result.contains("Skipped to purge user info logs")); } // Test crawlingInfoService exception handling public void test_execute_crawlingInfoException() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
accessResultList.add(accessResult); if (accessResult.getHttpStatusCode() != 200) { // invalid page if (logger.isDebugEnabled()) { logger.debug("Skipped. The response code is {}.", accessResult.getHttpStatusCode()); } continue; } final long startTime = systemHelper.getCurrentTimeAsLong();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.7K bytes - Viewed (0) -
android/guava/src/com/google/common/net/InternetDomainName.java
* ("Internationalizing Domain Names in Applications") is skipped. * * <p>The following two code snippets are equivalent: * * {@snippet : * domainName = InternetDomainName.isValid(name) * ? InternetDomainName.from(name) * : DEFAULT_DOMAIN; * } * * {@snippet : * try { * domainName = InternetDomainName.from(name);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/SuggestCreator.java
} catch (final ContainerNotAvailableException e) { if (logger.isDebugEnabled()) { logger.debug("SuggestCreator is stopped.", e); } else if (logger.isInfoEnabled()) { logger.info("SuggestCreator is stopped."); } exitCode = Constants.EXIT_FAIL; } catch (final Throwable t) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
final FessConfig fessConfig = ComponentUtil.getFessConfig(); if (searchLogQueue.size() > fessConfig.getLoggingSearchMaxQueueSizeAsInteger()) { logger.warn("[{}] The search log queue size is too large. Skipped the search log: {}", queryId, query); return; } final RoleQueryHelper roleQueryHelper = ComponentUtil.getRoleQueryHelper();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Iterables.java
* * <p>The returned iterable's iterator supports {@code remove()} if the iterator of the underlying * iterable supports it. Note that it is <i>not</i> possible to delete the last skipped element by * immediately calling {@code remove()} on that iterator, as the {@code Iterator} contract states * that a call to {@code remove()} before a call to {@code next()} will throw an {@link * IllegalStateException}.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 43.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/Iterables.java
* * <p>The returned iterable's iterator supports {@code remove()} if the iterator of the underlying * iterable supports it. Note that it is <i>not</i> possible to delete the last skipped element by * immediately calling {@code remove()} on that iterator, as the {@code Iterator} contract states * that a call to {@code remove()} before a call to {@code next()} will throw an {@link * IllegalStateException}.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 43.3K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/ClassSanityTester.java
* </ul> * <li>If there is no non-private constructor or non-private static factory method declared by * {@code cls}, instance methods are skipped for nulls test. * <li>Nulls test is not performed on method return values unless the method is a non-private * static factory method whose return type is {@code cls} or {@code cls}'s subtype. * </ul> */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 32.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/FluentIterable.java
* as a {@code List}: * * {@snippet : * ImmutableList<String> results = * FluentIterable.from(database.getClientList()) * .filter(Client::isActiveInLastMonth) * .transform(Object::toString) * .limit(10) * .toList(); * } * * The approximate stream equivalent is: * * {@snippet : * List<String> results = * database.getClientList()
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
* as a {@code List}: * * {@snippet : * ImmutableList<String> results = * FluentIterable.from(database.getClientList()) * .filter(Client::isActiveInLastMonth) * .transform(Object::toString) * .limit(10) * .toList(); * } * * The approximate stream equivalent is: * * {@snippet : * List<String> results = * database.getClientList()
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 34.8K bytes - Viewed (0)