Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for good_urls (0.03 sec)

  1. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

        /** XML element name for start URLs configuration. */
        protected static final String START_URLS = "start_urls";
    
        /** XML element name for good (included) URLs configuration. */
        protected static final String GOOD_URLS = "good_urls";
    
        /** XML element name for bad (excluded) URLs configuration. */
        protected static final String BAD_URLS = "bad_urls";
    
        /** Array of supported web protocols for URL classification. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  2. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

          return obj instanceof BadEqualsWithParameterizedType;
        }
    
        @Override
        public int hashCode() {
          return 0;
        }
      }
    
      static class GoodNulls {
        public GoodNulls(String s) {
          checkNotNull(s);
        }
    
        public void rejectNull(String s) {
          checkNotNull(s);
        }
      }
    
      public static class BadNulls {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 36.2K bytes
    - Viewed (0)
Back to top