- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 46 for Schily (0.03 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpClientTest.java
assertEquals(1, urlSet.size()); String childUrl = urlSet.iterator().next().getUrl(); assertTrue("Child URL should be properly formed", childUrl.contains("dir1/test3.txt")); assertTrue("Child URL should contain 'child' not 'chile'", childUrl.matches(".*dir1/test3\\.txt")); } } finally { if (server != null) { server.stop();
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 21.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResultData.java
this.data = data; } /** * Add a child URL. * @param url the request data to add to the child URL set */ public void addUrl(final RequestData url) { childUrlSet.add(url); } /** * Add child URLs. * @param c the collection of request data to add to the child URL set */ public void addAllUrl(final Collection<RequestData> c) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4.7K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/ResponseDataTest.java
RequestData child = new RequestData(); child.setMethod(Method.GET); child.setUrl("https://example.com/page1"); data.addChildUrl(child); data.addChildUrl(child); assertEquals(1, data.getChildUrlSet().size()); } public void test_getRequestData() { // Test getRequestData method ResponseData data = new ResponseData();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/main/java/org/codelibs/fess/crawler/extractor/impl/MarkdownExtractor.java
final StringBuilder headingText = new StringBuilder(); Node child = heading.getFirstChild(); while (child != null) { if (child instanceof Text) { headingText.append(((Text) child).getLiteral()); } child = child.getNext(); } if (headingText.length() > 0) {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 03:46:53 UTC 2025 - 8.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/ChildUrlsException.java
/** * {@link ChildUrlsException} is thrown when child URLs are found during crawling. * It extends {@link CrawlerSystemException} and holds a set of {@link RequestData} * representing the child URLs that caused the exception. * */ public class ChildUrlsException extends CrawlerSystemException { private static final long serialVersionUID = 1L; /** * The list of child URLs. */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 1.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
} /** * Gets the map of child URL extraction rules. * * @return the child URL rule map */ public Map<String, String> getChildUrlRuleMap() { return childUrlRuleMap; } /** * Sets the map of child URL extraction rules. * * @param childUrlRuleMap the child URL rule map to set */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 29 07:42:33 UTC 2025 - 30.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/processor/impl/DefaultResponseProcessor.java
} return true; } /** * Stores child URLs found in the response data. * * @param crawlerContext the crawler context * @param childUrlList the set of child URLs * @param url the parent URL * @param depth the depth of the child URLs * @param encoding the encoding of the child URLs */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/jcifs/CIFSContext.java
*/ boolean hasDefaultCredentials(); /** * Create a child context with default credentials * * @return a child context using the configured default credentials */ CIFSContext withDefaultCredentials(); /** * Create a child context with anonymous credentials * * @return a child context using anonymous credentials */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResponseData.java
return metaDataMap; } /** * Adds a child URL discovered from this response. * * @param url the child URL to add */ public void addChildUrl(final RequestData url) { childUrlSet.add(url); } /** * Removes a child URL from this response. * * @param url the child URL to remove */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 11.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/impl/LogHelperImpl.java
final String url = (String) objs[2]; final Throwable e = (Throwable) objs[3]; if (logger.isDebugEnabled()) { logger.debug("Child URL: {} from {}", url, urlQueue.getUrl(), e); } } /** * Processes child URLs processing exception log events. * * @param objs the log objects (should contain UrlQueue and Set of RequestData) */
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 02:01:26 UTC 2025 - 14K bytes - Viewed (0)