Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 74 for incompatible (1.85 sec)

  1. src/main/webapp/WEB-INF/orig/view/help.jsp

    ${fe:html(true)}
    <head profile="http://a9.com/-/spec/opensearch/1.1/">
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title><la:message key="labels.search_title" /></title>
    <link href="${fe:url('/css/bootstrap.min.css')}" rel="stylesheet"
    	type="text/css" />
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Jan 18 11:38:54 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/s3/S3Client.java

    /**
     * A crawler client implementation for accessing and retrieving content from S3-compatible storage systems
     * using AWS SDK v2. This client supports operations on Amazon S3 and S3-compatible storage systems.
     *
     * <p>This client requires the following initialization parameters:
     * <ul>
     *   <li>endpoint - The URL of the S3-compatible server</li>
     *   <li>accessKey - The access key for authentication</li>
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 21.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/storage/StorageType.java

    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)
  4. src/main/webapp/WEB-INF/orig/view/error/notFound.jsp

    ${fe:html(true)}
    <head profile="http://a9.com/-/spec/opensearch/1.1/">
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title><la:message key="labels.system_error_title" /></title>
    <link href="${fe:url('/css/bootstrap.min.css')}" rel="stylesheet"
    	type="text/css" />
    <link href="${fe:url('/css/style.css')}" rel="stylesheet"
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/storage/S3StorageClient.java

    import software.amazon.awssdk.services.s3.model.Tag;
    import software.amazon.awssdk.services.s3.model.Tagging;
    
    /**
     * S3-compatible storage client implementation using AWS SDK v2.
     * Supports Amazon S3, MinIO, and other S3-compatible storage systems.
     */
    public class S3StorageClient implements StorageClient {
    
        private static final Logger logger = LogManager.getLogger(S3StorageClient.class);
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/login/newpassword.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
    ${fe:html(true)}
    <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title><la:message key="labels.login.title" /></title>
    <link href="${fe:url('/css/admin/bootstrap.min.css')}" rel="stylesheet" type="text/css" />
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 13 05:54:52 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  7. src/main/resources/fess_message_es.properties

    errors.invalid_query_sort_value = El orden de clasificación especificado {0} no es válido.
    errors.invalid_query_unsupported_sort_field = El campo de ordenación especificado {0} no es compatible.
    errors.invalid_query_unsupported_sort_order = El orden de clasificación especificado {0} no es compatible.
    errors.invalid_query_cannot_process=No se pudo procesar la consulta especificada.
    errors.crud_invalid_mode = Modo incorrecto. (Es {1}, no {0})
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/SearchBody.java

    public class SearchBody extends ListForm {
    
        /**
         * Default constructor.
         */
        public SearchBody() {
            super();
        }
    
        // `size` is an alias of `num`.
        // `size` is prepared to be compatible with other Admin APIs
        /** Number of search results to retrieve (alias for num) */
        @ValidateTypeFailure
        public Integer size;
    
        @Override
        public void initialize() {
            if (size != null) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/storage/StorageClient.java

    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.List;
    import java.util.Map;
    
    /**
     * Interface for cloud storage operations.
     * Implementations provide access to S3-compatible storage, GCS, or other cloud storage systems.
     */
    public interface StorageClient extends AutoCloseable {
    
        /**
         * Uploads an object to storage.
         *
         * @param objectName the name/path for the object
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/help.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
    ${fe:html(true)}
    <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title><la:message key="labels.search_title" /></title>
    <link href="${fe:url('/css/bootstrap.min.css')}" rel="stylesheet"
    	type="text/css" />
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 13 05:54:52 UTC 2025
    - 1.3K bytes
    - Viewed (0)
Back to top