- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 27 for normalizes (0.05 sec)
-
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
* Truncates and normalizes content to create a summary suitable for display. * * @param responseData the response data from crawling (not currently used) * @param content the content to create a digest from * @param dataMap additional data map (not currently used) * @param maxWidth the maximum width of the digest * @return the abbreviated and normalized digest, or empty string if content is nullRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/impl/MimeTypeHelperImpl.java
throw new MimeTypeException("Could not detect a content type.", e); } } /** * Normalizes the filename by replacing special characters. * @param filename The filename to normalize. * @return The normalized filename. */ protected String normalizeFilename(final String filename) { if (StringUtil.isBlank(filename)) { return filename;
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 6.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java
this.spaceChars = spaceChars; return this; } } /** * Normalizes the text from the given Reader. * * @param reader the Reader from which to read the text to be normalized * @return a TextNormalizeContext containing the normalized text */ public static TextNormalizeContext normalizeText(final Reader reader) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 12K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
return buf.toString(); } catch (final UnsupportedEncodingException e) { return path; } } /** * Normalizes a configuration path. * * @param path The path to normalize. * @return The normalized path. */ public String normalizeConfigPath(final String path) { if (StringUtil.isBlank(path)) { return StringUtils.EMPTY;
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 08:30:43 UTC 2025 - 36.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
} return normalizeEncoding(encoding); } /** * Normalizes the encoding name using the encoding helper. * * @param encoding the encoding name to normalize * @return the normalized encoding name */ protected String normalizeEncoding(final String encoding) { try {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 29 07:42:33 UTC 2025 - 30.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
} return normalizeCanonicalUrl(responseData.getUrl(), canonicalUrl); } /** * Normalizes the canonical URL relative to the base URL. * * @param baseUrl the base URL * @param canonicalUrl the canonical URL to normalize * @return the normalized canonical URL */ protected String normalizeCanonicalUrl(final String baseUrl, final String canonicalUrl) { try {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Dec 12 13:58:40 UTC 2025 - 54.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java
} } /** * Normalizes the URL string by cleaning up multiple slashes and resolving relative paths. * This method ensures the URL is in a consistent format for FTP operations. * * @param s The URL string to normalize * @return The normalized URL string */ protected String normalize(final String s) { if (s == null) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 40K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
return ComponentUtil.getSearchEngineClient() .deleteByQuery(ComponentUtil.getFessConfig().getIndexDocumentUpdateIndex(), queryContext.getQueryBuilder()); } /** * Extracts and normalizes language preferences from request parameters or browser locale. * * This method prioritizes explicit language parameters over browser locale settings * and handles special cases like "all languages" selection.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 36.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
sb.append(curChar); } } return sb.toString(); } /** * Normalizes a permission name based on configuration settings. * * @param name the permission name to normalize * @return the normalized permission name */ public String normalizePermissionName(final String name) { if (fessConfig.isLdapLowercasePermissionName()) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 86.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java
this.readingConverter = readingConverter; return this; } /** * Sets the normalizer. * @param normalizer The normalizer. * @return This SuggestIndexer instance. */ public SuggestIndexer setNormalizer(final Normalizer normalizer) { this.normalizer = normalizer; return this; } /** * Sets the analyzer. * @param analyzer The analyzer.Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 34.4K bytes - Viewed (0)