- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 162 for isNotBlank (0.08 sec)
-
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
if (fessConfig.isWebApiPopularWord()) { final List<String> tagList = new ArrayList<>(); final String key = ComponentUtil.getVirtualHostHelper().getVirtualHostKey(); if (StringUtil.isNotBlank(key)) { tagList.add(key); } runtime.registerData("popularWords", popularWordHelper.getWordList(SearchRequestType.SEARCH, null,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java
if (b == '\n' || b == '\r' || buf.size() >= MAX_LEN) { try { final String msg = buf.toString(Constants.UTF_8); if (StringUtil.isNotBlank(msg)) { if (logger.isTraceEnabled()) { logger.trace(msg); } else if (logger.isDebugEnabled()) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 23K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
if (form.doc != null) { docId = (String) form.doc.get(fessConfig.getIndexFieldDocId()); } else { docId = null; } if (StringUtil.isNotBlank(docId)) { return searchEngineClient.getDocument(fessConfig.getIndexDocumentUpdateIndex(), builder -> { builder.setQuery(QueryBuilders.termQuery(fessConfig.getIndexFieldDocId(), docId));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.1K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
if (SpnegoHttpFilter.Constants.LOGGER_LEVEL.equals(name)) { final String logLevel = getProperty(SPNEGO_LOGGER_LEVEL, StringUtil.EMPTY); if (StringUtil.isNotBlank(logLevel)) { return logLevel; } if (logger.isDebugEnabled()) { return "3"; } if (logger.isInfoEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 17.2K bytes - Viewed (3) -
src/main/java/org/codelibs/core/lang/StringUtil.java
* * @param str * the string to check * @return {@literal true} if the string is not blank * @see #isBlank(String) */ public static boolean isNotBlank(final String str) { return !isBlank(str); } /** * Returns true if the string contains the specified character. * * @param str * the string to check
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 21.9K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java
*/ public FesenClient() { address = System.getProperty(HTTP_ADDRESS, "localhost:9200").trim(); final String targets = System.getProperty(TARGET_INDICES); if (StringUtil.isNotBlank(targets)) { targetIndices = Arrays.stream(targets.split(",")).map(String::trim).toArray(n -> new String[n]); } } /** * Sets the address of the OpenSearch instance.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Aug 31 05:32:52 UTC 2025 - 25.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
availableSearcherNameSet = Collections.emptySet(); } else { availableSearcherNameSet = StreamUtil.split(value, ",") .get(stream -> stream.map(String::trim).filter(StringUtil::isNotBlank).collect(Collectors.toUnmodifiableSet())); } if (logger.isDebugEnabled()) { logger.debug("availableSearcherNameSet={}", availableSearcherNameSet); } } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.7K bytes - Viewed (1) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java
} } } parent = parent.getParentNode(); } } if (StringUtil.isNotBlank(namespace)) { return namespace; } return "http://crawler.codelibs.org/namespace/" + prefix; } @Override
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 23.9K bytes - Viewed (0)