- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for BOUNDARY (1.74 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/CharUtilTest.java
assertTrue("Character '" + c + "' should be a valid URL character", CharUtil.isUrlChar(c)); } } public void test_isUrlChar_boundaryChars() { // Test boundary characters for ranges assertTrue(CharUtil.isUrlChar('a')); // first lowercase assertTrue(CharUtil.isUrlChar('z')); // last lowercase assertTrue(CharUtil.isUrlChar('A')); // first uppercase
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 5.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/EXTRACTOR_TESTS_README.md
1. **Isolation**: Each test is independent and doesn't affect others 2. **Clarity**: Test names clearly describe what is being tested 3. **Coverage**: Both success and failure paths are tested 4. **Edge Cases**: Null, empty, and boundary conditions are covered 5. **Resources**: Test resources are properly managed and cleaned up ## Contributing When adding new tests:
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Wed Nov 19 08:55:01 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/resources/fess_config.properties
query.highlight.tag.pre=<strong> # Tag to use after highlighted text. query.highlight.tag.post=</strong> # Boundary characters for query highlighting. query.highlight.boundary.chars=u0009u000Au0013u0020 # Maximum scan for query highlight boundaries. query.highlight.boundary.max.scan=20 # Scanner type for query highlight boundaries. query.highlight.boundary.scanner=chars # Encoder type for query highlighting. query.highlight.encoder=default
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 54.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
String QUERY_HIGHLIGHT_BOUNDARY_CHARS = "query.highlight.boundary.chars"; /** The key of the configuration. e.g. 20 */ String QUERY_HIGHLIGHT_BOUNDARY_MAX_SCAN = "query.highlight.boundary.max.scan"; /** The key of the configuration. e.g. chars */ String QUERY_HIGHLIGHT_BOUNDARY_SCANNER = "query.highlight.boundary.scanner"; /** The key of the configuration. e.g. default */
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 525.7K bytes - Viewed (2) -
src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java
List<TermQuery> queryList = SuggestUtil.getTermQueryList(null, fields); assertNotNull(queryList); assertEquals(0, queryList.size()); } // Additional tests for createSuggestTextId boundary cases @Test public void testCreateSuggestTextIdBoundaryExactly445() { // Create text that encodes to exactly 445 characters
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 26.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
return escapeHighlight(text); } } return StringUtil.EMPTY; } /** * Escapes HTML and applies highlighting to text. * Handles boundary position detection if enabled. * * @param text the text to process * @return the escaped and highlighted text */ protected String escapeHighlight(final String text) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 52.6K bytes - Viewed (0)