Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 20 for storageType (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                        <label for="storageType"
                                               class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.storage_type"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="storageType"/>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 83.1K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        public String storageBucket;
    
        /**
         * Storage type for cloud storage (s3, gcs, auto).
         * Determines which storage client to use.
         */
        @Size(max = 20)
        public String storageType;
    
        /**
         * Storage region for S3.
         * AWS region where the S3 bucket is located.
         */
        @Size(max = 100)
        public String storageRegion;
    
        /**
         * GCS project ID.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

                fessConfig.setStorageSecretKey(form.storageSecretKey);
            }
            fessConfig.setStorageBucket(form.storageBucket);
            fessConfig.setStorageType(form.storageType);
            fessConfig.setStorageRegion(form.storageRegion);
            fessConfig.setStorageProjectId(form.storageProjectId);
            fessConfig.setStorageCredentialsPath(form.storageCredentialsPath);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 05:54:31 GMT 2026
    - 27.2K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default void setStorageType(final String value) {
            setSystemProperty(Constants.STORAGE_TYPE, value);
        }
    
        default String getStorageType() {
            return getSystemProperty(Constants.STORAGE_TYPE, "auto");
        }
    
        default void setStorageRegion(final String value) {
            setSystemProperty(Constants.STORAGE_REGION, value);
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 92.3K bytes
    - Click Count (0)
  5. src/main/resources/fess_label_en.properties

    labels.notification_login=Login Page
    labels.notification_search_top=Search Top Page
    labels.storage_endpoint=Endpoint
    labels.storage_access_key=Access Key
    labels.storage_secret_key=Secret Key
    labels.storage_bucket=Bucket
    labels.storage_type=Type
    labels.storage_type_auto=Auto
    labels.storage_type_s3=S3
    labels.storage_type_gcs=GCS
    labels.storage_region=Region
    labels.storage_project_id=Project ID
    labels.storage_credentials_path=Credentials Path
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  6. src/main/resources/fess_label_zh_TW.properties

    labels.notification_login=登入頁面
    labels.notification_search_top=搜尋首頁
    labels.storage_endpoint=端點
    labels.storage_access_key=訪問金鑰
    labels.storage_secret_key=密鑰
    labels.storage_bucket=儲存桶
    labels.storage_type=類型
    labels.storage_type_auto=自動
    labels.storage_type_s3=S3
    labels.storage_type_gcs=GCS
    labels.storage_region=區域
    labels.storage_project_id=專案ID
    labels.storage_credentials_path=憑證路徑
    labels.general_rag=AI模式
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.5K bytes
    - Click Count (0)
  7. src/main/resources/fess_label_ru.properties

    labels.notification_search_top=Главная страница поиска
    labels.storage_endpoint=Конечная точка
    labels.storage_access_key=Ключ доступа
    labels.storage_secret_key=Секретный ключ
    labels.storage_bucket=Бакет
    labels.storage_type=Тип
    labels.storage_type_auto=Авто
    labels.storage_type_s3=S3
    labels.storage_type_gcs=GCS
    labels.storage_region=Регион
    labels.storage_project_id=ID проекта
    labels.storage_credentials_path=Путь к учётным данным
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 66.6K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/Constants.java

        /** Storage bucket configuration key. */
        public static final String STORAGE_BUCKET = "storage.bucket";
    
        /** Storage type configuration key (s3, gcs, auto). */
        public static final String STORAGE_TYPE = "storage.type";
    
        /** RAG LLM name configuration key. */
        public static final String RAG_LLM_NAME = "rag.llm.name";
    
        /** Storage region configuration key (for S3). */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 35.8K bytes
    - Click Count (0)
  9. src/main/resources/fess_label_fr.properties

    labels.notification_search_top=Page d'accueil de la recherche
    labels.storage_endpoint=Point de terminaison
    labels.storage_access_key=Clé d'accès
    labels.storage_secret_key=Clé secrète
    labels.storage_bucket=Compartiment
    labels.storage_type=Type
    labels.storage_type_auto=Auto
    labels.storage_type_s3=S3
    labels.storage_type_gcs=GCS
    labels.storage_region=Région
    labels.storage_project_id=ID du projet
    labels.storage_credentials_path=Chemin des identifiants
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 54.4K bytes
    - Click Count (0)
  10. src/main/resources/fess_label_it.properties

    labels.chat_filter_search_placeholder=Cerca...
    labels.chat_clear=Cancella
    labels.storage_credentials_path=Percorso credenziali
    labels.storage_project_id=ID progetto
    labels.storage_region=Regione
    labels.storage_type=Tipo
    labels.storage_type_auto=Automatico
    labels.storage_type_gcs=GCS
    labels.storage_type_s3=S3
    labels.search_file_proxy_enabled=Search File Proxy
    labels.search_use_browser_locale=Use Browser Locale
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 52K bytes
    - Click Count (0)
Back to Top