- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 104 for pattern1 (0.34 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
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);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 6.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java
// Pattern with single backslash (14 chars): should match String singleBackslash = "image/svg" + "\\" + "+xml"; assertEquals("Single backslash pattern should be 14 chars", 14, singleBackslash.length()); assertTrue(svgMimetype.matches(singleBackslash)); // Pattern with double backslash (15 chars): should NOT match String doubleBackslash = "image/svg" + "\\\\" + "+xml";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Feb 04 14:24:39 GMT 2026 - 17.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 92.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
} /** * Converts a GSA URL pattern into a regular expression pattern suitable for Fess. * Handles various GSA pattern formats including regexp, contains, and URL-based patterns. * * @param s the input GSA pattern string * @return a regular expression pattern string, or empty string for comments/invalid patterns */ protected String getFilterPath(final String s) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 21.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 14.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
/** * Cache for client rules mapping client names to their corresponding URL patterns. * This cache improves performance by avoiding repeated parsing of client configuration rules. * The key is the rule string, and the value is a pair containing the client name and compiled pattern. */ protected ConcurrentHashMap<String, Pair<String, Pattern>> clientRuleCache = new ConcurrentHashMap<>(); /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 11 09:47:03 GMT 2025 - 19.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/JvmUtilTest.java
System.setProperty("java.version", "11.0.1"); // Test version patterns with different separators String[] args = new String[] { "11:-Dprop=value:with:colons", "8-:-Xbootclasspath/a:/path/to/jar", "malformed11:-invalid", // Should not match pattern "11-malformed:-invalid" // Should not match pattern }; String[] result = JvmUtil.filterJvmOptions(args);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 10.6K bytes - Click Count (0) -
MIGRATION.md
- Convert URL patterns to Fess regex patterns - Set up LabelType (access control labels) if defined **Step 3: Verify Imported Configurations** After import, verify: - **Crawler > Web**: Check web crawling configurations - **Crawler > File**: Check file crawling configurations (SMB, FTP) - **System > General**: Verify URL patterns and filters **GSA Configuration Mapping**
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 06 12:40:11 GMT 2025 - 23.2K bytes - Click Count (0) -
CLAUDE.md
└── fess_indices/ # OpenSearch index mappings src/main/webapp/WEB-INF/view/ # JSP templates src/test/java/.../it/ # Integration tests (*Tests.java) ``` ## Architecture Patterns ### Action (Controller) - Hierarchy: `TypicalAction` → `FessBaseAction` → `FessAdminAction`/`FessSearchAction` - `@Execute` marks web endpoints - `@Resource` for DI
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 09:48:10 GMT 2026 - 7.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/LabelTypeHelperTest.java
assertTrue(pattern.match("/test/path")); // Should not match excluded path assertFalse(pattern.match("/exclude/path")); } @Test public void test_labelTypePattern_match_noPatterns() { LabelTypePattern pattern = new LabelTypePattern("test", null, null); // Should match everything when no patterns assertTrue(pattern.match("/any/path"));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 12.7K bytes - Click Count (0)