- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for Unparsed (0.06 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java
} /** * Gets the parsed sitemap set. * @return the sitemap set */ public SitemapSet getSitemapSet() { return sitemapSet; } } /** * Parses an XML sitemap index from the given input stream. * @param in the input stream to parse * @return the parsed sitemap set */Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/RobotsTxtHelper.java
// Default constructor } /** * Parses a robots.txt file from the given input stream using UTF-8 encoding. * @param stream the input stream to parse * @return the parsed RobotsTxt object, or null if disabled */ public RobotsTxt parse(final InputStream stream) { return parse(stream, Constants.UTF_8); } /**Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 7.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/XmlUtil.java
/** * Parses the XML content from the provided {@link AccessResultData} and returns a map of the data. * * @param accessResultData the data containing the XML content to be parsed * @return a map containing the parsed data from the XML content * @throws CrawlerSystemException if an error occurs while parsing the XML content */Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 9.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PasswordBasedExtractor.java
/** Map of regex patterns to passwords for static password configuration. */ protected Map<Pattern, String> passwordMap = new HashMap<>(); /** Cache for parsed password configurations from extraction parameters. */ private final Map<String, List<Pair<Pattern, String>>> configPasswordMap = new ConcurrentHashMap<>(); /** * Creates a new PasswordBasedExtractor instance.Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 5.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/entity/SuggestItemTest.java
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 16.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/form/FormScheme.java
* Parses request parameters from a string. * @param params The parameter string. * @param paramList Additional parameters. * @param encoding The encoding. * @return The HttpEntity containing the parsed parameters. */ protected HttpEntity parseRequestParameters(final String params, final List<Pair<String, String>> paramList, final String encoding) { try {Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14.3K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java
return id.substring(0, ID_MAX_LENGTH); } return id; } /** * Parses the given query string and returns an array of keywords. * * @param q the query string to be parsed * @param field the field to be used for keyword extraction
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 17.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
// NOP } return encoding; } /** * Parses the charset from the content string. * * @param content the content to parse * @return the parsed charset name, or null if not found */ protected String parseCharset(final String content) { final Pattern pattern = Pattern.compile("; *charset *= *([a-zA-Z0-9\\-_]+)", Pattern.CASE_INSENSITIVE);Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 28.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java
return url; } return url.replaceAll("/+$", ""); } /** * Constructs a complete FTP URL using the original path from the parsed URI. * * @return The complete FTP URL */ public String toUrl() { return toUrl(uri.getPath()); } /**Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 39.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java
} /** * Parses the last modified date from a string value. * * @param value The date string to parse * @return The parsed date, or null if parsing fails */ protected Date parseLastModifiedDate(final String value) { final SimpleDateFormat sdf = new SimpleDateFormat("EEE, d MMM yyyy HH:mm:ss Z", Locale.ENGLISH); try {Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 52.2K bytes - Viewed (0)