- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 390 for com (0.01 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerThreadTest.java
method.invoke(crawlerThread, "http://example.com/child", "http://example.com/", 1.0f, 2); verify(urlQueueService, times(1)).offerAll(anyString(), any()); } /** * Test storeChildUrl with depth exceeding maxDepth. */ public void test_storeChildUrl_exceedsMaxDepth() throws Exception { when(urlFilter.match("http://example.com/child")).thenReturn(true);
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 18.3K bytes - Viewed (0) -
fess-crawler/src/test/resources/sitemaps/sitemap1.txt
http://www.example.com/ http://www.example.com/catalog?item=12&desc=vacation_hawaii http://www.example.com/catalog?item=73&desc=vacation_new_zealand http://www.example.com/catalog?item=74&desc=vacation_newfoundland
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Oct 11 02:16:55 UTC 2015 - 273 bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/ResponseDataTest.java
child1.setUrl("https://example.com/child1"); data.addChildUrl(child1); // Verify all properties assertEquals("https://example.com/page", data.getUrl()); assertEquals(200, data.getHttpStatusCode()); assertEquals("GET", data.getMethod()); assertEquals("https://example.com", data.getParentUrl()); assertEquals("session123", data.getSessionId());
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 14.3K bytes - Viewed (0) -
fess-crawler/src/test/resources/sitemaps/sitemap1.xml.gz
sitemap1.xml http://www.example.com/ 2005-01-01 monthly 0.8 http://www.example.com/catalog?item=12&desc=vacation_hawaii weekly http://www.example.com/catalog?item=73&desc=vacation_new_zealand 2004-12-23 weekly http://www.example.com/catalog?item=74&desc=vacation_newfoundland 2004-12-23T18:00:15+00:00 0.3 http://www.example.com/catalog?item=83&desc=vacation_usa 2004-11-23...
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Oct 11 02:16:55 UTC 2015 - 332 bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/http/HcHttpClientTest.java
assertEquals("http://example.com:8080/path/file", HcHttpClient.constructRedirectLocation("http://example.com:8080/path/", "file")); assertEquals("http://example.com/%E3%83%86%E3%82%B9%E3%83%88", HcHttpClient.constructRedirectLocation("http://example.com/", "ใในใ")); assertEquals("http://example.com/hello%20world", HcHttpClient.constructRedirectLocation("http://example.com/", "hello world"));
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 11.7K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/PdfExtractorTest.java
url = "http://test.com/hoge1.pdf"; params.put(ExtractData.URL, url); assertEquals("password", pdfExtractor.getPassword(params)); url = "http://test.com/hoge1.pdf"; params.put(ExtractData.URL, url); assertEquals("password", pdfExtractor.getPassword(params)); url = "http://test.com/fuga.pdf"; params.put(ExtractData.URL, url);Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 7.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/processor/impl/SitemapsResponseProcessorTest.java
SitemapUrl sitemap1 = new SitemapUrl(); sitemap1.setLoc("https://example.com/page1"); SitemapUrl sitemap2 = new SitemapUrl(); sitemap2.setLoc("https://example.com/page2"); SitemapUrl sitemap3 = new SitemapUrl(); sitemap3.setLoc("https://example.com/page3"); SitemapSet sitemapSet = new SitemapSet(); sitemapSet.addSitemap(sitemap1);Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 12K bytes - Viewed (0) -
fess-crawler/src/test/resources/sitemaps/sitemap1.xml
<url> <loc>http://www.example.com/</loc> <lastmod>2005-01-01</lastmod> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> <url> <loc>http://www.example.com/catalog?item=12&desc=vacation_hawaii</loc> <changefreq>weekly</changefreq> </url> <url> <loc>http://www.example.com/catalog?item=73&desc=vacation_new_zealand</loc>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Oct 11 02:16:55 UTC 2015 - 915 bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/AccessResultImplTest.java
String url = "https://example.com/page"; result.setUrl(url); assertEquals(url, result.getUrl()); } public void test_parentUrlGetterSetter() { // Test parent URL getter/setter AccessResultImpl<Long> result = new AccessResultImpl<>(); String parentUrl = "https://example.com"; result.setParentUrl(parentUrl);Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 13.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/service/impl/UrlFilterServiceImplTest.java
service.addExcludeUrlFilter(session2, "https://session2.com/private/.*"); // Verify that dataHelper was called with correct session IDs verify(dataHelper).addIncludeUrlPattern(session1, "https://session1.com/.*"); verify(dataHelper).addIncludeUrlPattern(session2, "https://session2.com/.*"); verify(dataHelper).addExcludeUrlPattern(session1, "https://session1.com/admin/.*");
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 11.1K bytes - Viewed (0)