Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for storageClient (0.14 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/storage/StorageClient.java

    import io.minio.messages.Tags;
    import jakarta.annotation.Resource;
    
    /**
     * StorageClient is CrawlerClient implementation to crawl files on a storage
     * system.
     *
     * @author shinsuke
     *
     */
    public class StorageClient extends AbstractCrawlerClient {
    
        private static final Logger logger = LoggerFactory.getLogger(StorageClient.class);
    
        protected String charset = Constants.UTF_8;
    
        @Resource
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:47:32 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/storage/StorageClientTest.java

                    .singleton("storageClient", StorageClient.class);
            storageClient = container.getComponent("storageClient");
            Map<String, Object> params = new HashMap<>();
            params.put("endpoint", endpoint);
            params.put("accessKey", ACCESS_KEY);
            params.put("secretKey", SECRET_KEY);
            storageClient.setInitParameterMap(params);
    
            for (int i = 0; i < 10; i++) {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top