- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 59 for Matches (0.1 seconds)
-
src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java
if (excludedPaths != null && excludedPaths.matcher(path).matches()) { if (logger.isDebugEnabled()) { logger.debug("Path {} matches the include/exclude path expression {} on {} of label.", path, excludedPaths, value); } return false; } if (logger.isDebugEnabled()) {
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 14.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/PrunedTag.java
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Mon Nov 24 04:23:08 GMT 2025 - 7.1K bytes - Click Count (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.Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 18.5K bytes - Click Count (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); }Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 11.4K bytes - Click Count (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) {Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 8.2K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateInitPluginTemplateVersionFile.kt
val matches: List<ResolvedComponentResult> = resolutionResult.allComponents.filter { it != resolutionResult.root } if (matches.isEmpty()) { throw GradleException("Could not locate any matches for $notation") } matches.forEach { dep -> dest[name] = (dep.id as ModuleComponentIdentifier).version } }
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Nov 24 20:45:41 GMT 2025 - 5K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperties.java
} private static boolean isOldMethod(JApiMethod jApiMethod, Map<AccessorKey, ReplacedAccessor> upgradedMethods, Pattern pattern) { String name = jApiMethod.getName(); if (!pattern.matcher(name).matches()) { return false; } return upgradedMethods.containsKey(AccessorKey.ofOldMethod(jApiMethod)); }Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 24 14:15:15 GMT 2025 - 9.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/WebConfig.java
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Mon Nov 24 02:07:40 GMT 2025 - 10.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/FileConfig.java
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Mon Nov 24 02:07:40 GMT 2025 - 11.1K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientFactory.java
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 7.3K bytes - Click Count (0)