Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Classification (0.05 sec)

  1. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessListedClassificationProviderTest.java

            assertProvideThrowsException("Test(Classification)");
            assertProvideThrowsException("Test[Classification]");
            assertProvideThrowsException("Test{Classification}");
            assertProvideThrowsException("Test|Classification");
            assertProvideThrowsException("Test\\Classification");
            assertProvideThrowsException("Test/Classification");
            assertProvideThrowsException("Test<Classification>");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

        protected static final String BAD_URLS = "bad_urls";
    
        /** Array of supported web protocols for URL classification. */
        protected String[] webProtocols = { "http:", "https:" };
    
        /** Array of supported file protocols for URL classification. */
        protected String[] fileProtocols = { "file:", "smb:", "smb1:", "ftp:", "storage:" };
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/net/InternetDomainName.java

        if (part.length() < 1 || part.length() > MAX_DOMAIN_PART_LENGTH) {
          return false;
        }
    
        /*
         * GWT claims to support java.lang.Character's char-classification methods, but it actually only
         * works for ASCII. So for now, assume any non-ASCII characters are valid. The only place this
         * seems to be documented is here:
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 27.9K bytes
    - Viewed (0)
Back to top