Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Classification (0.55 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/mylasta/direction/sponsor/FessListedClassificationProvider.java

    import org.dbflute.optional.OptionalObject;
    import org.dbflute.optional.OptionalThing;
    import org.lastaflute.db.dbflute.classification.ListedClassificationProvider;
    import org.lastaflute.db.dbflute.exception.ProvidedClassificationNotFoundException;
    
    /**
     * The provider of listed classification.
     *
     * @author jflute
     */
    public class FessListedClassificationProvider implements ListedClassificationProvider {
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/FileTypeHelper.java

            }
        }
    
        /**
         * Adds or updates a MIME type to file type mapping.
         *
         * @param mimetype the MIME type to map (e.g., "application/pdf")
         * @param filetype the file type classification (e.g., "pdf")
         */
        public void add(final String mimetype, final String filetype) {
            mimetypeMap.put(mimetype, filetype);
        }
    
        /**
         * Retrieves the file type for a given MIME type.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  4. 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)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessFwAssistantDirector.java

    import org.lastaflute.core.direction.FwCoreDirection;
    import org.lastaflute.core.security.InvertibleCryptographer;
    import org.lastaflute.core.security.OneWayCryptographer;
    import org.lastaflute.db.dbflute.classification.ListedClassificationProvider;
    import org.lastaflute.db.direction.FwDbDirection;
    import org.lastaflute.web.direction.FwWebDirection;
    import org.lastaflute.web.ruts.process.ActionRuntime;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractEntity.java

            __uniqueDrivenProperties.clear();
        }
    
        // ===================================================================================
        //                                                                      Classification
        //                                                                      ==============
        @Override
        public void myunlockUndefinedClassificationAccess() {
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11K bytes
    - Viewed (0)
  7. 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