- Sort Score
- Num 10 results
- Language All
Results 1 - 7 of 7 for pattern1 (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
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/resources/fess_config.properties
crawler.document.html.default.lang= # Patterns to include for HTML index processing. crawler.document.html.default.include.index.patterns= # Patterns to exclude for HTML index processing. crawler.document.html.default.exclude.index.patterns=(?i).*(css|js|jpeg|jpg|gif|png|bmp|wmv|xml|ico|exe) # Patterns to include for HTML search processing. crawler.document.html.default.include.search.patterns= # Patterns to exclude for HTML search processing.
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 59.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
} return getQuerySet().map(querySet -> { final String pattern = querySet.stream().map(LaFunctions::h).map(Pattern::quote).collect(Collectors.joining("|")); if (StringUtil.isBlank(pattern)) { return null; } final Matcher matcher = Pattern.compile(pattern, Pattern.CASE_INSENSITIVE | Pattern.UNICODE_CASE).matcher(value);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 52.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatClient.java
return ""; } return suffix.substring(0, maxSuffixLength); } private static final int MAX_QUERY_LENGTH = 1000; private static final Pattern DANGEROUS_QUERY_PATTERN = Pattern.compile("\\*:\\*"); /** * Searches documents using a Fess query. * * @param query the Fess query string * @return the list of search result documents */
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 56.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
* * @param ldapUser the LDAP user to retrieve roles for * @param bindDn the bind DN for LDAP connection * @param accountFilter the account filter pattern * @param groupFilter the group filter pattern * @param lazyLoading the lazy loading consumer for roles * @return an array of role names */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 02 08:06:20 GMT 2026 - 85.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java
@Override public String getIndexConfigIndex() { return "fess_config"; } }); // Verify that the index name pattern uses config prefix correctly final String indexName = coordinatorHelper.getIndexName(); assertTrue(indexName.endsWith(".coordinator")); assertTrue(indexName.startsWith("fess_config")); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 58.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java
final String sentPrompt = client.getLastChatPrompt(); assertFalse(sentPrompt.contains("{{conversationHistory}}")); } // ========== History content mode pattern tests ========== // These test the different history shapes that extractHistory() produces // depending on rag.chat.history.assistant.content mode (full, source_titles, // source_titles_and_urls, truncated, none).
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 07:04:54 GMT 2026 - 53K bytes - Click Count (0)