- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for CHILD (0.01 sec)
-
android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java
// These would throw an exception if leniency were not preserved during parent() and child() // calls. InternetDomainName child = parent.child(LOTS_OF_DELTAS); InternetDomainName unused = child.child(LOTS_OF_DELTAS); } public void testValidTopPrivateDomain() { InternetDomainName googleDomain = InternetDomainName.from("google.com");
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 17.5K bytes - Viewed (0) -
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) -
android/guava-tests/test/com/google/common/reflect/ClassPathTest.java
} public void testLocationEquals() { ClassLoader child = getClass().getClassLoader(); ClassLoader parent = child.getParent(); new EqualsTester() .addEqualityGroup( new ClassPath.LocationInfo(new File("foo.jar"), child), new ClassPath.LocationInfo(new File("foo.jar"), child)) .addEqualityGroup(new ClassPath.LocationInfo(new File("foo.jar"), parent))
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 20:58:01 UTC 2025 - 23K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
} } /** * Stores a child URL in the crawling queue with duplicate host handling. * This method applies duplicate host conversion before storing the URL. * * @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 */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.6K bytes - Viewed (0) -
android/guava/src/com/google/thirdparty/publicsuffix/TrieParser.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/QueryTestBase.java
queryProcessor = new QueryProcessor(); queryProcessor.init(); ComponentUtil.register(queryProcessor, "queryProcessor"); // Call child class specific setup setUpChild(); } /** * Override this method in child classes to perform additional setup */ protected void setUpChild() throws Exception { // Default implementation does nothing } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
} /** * Deletes all child documents that belong to the specified parent document. * * @param searchEngineClient the search engine client to use for deletion * @param id the parent document ID whose children should be deleted * @return the number of child documents that were deleted */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
if (u == null) { logger.warn("Ignored child URL: {} in {}", attrValue, url); return; } if (logger.isDebugEnabled()) { logger.debug("{} -> {}", attrValue, u); } if (StringUtil.isNotBlank(u)) { if (logger.isDebugEnabled()) { logger.debug("Add Child: {}", u); } urlList.add(u);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
* * <p>The implementation uses an executor service for concurrent processing of file operations and maintains * a cache of URLs to be deleted for batch processing. It handles redirect following and child URL discovery * during the crawling process.</p> */ public class FileListIndexUpdateCallbackImpl implements IndexUpdateCallback { /** Logger for this class. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 28.9K bytes - Viewed (0)