- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 250 for mancher (0.04 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/filter/impl/UrlFilterImpl.java
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 9.2K bytes - Viewed (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlFilterServiceTest.java
// Verify patterns work correctly assertTrue(includePatterns.get(0).matcher("http://example.com/page").matches()); assertTrue(excludePatterns.get(0).matcher("http://example.com/admin/users").matches()); assertFalse(excludePatterns.get(0).matcher("http://example.com/page").matches()); urlFilterService.delete(sessionId); }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/jcifs/util/InputValidator.java
throw new IllegalArgumentException("Path exceeds maximum length: " + path.length()); } if (PATH_TRAVERSAL.matcher(path).find()) { throw new IllegalArgumentException("Path contains directory traversal sequences: " + path); } if (INVALID_PATH_CHARS.matcher(path).find()) { throw new IllegalArgumentException("Path contains invalid characters: " + path); } }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 13.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RobotsTxt.java
return length; } /** * Checks if the given path matches this pattern. * @param path the path to check * @return true if the path matches, false otherwise */ public boolean matches(final String path) { return regexPattern.matcher(path).find(); } /** * Gets the original pattern string.Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 18.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PathMappingHelper.java
} /** * Creates a path matcher function for path mapping. * * @param matcher the regex matcher * @param replacement the replacement string * @return the path matcher function */ public BiFunction<String, Matcher, String> createPathMatcher(final Matcher matcher, final String replacement) { // for PathMappingRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
} } } /** * Extracts anchor URLs from the given object and converts them to RequestData objects. * The input object can be either a single string or a list of strings representing URLs. * * @param obj the object containing anchor URLs (String or List of Strings) * @return a set of RequestData objects for the anchor URLs, or null if no valid URLs found */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 19.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/WebApiManagerFactory.java
} /** * Gets the appropriate web API manager for the given request. * * @param request The HTTP servlet request * @return The matching web API manager, or null if no match found */ public WebApiManager get(final HttpServletRequest request) { for (final WebApiManager webApiManager : webApiManagers) { if (webApiManager.matches(request)) { return webApiManager;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientFactory.java
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 7.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/impl/RuleManagerImpl.java
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/KuromojiCSVUtil.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 3.9K bytes - Viewed (0)