Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for Storage (0.04 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

    import io.minio.messages.Item;
    
    /**
     * Admin action for Storage management.
     *
     */
    public class AdminStorageAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminStorageAction() {
            super();
        }
    
        /** Role name for admin storage operations */
        public static final String ROLE = "admin-storage";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        public String logLevel;
    
        /**
         * Storage service endpoint URL for cloud storage integration.
         * Used for storing files in cloud storage services like S3.
         */
        @Size(max = 1000)
        public String storageEndpoint;
    
        /**
         * Access key for cloud storage authentication.
         * Used to authenticate with cloud storage services.
         */
        @Size(max = 1000)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exception/StorageExceptionTest.java

    public class StorageExceptionTest extends UnitFessTestCase {
    
        public void test_constructorWithMessage() {
            // Test constructor with message only
            String message = "Storage error occurred";
            StorageException exception = new StorageException(message);
    
            assertNotNull(exception);
            assertEquals(message, exception.getMessage());
            assertNull(exception.getCause());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/storage/ApiAdminStorageAction.java

     */
    package org.codelibs.fess.app.web.api.admin.storage;
    
    import static org.codelibs.fess.app.web.admin.storage.AdminStorageAction.convertToItem;
    import static org.codelibs.fess.app.web.admin.storage.AdminStorageAction.decodePath;
    import static org.codelibs.fess.app.web.admin.storage.AdminStorageAction.deleteObject;
    import static org.codelibs.fess.app.web.admin.storage.AdminStorageAction.downloadObject;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/storage/ItemForm.java

     */
    package org.codelibs.fess.app.web.admin.storage;
    
    import org.lastaflute.web.ruts.multipart.MultipartFormFile;
    
    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for storage item operations in the admin interface.
     * This form handles file upload and management operations for storage items.
     */
    public class ItemForm {
    
        /** The path of the storage item */
        public String path;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/DictionaryManager.java

            }
            creatorList.forEach(creator -> {
                creator.setDictionaryManager(this);
            });
        }
    
        /**
         * Retrieves all available dictionary files from the ConfigSync storage.
         * This method queries the ConfigSync API to get file information and
         * uses registered DictionaryCreator instances to create appropriate
         * DictionaryFile objects.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/exception/StorageException.java

    /**
     * This exception is thrown when a storage-related error occurs.
     * It can be used to wrap underlying storage exceptions, providing a
     * consistent error handling mechanism for storage operations.
     */
    public class StorageException extends FessSystemException {
        private static final long serialVersionUID = 1L;
    
        /**
         * Constructs a new storage exception with the specified detail message and cause.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/storage/UploadForm.java

     */
    package org.codelibs.fess.app.web.api.admin.storage;
    
    import org.lastaflute.web.ruts.multipart.MultipartFormFile;
    import org.lastaflute.web.validation.Required;
    
    /**
     * Form for uploading files to the storage system via the admin API.
     * This form is used in the admin API interface to upload files to the storage backend
     * with optional path specification for file organization.
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  9. okhttp/src/commonJvmAndroid/kotlin/okhttp3/CookieJar.kt

     *
     * As persistence, implementations of this interface must also provide storage of cookies. Simple
     * implementations may store cookies in memory; sophisticated ones may use the file system or
     * database to hold accepted cookies. The [cookie storage model][rfc_6265_53] specifies policies for
     * updating and expiring cookies.
     *
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.21.md

    ### Generic Ephemeral Volumes
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
Back to top