- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 161 for orElse (0.04 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/accesstoken/AdminAccesstokenAction.java
public HtmlResponse list(final OptionalThing<Integer> pageNumber, final SearchForm form) { pageNumber.ifPresent(num -> { accessTokenPager.setCurrentPageNumber(pageNumber.get()); }).orElse(() -> { accessTokenPager.setCurrentPageNumber(0); }); return asHtml(path_AdminAccesstoken_AdminAccesstokenJsp).renderWith(data -> { searchPaging(data, form); }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 16.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/KuromojiService.java
kuromojiPager.setPageNumberList(kuromojiList.createPageNumberList()); return (List<KuromojiItem>) kuromojiList; }).orElse(Collections.emptyList()); } /** * Get a Kuromoji file. * * @param dictId The dictionary ID. * @return An optional entity of the Kuromoji file. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java
validate(form, messages -> {}, this::asDictIndexHtml); pageNumber.ifPresent(num -> { synonymPager.setCurrentPageNumber(pageNumber.get()); }).orElse(() -> { synonymPager.setCurrentPageNumber(0); }); return asHtml(path_AdminDictSynonym_AdminDictSynonymJsp).renderWith(data -> { searchPaging(data, form); }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.7K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/app/web/go/GoAction.java
doc = searchHelper .getDocumentByDocId(form.docId, new String[] { fessConfig.getIndexFieldUrl(), fessConfig.getIndexFieldConfigId() }, getUserBean()) .orElse(null); } catch (final Exception e) { logger.warn("Failed to request: {}", form.docId, e); } if (doc == null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FavoriteLogService.java
if (fessConfig.isLoggingSearchUseLogfile()) { ComponentUtil.getSearchLogHelper().writeSearchLogEvent(favoriteLog); } return true; }).orElse(false); } /** * Retrieves a list of URLs that are in the user's favorites from the provided URL list. * This method filters the input URL list to return only those URLs that the specified user
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/labeltype/AdminLabeltypeAction.java
public HtmlResponse list(final OptionalThing<Integer> pageNumber, final SearchForm form) { pageNumber.ifPresent(num -> { labelTypePager.setCurrentPageNumber(pageNumber.get()); }).orElse(() -> { labelTypePager.setCurrentPageNumber(0); }); return asHtml(path_AdminLabeltype_AdminLabeltypeJsp).renderWith(data -> { searchPaging(data, form); }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ElevateWordService.java
cb.query().setPermissions_InScope(stream(permissions).get(stream -> stream.collect(Collectors.toList()))); } }).orElse(null); final String reading = getValue(list, 1); final String boost = getValue(list, 4); final long now = ComponentUtil.getSystemHelper().getCurrentTimeAsLong();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTimingAttackTest.java
if (!timings.isEmpty()) { double avgTime = timings.stream().mapToLong(Long::longValue).average().orElse(0.0); long maxTime = timings.stream().mapToLong(Long::longValue).max().orElse(0L); long minTime = timings.stream().mapToLong(Long::longValue).min().orElse(0L); double variance = (maxTime - minTime) / avgTime;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/StopwordsService.java
stopwordsPager.setPageNumberList(stopwordsList.createPageNumberList()); return (List<StopwordsItem>) stopwordsList; }).orElse(Collections.emptyList()); } /** * Retrieves a stopwords file for a given dictionary ID. * * @param dictId The ID of the dictionary.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/SynonymService.java
synonymPager.setPageNumberList(synonymList.createPageNumberList()); return (List<SynonymItem>) synonymList; }).orElse(Collections.emptyList()); } /** * Retrieves a synonym file for a given dictionary ID. * * @param dictId The ID of the dictionary.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.5K bytes - Viewed (0)