Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 87 for supported (0.16 sec)

  1. src/main/java/org/codelibs/fess/helper/ProtocolHelper.java

     */
    public class ProtocolHelper {
        private static final Logger logger = LogManager.getLogger(ProtocolHelper.class);
    
        /** Array of supported web protocols with colon suffix (e.g., "http:", "https:") */
        protected String[] webProtocols = StringUtil.EMPTY_STRINGS;
    
        /** Array of supported file protocols with colon suffix (e.g., "file:", "ftp:") */
        protected String[] fileProtocols = StringUtil.EMPTY_STRINGS;
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Dec 12 13:58:40 UTC 2025
    - 12.4K bytes
    - Viewed (1)
  2. src/main/java/org/codelibs/fess/helper/LanguageHelper.java

            }
            return result.replaceAll("\\s+", " ");
        }
    
        /**
         * Returns the supported language for a given language.
         *
         * @param lang The language to check.
         * @return The supported language, or null if not supported.
         */
        protected String getSupportedLanguage(final String lang) {
            if (StringUtil.isBlank(lang)) {
                return null;
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/util/TemporaryFileInputStreamTest.java

                // Reset will throw IOException because mark is not supported
                try {
                    stream.reset();
                    fail("reset() should throw IOException when mark is not supported");
                } catch (IOException e) {
                    // Expected - FileInputStream does not support mark/reset
                }
            }
        }
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 22 13:28:22 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

            }
    
            /**
             * Gets the servlet context. This operation is not supported.
             *
             * @return Never returns, always throws UnsupportedOperationException
             * @throws UnsupportedOperationException Always thrown as this operation is not supported
             */
            @Override
            public ServletContext getServletContext() {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 17.8K bytes
    - Viewed (3)
  5. src/main/java/org/codelibs/fess/storage/StorageType.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.storage;
    
    /**
     * Enum for supported storage types.
     */
    public enum StorageType {
    
        /** Amazon S3 */
        S3,
    
        /** Google Cloud Storage */
        GCS,
    
        /** S3-compatible storage (MinIO, etc.) */
        S3_COMPAT
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 864 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            }
    
            @Override
            public int getStartPosition() {
                throw new UnsupportedOperationException("getStartPosition() is not supported in this implementation");
            }
    
            @Override
            public int getOffset() {
                throw new UnsupportedOperationException("getOffset() is not supported in this implementation");
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 55.4K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/validation/UriTypeValidator.java

                    }
                    if (!flag) {
                        return false;
                    }
                }
            }
            return true;
        }
    
        /**
         * Enumeration of supported protocol types for URI validation.
         */
        public enum ProtocolType {
            /**
             * Web protocols (http, https, etc.).
             */
            WEB,
            /**
             * File protocols (file, etc.).
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Nov 23 12:34:02 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/curl/Curl.java

     * </pre>
     *
     * <p>Supported HTTP methods:</p>
     * <ul>
     *   <li>GET</li>
     *   <li>POST</li>
     *   <li>PUT</li>
     *   <li>DELETE</li>
     *   <li>HEAD</li>
     *   <li>OPTIONS</li>
     *   <li>CONNECT</li>
     *   <li>TRACE</li>
     * </ul>
     *
     * <p>The Curl class also defines an enum {@link Method} which lists all supported HTTP methods.</p>
     *
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  9. src/main/resources/fess_config.properties

    adaptive.load.control=50
    # Supported JavaScript file extensions for upload.
    supported.uploaded.js.extentions=js
    # Supported CSS file extensions for upload.
    supported.uploaded.css.extentions=css
    # Supported media file extensions for upload.
    supported.uploaded.media.extentions=jpg,jpeg,gif,png,swf
    # Supported files for upload.
    supported.uploaded.files=license.properties
    # Supported languages.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 11 09:47:03 UTC 2025
    - 54.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java

        @Resource
        private ScheduledJobService scheduledJobService;
    
        /**
         * Index page (not supported for API).
         *
         * @return throws UnsupportedOperationException
         */
        @Execute
        public HtmlResponse index() {
            throw new UnsupportedOperationException("index() is not supported in API. Use the admin UI instead.");
        }
    
        /**
         * Starts a scheduled job by ID.
         *
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Nov 23 12:34:02 UTC 2025
    - 10.1K bytes
    - Viewed (0)
Back to top