- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 226 for manches (0.04 sec)
-
src/main/java/org/codelibs/fess/util/JvmUtil.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/jcifs/util/InputValidator.java
if (username.length() > MAX_USERNAME_LENGTH) { throw new IllegalArgumentException("Username exceeds maximum length: " + username.length()); } if (!username.isEmpty() && !VALID_USERNAME.matcher(username).matches()) { throw new IllegalArgumentException("Username contains invalid characters: " + username); } } /** * Validates domain name *
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 13.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) -
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) -
src/main/java/org/codelibs/fess/dict/DictionaryCreator.java
} /** * Checks if the given path matches this creator's pattern. * * @param path the file path to check * @return true if the path matches the pattern, false otherwise */ protected boolean isTarget(final String path) { return pattern.matcher(path).find(); } /** * Creates a new dictionary file instance for the given parameters.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbAuthenticationHolder.java
* authentication based on a given path. * * <p>This class manages a collection of {@link SmbAuthentication} objects, each associated * with a specific path prefix. When a path is provided, it iterates through the stored * authentications to find the one whose path prefix matches the beginning of the given path. * This allows for different SMB shares to use different authentication credentials.</p> *Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/RuleManagerTest.java
// Get rule after removal matched = ruleManager.getRule(responseData); assertNull(matched); // No matching rule now // Add rule4 which matches ruleManager.addRule(rule4); matched = ruleManager.getRule(responseData); assertEquals("rule4", matched.getRuleId()); } /** * Test rule replacement scenario */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 23.8K 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) -
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/helper/RelatedContentHelper.java
* Retrieves related content for a given search query. * First checks for exact term matches, then evaluates regex patterns. * For regex matches, the query placeholder is replaced with the actual query. * * @param query the search query to find related content for * @return array of related content strings, or empty array if no matches found */ public String[] getRelatedContents(final String query) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 8.2K bytes - Viewed (0)