- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for 2012 (0.01 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/UrlFilterTest.java
} /** * Test processUrl method with various URL patterns */ public void test_processUrl_basic() { String sessionId = "test-session-012"; urlFilter.init(sessionId); // Process URL should handle different URL formats urlFilter.processUrl("https://example.com/"); urlFilter.processUrl("http://test.com/path/to/page");Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 19K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformerTest.java
} public void test_normalizeUrl() { String url; url = "http://hoge/index 123.html"; assertEquals("http://hoge/index%20123.html", htmlTransformer.normalizeUrl(url)); url = "http://hoge/index.html"; assertEquals(url, htmlTransformer.normalizeUrl(url)); url = "http://hoge/index.html?a=1";Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 13.8K bytes - Viewed (0)