- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for Another (0.61 sec)
-
README.md
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 00:28:33 UTC 2025 - 7.8K bytes - Viewed (2) -
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 objectRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 2.8K bytes - Viewed (0) -
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); private final S3Client s3Client;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
/** Search log access type for admin interface. */ public static final String SEARCH_LOG_ACCESS_TYPE_ADMIN = "admin"; /** Search log access type for other interfaces. */ public static final String SEARCH_LOG_ACCESS_TYPE_OTHER = "other"; /** Results per page parameter name. */ public static final String RESULTS_PER_PAGE = "resultsPerPage"; /** User code parameter name. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 35.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
import jakarta.annotation.PreDestroy; /** * Helper class for system-level operations and utilities. * This class provides methods for managing system properties, handling JSP files, * normalizing configurations, and other system-related tasks. */ public class SystemHelper { /** * Constructs a new system helper. */ public SystemHelper() { // do nothing }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 08:30:43 UTC 2025 - 36.6K bytes - Viewed (0)