- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 137 for isBlank (0.04 sec)
-
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/FixProjectHealthTask.kt
val dependencies = mutableListOf<String>() errorLogFile.useLines { lines -> lines.drop(startLine).forEach { line -> if (line.isBlank() || line.startsWith(">")) return@useLines val regex = Regex("""\s*(api|implementation)\(([^)]+)\)\s*""") regex.find(line)?.let {
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Mar 03 06:57:08 UTC 2025 - 6.2K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
* @param version the version of the artifact * @return the artifact if found, null otherwise */ public Artifact getArtifact(final String name, final String version) { if (StringUtil.isBlank(name) || StringUtil.isBlank(version)) { return null; } for (final Artifact artifact : getAvailableArtifacts(ArtifactType.getType(name))) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java
includedDocUrls = fessConfig.getCrawlerDocumentHtmlDefaultIncludeSearchPatterns(); excludedDocUrls = fessConfig.getCrawlerDocumentHtmlDefaultExcludeSearchPatterns(); boost = 1.0f; if (StringUtil.isBlank(userAgent)) { userAgent = fessConfig.getUserAgentName(); } numOfThread = Constants.DEFAULT_NUM_OF_THREAD_FOR_WEB; intervalTime = Constants.DEFAULT_INTERVAL_TIME_FOR_WEB;
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/PingResponse.java
} builder.endObject(); return builder; }, XContentType.JSON)) { message = ((ByteArrayOutputStream) out).toString(Constants.UTF_8); if (StringUtil.isBlank(message)) { message = "{}"; } } catch (final IOException e) { throw new IORuntimeException(e); } } /** * Gets the status.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.4K bytes - Viewed (2) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
if (xpath == null) { xpath = fessConfig.getCrawlerDocumentHtmlCanonicalXpath(); } if (StringUtil.isBlank(xpath)) { return null; } final String canonicalUrl = getSingleNodeValue(document, xpath, node -> node); if (StringUtil.isBlank(canonicalUrl)) { return null; } return normalizeCanonicalUrl(responseData.getUrl(), canonicalUrl); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Dec 12 13:58:40 UTC 2025 - 54.6K 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 Dec 31 11:36:14 UTC 2025 - Last Modified: Wed May 28 11:34:42 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
* @throws CrawlerSystemException if data deserialization fails */ public Map<String, Object> processRequest(final CrawlingConfig crawlingConfig, final String crawlingInfoId, final String url) { if (StringUtil.isBlank(crawlingInfoId)) { throw new CrawlingAccessException("sessionId is null. Cannot access document without a valid session ID."); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/go/GoAction.java
* * @param url the URL to validate * @return true if the URL is valid for redirection, false otherwise */ protected boolean isValidRedirectUrl(final String url) { if (StringUtil.isBlank(url)) { return false; } final String lowerUrl = url.toLowerCase(); if (lowerUrl.startsWith("http://") || lowerUrl.startsWith("https://")) { return true; }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/VirtualHostHelper.java
* @param page The HTML page * @return The base path for the virtual host */ protected String getVirtualHostBasePath(final String s, final HtmlNext page) { return StringUtil.isBlank(s) ? StringUtil.EMPTY : "/" + s; } /** * Gets the virtual host key from the current request. * The key is determined by matching HTTP headers against configured virtual hosts. *Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PathMappingHelper.java
return LaRequestUtil.getOptionalRequest().map(request -> { final String userAgent = request.getHeader("user-agent"); if (StringUtil.isBlank(userAgent)) { return false; } return pathMapping.getUAMatcher(userAgent).find(); }).orElse(false); } return false; }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 9.5K bytes - Viewed (0)