- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 298 for pattern1 (0.04 sec)
-
src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkTest.java
@Test @DisplayName("Should handle special offset patterns") void testSpecialOffsetPatterns() { // Given - alternating bit pattern long pattern1 = 0xAAAAAAAAAAAAAAAAL; long pattern2 = 0x5555555555555555L; int pattern3 = 0xDEADBEEF; SrvCopychunk chunk = new SrvCopychunk(pattern1, pattern2, pattern3); byte[] buffer = new byte[EXPECTED_SIZE];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java
emptyGenerator = new EmptyGenerator(); // Test adding conditions - this should work without container emptyGenerator.addCondition("field1", "pattern1"); emptyGenerator.addCondition("field1", "pattern2"); emptyGenerator.addCondition("field2", "pattern.*"); // We can't test isTarget properly without container, // but we can verify conditions are added assertNotNull(emptyGenerator);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/MemoryDataHelper.java
/** Map of session IDs to include URL patterns for filtering URLs. */ protected volatile Map<String, List<Pattern>> includeUrlPatternMap = new HashMap<>(); /** Map of session IDs to exclude URL patterns for filtering URLs. */ protected volatile Map<String, List<Pattern>> excludeUrlPatternMap = new HashMap<>(); /** * Creates a new MemoryDataHelper instance.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 8.1K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlFilterService.java
} /** * Gets the list of include URL patterns for the specified session. * * @param sessionId The session ID. * @return The list of compiled include patterns. * @throws CrawlerSystemException if the patterns cannot be loaded. */ @Override public List<Pattern> getIncludeUrlPatternList(final String sessionId) { try {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 9.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientFactory.java
/** * A factory class for managing and creating crawler clients based on URL patterns. * This class implements AutoCloseable to properly handle resource cleanup. * * <p>The factory maintains a map of regular expression patterns to crawler clients, * allowing for URL-based client selection. Clients can be added with specific patterns * and optionally at specific positions in the processing order.</p> *
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 7K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/UrlFilterTest.java
String sessionId = "test-session-024"; urlFilter.init(sessionId); // Test empty pattern urlFilter.addInclude(""); urlFilter.addExclude(""); // Test single character pattern urlFilter.addInclude("."); urlFilter.addExclude("*"); // Test patterns with only special characters urlFilter.addInclude("^$"); urlFilter.addExclude(".*");
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 19K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/filter/impl/UrlFilterImpl.java
final List<Pattern> includeList = getUrlFilterService().getIncludeUrlPatternList(sessionId); final List<Pattern> excludeList = getUrlFilterService().getExcludeUrlPatternList(sessionId); if (!includeList.isEmpty()) { boolean match = false; for (final Pattern pattern : includeList) { final Matcher matcher = pattern.matcher(url);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 9.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/impl/RegexRule.java
* @param regex the regular expression pattern */ public void addRule(final String key, final String regex) { regexMap.put(key, Pattern.compile(regex)); } /** * Adds a compiled regular expression rule for the specified field. * @param key the field name to match against * @param pattern the compiled regular expression pattern */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/PathMatcherFactory.java
* <p> * Pattern syntax supports: * <ul> * <li>Standard glob patterns with {@code *}, {@code ?}, and {@code **} wildcards</li> * <li>Explicit syntax prefixes like {@code "glob:"} or {@code "regex:"}</li> * <li>Maven 3 compatible behavior for patterns without explicit syntax</li> * <li>Default exclusion patterns for SCM files when requested</li> * </ul> * * @since 4.0.0 * @see PathMatcher */ @Experimental
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Jul 21 19:37:56 UTC 2025 - 7.5K 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<>(); /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 5.1K bytes - Viewed (0)