- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 29 for rwhitespace (0.06 seconds)
-
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/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessListedClassificationProviderTest.java
assertProvideThrowsException("Test'Classification'"); } @Test public void test_provide_withWhitespace() { // Test classification names with whitespace assertProvideThrowsException(" "); assertProvideThrowsException(" "); assertProvideThrowsException("\t"); assertProvideThrowsException("\n"); assertProvideThrowsException("\r");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 7.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
} return false; } /** * Checks if the password contains at least one special character. * A special character is defined as any character that is not a letter, digit, or whitespace. * * @param password the password to check * @return true if the password contains a special character, false otherwise */ protected boolean containsSpecialChar(final String password) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 43.2K 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/crawler/FessCrawlerThreadTest.java
assertNull(result, "getAnchorSet should return null for blank string"); result = crawlerThread.getAnchorSet(" "); assertNull(result, "getAnchorSet should return null for whitespace string"); } /** * Test getAnchorSet with list of URLs */ @Test public void test_getAnchorSet_withList() { FessCrawlerThread crawlerThread = new FessCrawlerThread();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 9.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java
item.setNewInput(newSpecialInput); assertEquals(newSpecialInput, item.toLineString()); } @Test public void test_whitespaceHandling() { // Test with various whitespace scenarios ProtwordsItem item1 = new ProtwordsItem(1, " word "); assertEquals(" word ", item1.getInput()); assertEquals(" word ", item1.toLineString());
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/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/script/ScriptEngineFactoryTest.java
ScriptEngine retrieved = scriptEngineFactory.getScriptEngine("test-engine.v1"); assertNotNull(retrieved); assertEquals(engine, retrieved); } // Test add with whitespace in name @Test public void test_add_whitespaceInName() { TestScriptEngine engine = new TestScriptEngine(); scriptEngineFactory.add(" test ", engine);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12.8K 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)