- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 17 for rwhitespace (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
"word1\n" + " \n" + // whitespace line (may be treated as content) "# Another comment\n" + "word2\n"; // Write content to test file writeTestFile(content); // Reload and verify protwordsFile.reload(null); PagingList<ProtwordsItem> result = protwordsFile.selectList(0, 10); // Whitespace-only lines may be treated as entries
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 21.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java
assertNull(exception.getCause()); } @Test public void test_constructor_withWhitespaceType() { // Test constructor with whitespace in type String type = " Bearer Token "; String message = "Whitespace in token type"; InvalidAccessTokenException exception = new InvalidAccessTokenException(type, message); assertEquals(" Bearer Token ", exception.getType());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 10.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/score/LtrQueryRescorerTest.java
RescorerBuilder<?> result = ltrQueryRescorer.evaluate(params); assertNull(result); } @Test public void test_evaluate_withWhitespaceModelName() { // Test when model name contains only whitespace ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { @Override public String getLtrModelName() { return " "; } @Override
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/VirtualHostHelperTest.java
assertEquals("", basePath); basePath = virtualHostHelper.getVirtualHostBasePath(" ", new HtmlNext("/test")); assertEquals("", basePath); // StringUtil.isBlank considers whitespace as blank } @Test public void test_getVirtualHostKey() { ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
item.setNewInput(newSpecialInput); assertEquals(newSpecialInput, item.toLineString()); } @Test public void test_whitespaceHandling() { // Test with various whitespace StopwordsItem item1 = new StopwordsItem(1, " "); assertEquals(" ", item1.getInput()); assertEquals(" ", item1.toLineString()); StopwordsItem item2 = new StopwordsItem(2, "\t\n\r");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
public ExecJob logLevel(final String logLevel) { this.logLevel = logLevel; return this; } /** * Sets the log suffix for this job execution. * The suffix is trimmed and whitespace is replaced with underscores. * * @param logSuffix the suffix to append to log file names * @return this ExecJob instance for method chaining */
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 14.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/filter/CorsFilterTest.java
corsFilter.doFilter(mockRequest, mockResponse, mockFilterChain); assertTrue(mockFilterChain.wasDoFilterCalled()); assertFalse(corsHandlerFactory.wasGetCalled()); } // Test with whitespace-only Origin header @Test public void test_doFilter_whitespaceOriginHeader() throws IOException, ServletException { mockRequest.setHeader("Origin", " ");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 22.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/admin/log/AdminLogActionTest.java
assertEquals("/test.log", AdminLogAction.sanitizeFilename(" ../test.log")); assertEquals("/test.log", AdminLogAction.sanitizeFilename(".. / .. /test.log")); // Whitespace between dots - must be removed before ".." removal assertEquals("/test.log", AdminLogAction.sanitizeFilename(". ./test.log")); assertEquals("/test.log", AdminLogAction.sanitizeFilename(". . /test.log"));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 10.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java
assertNull(doc.get("content_ja")); // content field was not present } @Test public void test_getSupportedLanguage_withWhitespace() { // Test that whitespace is not trimmed (as per implementation) assertNull(languageHelper.getSupportedLanguage(" ja ")); assertNull(languageHelper.getSupportedLanguage("ja "));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 13K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java
assertEquals(emptyMessage, exception.getMessage()); assertNull(exception.getCause()); } @Test public void test_getMessage_withWhitespaceMessage() { // Test constructor with whitespace-only message String whitespaceMessage = " "; SsoProcessException exception = new SsoProcessException(whitespaceMessage); assertEquals(whitespaceMessage, exception.getMessage());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 13.8K bytes - Click Count (0)