- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 102 for pattern2 (0.1 seconds)
-
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/crawler/rule/CrawlerRuleMimeTypePatternTest.java
Pattern pattern = Pattern.compile(FS_FILE_RULE_PATTERN); assertTrue(pattern.matcher("text/html").matches()); } @Test public void test_fsFileRulePattern_lhaTypes() { Pattern pattern = Pattern.compile(FS_FILE_RULE_PATTERN); assertTrue(pattern.matcher("application/lha").matches()); assertTrue(pattern.matcher("application/x-lha").matches());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Feb 04 14:24:39 GMT 2026 - 8.7K bytes - Click Count (0) -
src/main/assemblies/extension/kibana/README.md
1. Go to kibana home [http://localhost:5601/](http://localhost:5601/). 1. Click **Management**. 1. Click **Index Patterns**. 1. Click **Create index pattern** button 1. Input "fess\_log\*" to the textbox of **index pattern**. 1. Click **Next step**. 1. Set "requestedAt" to the **Time Filter field name**. 1. Click **Create index pattern**. 1. Click **Saved Objects**. 1. Click **Import** and select "fess\_log.ndjson" to import example settings.
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Aug 12 01:26:21 GMT 2019 - 1.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java
* - Second: List of regex pattern matches (Pattern -> content template) */ protected Map<String, Pair<Map<String, String>, List<Pair<Pattern, String>>>> relatedContentMap = Collections.emptyMap(); /** * Prefix used to identify regex patterns in related content terms. * When a term starts with this prefix, it is treated as a regular expression * pattern rather than an exact match term. */
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 8.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/main/java/org/codelibs/fess/dict/DictionaryCreator.java
/** Pattern used to match file paths that this creator can handle. */ protected Pattern pattern; /** Manager for dictionary operations and lifecycle. */ @Resource protected DictionaryManager dictionaryManager; /** * Creates a new DictionaryCreator with the specified pattern. * * @param pattern the regular expression pattern to match file paths */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/PrunedTag.java
* @throws FessSystemException if the input string contains invalid tag patterns */ public static PrunedTag[] parse(final String value) { return split(value, ",").get(stream -> stream.filter(StringUtil::isNotBlank).map(v -> { final Pattern pattern = Pattern.compile("(\\w+)(\\[[^\\]]+\\])?(\\.[\\w\\-]+)?(#[\\w\\-]+)?"); final Matcher matcher = pattern.matcher(v.trim()); if (matcher.matches()) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Nov 24 04:23:08 GMT 2025 - 7.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/validation/CronExpressionValidatorTest.java
assertFalse(validator.isValid("* * * *", context)); } // Test common valid cron patterns that are likely to work @Test public void test_basicValidCronExpressions() { final ConstraintValidatorContext context = null; // Test basic patterns that should be valid String[] potentiallyValidCrons = { "0 0 * * * ?", // Every hour
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 4.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/pager/DuplicateHostPager.java
/** Search/filter parameter for duplicate host configuration ID. */ public String id; /** Search/filter parameter for regular hostname pattern. */ public String regularName; /** Search/filter parameter for duplicate hostname pattern. */ public String duplicateHostName; /** Search/filter parameter for duplicate host sort order. */ public String sortOrder;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 7.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/cors/CorsHandlerFactory.java
/** * Map of origin patterns to their corresponding CORS handlers. */ protected Map<String, CorsHandler> handerMap = new HashMap<>(); /** * Adds a CORS handler for the specified origin. * * @param origin the origin pattern (can be "*" for wildcard) * @param handler the CORS handler to associate with the origin */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 2.2K bytes - Click Count (0)