Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for CHILD (0.02 sec)

  1. 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)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Huffman.kt

          accumulatorBitCount -= 8
          val childIndex = (code ushr accumulatorBitCount) and 0xff
          val children = node.children!!
          var child = children[childIndex]
          if (child == null) {
            child = Node()
            children[childIndex] = child
          }
          node = child
        }
    
        val shift = 8 - accumulatorBitCount
        val start = (code shl shift) and 0xff
        val end = 1 shl shift
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 11K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. android/guava/src/com/google/common/net/InternetDomainName.java

       * returns a new {@code InternetDomainName} with the value {@code www.bar.foo.com}. Only lenient
       * validation is performed, as described {@link #from(String) here}.
       *
       * @throws NullPointerException if leftParts is null
       * @throws IllegalArgumentException if the resulting name is not valid
       */
      public InternetDomainName child(String leftParts) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 27.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

            ACCESSED,
            /** Indicates that an exception occurred during URL access. */
            ACCESS_EXCEPTION,
            /** Indicates that a child URL was discovered. */
            CHILD_URL,
            /** Indicates that multiple child URLs were discovered. */
            CHILD_URLS,
            /** Indicates that a URL was evaluated for crawling eligibility. */
            EVALUATED,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/annotation/SecuredTest.java

            Secured parentSecured = ParentClass.class.getAnnotation(Secured.class);
            assertNotNull(parentSecured);
            assertEquals("ROLE_PARENT", parentSecured.value()[0]);
    
            // Child class should inherit the annotation
            Secured childSecured = ChildClass.class.getAnnotation(Secured.class);
            assertNotNull(childSecured);
            assertEquals("ROLE_PARENT", childSecured.value()[0]);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.2K bytes
    - Viewed (0)
Back to top