- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 108 for isBlank (0.1 sec)
-
src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java
init(); } final String virtualHostKey = ComponentUtil.getVirtualHostHelper().getVirtualHostKey(); final List<LabelTypeItem> labelList; if (StringUtil.isBlank(virtualHostKey)) { labelList = labelTypeItemList.stream().filter(item -> matchLocale(requestLocale, item.getLocale())).collect(Collectors.toList()); } else {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 11.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/search/SearchAction.java
if (resultsPerPage instanceof Integer) { form.num = (Integer) resultsPerPage; } } } if (StringUtil.isBlank(form.q) && form.fields.isEmpty() && !form.hasConditionQuery()) { // redirect to index page form.q = null; return redirectToRoot(); } try {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 12.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java
writeHeaders(response); final String responseContentType = curlResponse.getHeaderValue("Content-Type"); if (StringUtil.isBlank(responseContentType)) { response.setHeader("Content-Type", "application/json"); } else { response.setHeader("Content-Type", responseContentType); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Aug 15 08:29:24 UTC 2024 - 11.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
if (config == null) { return OptionalThing.empty(); } final String pipeline = config.getConfigParameterMap(ConfigName.CONFIG).get(Config.PIPELINE); if (StringUtil.isBlank(pipeline)) { return OptionalThing.empty(); } return OptionalThing.of(pipeline); } public void refresh() { crawlingConfigCache.invalidateAll(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 11.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java
if (StringUtil.isNotBlank(fessConfig.getIndexDictionaryPrefix())) { String dictionaryPath = System.getProperty("fess.dictionary.path", StringUtil.EMPTY); if (StringUtil.isBlank(dictionaryPath)) { System.setProperty("fess.dictionary.path", fessConfig.getIndexDictionaryPrefix() + "/"); } else { if (!dictionaryPath.endsWith("/")) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Oct 20 02:08:03 UTC 2024 - 86.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 14.6K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueService.java
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 13.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java
} } protected List<String> getDefaultGroupList() { final String value = ComponentUtil.getFessConfig().getSystemProperty("aad.default.groups"); if (StringUtil.isBlank(value)) { return Collections.emptyList(); } return split(value, ",").get(stream -> stream.filter(StringUtil::isNotBlank).map(String::trim).collect(Collectors.toList())); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 28.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java
}, this::asListHtml); } } protected void verifyPassword(final CreateForm form, final VaErrorHook validationErrorLambda) { if (form.crudMode == CrudMode.CREATE && StringUtil.isBlank(form.password)) { resetPassword(form); throwValidationError(messages -> { messages.addErrorsBlankPassword("password"); }, validationErrorLambda); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 15.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java
return name.substring(pos + 1); } return name; } private void executeCommand(final File inputFile, final File outputFile) { if (StringUtil.isBlank(command)) { throw new CrawlerSystemException("command is empty."); } final Map<String, String> params = new HashMap<>(); params.put("$INPUT_FILE", inputFile.getAbsolutePath());
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 13.6K bytes - Viewed (0)