- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 230 for parentEl (0.07 sec)
-
src/test/java/org/codelibs/fess/exception/ContentNotFoundExceptionTest.java
// Test with normal URLs String parentUrl = "http://example.com/parent"; String url = "http://example.com/child"; ContentNotFoundException exception = new ContentNotFoundException(parentUrl, url); assertNotNull(exception); assertEquals("Not Found: http://example.com/child Parent: http://example.com/parent", exception.getMessage()); assertNull(exception.getCause()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java
if (urlQueue != null) { final String parentUrl = urlQueue.getParentUrl(); if (StringUtil.isNotEmpty(parentUrl)) { final String sessionId = urlQueue.getSessionId(); final String pageEnc = getParentEncoding(parentUrl, sessionId); if (pageEnc != null) { enc = pageEnc;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ContentNotFoundException.java
/** * Constructs a new ContentNotFoundException with the specified parent URL and URL. * * @param parentUrl the URL of the parent document * @param url the URL of the content that was not found */ public ContentNotFoundException(final String parentUrl, final String url) { super("Not Found: " + url + " Parent: " + parentUrl, false, false); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/UrlQueueImpl.java
*/ @Override public String getParentUrl() { return parentUrl; } /* * (non-Javadoc) * * @see org.codelibs.fess.crawler.entity.UrlQueue#setParentUrl(java.lang.String) */ @Override public void setParentUrl(final String parentUrl) { this.parentUrl = parentUrl; } /* * (non-Javadoc) *
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResponseData.java
} /** * Gets the parent URL from which this resource was discovered. * * @return the parent URL, or null if this is a root URL */ public String getParentUrl() { return parentUrl; } /** * Sets the parent URL from which this resource was discovered. * * @param parentUrl the parent URL to set */
Registered: Sun Sep 21 03:50:09 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/entity/AccessResult.java
*/ void setUrl(String url); /** * Returns the parent URL of the accessed resource. * * @return the parent URL */ String getParentUrl(); /** * Sets the parent URL of the accessed resource. * * @param parentUrl the parent URL */ void setParentUrl(String parentUrl); /** * Returns the status of the access result. *
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 5.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultImpl.java
*/ @Override public String getParentUrl() { return parentUrl; } /* * (non-Javadoc) * * @see org.codelibs.fess.crawler.entity.AccessResult#setParentUrl(java.lang.String) */ @Override public void setParentUrl(final String parentUrl) { this.parentUrl = parentUrl; } /* * (non-Javadoc) *
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 9K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/entity/OpenSearchUrlQueue.java
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/HandlerTest.java
assertEquals("/share/folder/file.txt", relativeUrl.getPath()); // Test parent directory navigation URL parentUrl = new URL(baseUrl, "../other/file.txt"); assertEquals("smb", parentUrl.getProtocol()); assertEquals("server", parentUrl.getHost()); assertEquals("/other/file.txt", parentUrl.getPath()); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
* * @param childUrl the child URL to store * @param parentUrl the parent URL that referenced this child URL * @param weight the weight/priority of the child URL * @param depth the crawling depth of the child URL */ @Override protected void storeChildUrl(final String childUrl, final String parentUrl, final float weight, final int depth) { if (StringUtil.isNotBlank(childUrl)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.1K bytes - Viewed (0)