- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 108 for isBlank (0.06 sec)
-
src/main/java/org/codelibs/fess/job/PythonJob.java
final ProcessHelper processHelper = ComponentUtil.getProcessHelper(); final FessConfig fessConfig = ComponentUtil.getFessConfig(); if (StringUtil.isBlank(filename)) { throw new JobProcessingException("Python script is not specified."); } cmdList.add(fessConfig.getPythonCommandPath()); cmdList.add(getPyFilePath());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 5.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/XmlUtil.java
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 6.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/net/protocol/storage/Handler.java
final String secretKey = System.getenv().get("STORAGE_SECRET_KEY"); final String region = System.getenv().get("STORAGE_SECRET_KEY"); try { if (StringUtil.isBlank(endpoint)) { throw new IOException("endpoint is blank."); } final Builder builder = MinioClient.builder().endpoint(endpoint);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 6.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
String title = DocumentUtil.getValue(document, fessConfig.getIndexFieldTitle(), String.class); if (StringUtil.isBlank(title)) { title = DocumentUtil.getValue(document, fessConfig.getIndexFieldFilename(), String.class); if (StringUtil.isBlank(title)) { title = DocumentUtil.getValue(document, fessConfig.getIndexFieldUrl(), String.class); } }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 40.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryFieldConfig.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jul 22 04:30:56 UTC 2024 - 16K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ThemeHelper.java
} protected String getThemeName(final Artifact artifact) { final String themeName = artifact.getName().substring(ArtifactType.THEME.getId().length() + 1); if (StringUtil.isBlank(themeName)) { throw new ThemeException("Theme name is empty: " + artifact); } return themeName; } protected void closeQuietly(final Path dir) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/StringUtil.java
} /** * ブランクではないかどうか返します。 * * @param str * 文字列 * @return ブランクではなければ{@literal true} * @see #isBlank(String) */ public static boolean isNotBlank(final String str) { return !isBlank(str); } /** * charを含んでいるかどうか返します。 * * @param str * 文字列 * @param ch * char
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 21.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/form/FormScheme.java
final String loginUrl = replaceCredentials(credentials, originalLoginUrl); final String loginReqParams = replaceCredentials(credentials, getParameter(LOGIN_PARAMETERS)); if (StringUtil.isBlank(loginUrl)) { if (logger.isDebugEnabled()) { logger.debug("No login.url"); } return; } final HttpUriRequest httpRequest;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 11.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/AbstractXmlExtractor.java
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 6.5K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleKotlinDslReferencePlugin.java
String commitId = BuildEnvironmentKt.getBuildEnvironmentExtension(project).getGitCommitId().get(); if (commitId.isBlank() || commitId.toLowerCase(Locale.ROOT).contains("unknown")) { // we can't figure out the commit ID (probably this is a source distribution build), let's skip adding source links return; }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:07:24 UTC 2024 - 7.7K bytes - Viewed (0)