- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 165 for manche (0.04 sec)
-
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/jcifs/internal/smb2/lease/DirectoryCacheEntry.java
} /** * Gets the cache scope (ALL or IMMEDIATE_CHILDREN) * @return the cache scope */ public DirectoryCacheScope getScope() { return scope; } /** * Sets the cache scope for this directory cache * @param scope the cache scope to set */ public void setScope(DirectoryCacheScope scope) { this.scope = scope; }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 11.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/RobotsTxtTest.java
// Should match the more specific directive Directive matched = robotsTxt.getMatchedDirective("GoogleBot"); assertNotNull(matched); assertEquals("GoogleBot", matched.getUserAgent()); } public void test_getMatchedDirectiveWithPartialMatch() { // Test getMatchedDirective with partial pattern match RobotsTxt robotsTxt = new RobotsTxt();Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 14.4K 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/taglib/FessFunctions.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 25.4K bytes - Viewed (1) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/RobotsTxtHelper.java
* @param pattern the pattern to match against * @param line the line to extract the value from * @return the extracted value, or null if no match */ protected String getValue(final Pattern pattern, final String line) { final Matcher m = pattern.matcher(line); if (m.matches() && m.groupCount() > 0) { return m.group(1); }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 14 12:52:01 UTC 2025 - 11.4K 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/org/codelibs/fess/helper/CrawlingConfigHelper.java
import org.dbflute.optional.OptionalEntity; import org.dbflute.optional.OptionalThing; import com.google.common.cache.Cache; import com.google.common.cache.CacheBuilder; import jakarta.annotation.PostConstruct; /** * Helper class for managing crawling configurations. * Provides functionality to store, retrieve, and manage different types of crawling configurations
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 19.5K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 29.7K bytes - Viewed (3) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
final List<Artifact> list = new ArrayList<>(); final String repoContent = getRepositoryContent(url); final Matcher matcher = Pattern.compile("href=\"[^\"]*(" + artifactType.getId() + "[a-zA-Z0-9\\-]+)/?\"").matcher(repoContent); while (matcher.find()) { final String name = matcher.group(1); if (isExcludedName(artifactType, name)) { continue; }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 24.9K bytes - Viewed (0)