Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for ENDPOINT (0.04 sec)

  1. src/main/java/org/codelibs/fess/storage/S3StorageClient.java

        /**
         * Creates a new S3StorageClient instance.
         *
         * @param endpoint the S3 endpoint URL (null for AWS default)
         * @param accessKey the AWS access key
         * @param secretKey the AWS secret key
         * @param bucket the bucket name
         * @param region the AWS region
         */
        public S3StorageClient(final String endpoint, final String accessKey, final String secretKey, final String bucket,
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/storage/StorageClientFactory.java

            // Utility class
        }
    
        /**
         * Auto-detect storage type from endpoint URL.
         *
         * @param endpoint the storage endpoint URL
         * @return detected storage type
         */
        public static StorageType detectStorageType(final String endpoint) {
            if (StringUtil.isBlank(endpoint)) {
                // Default to S3 if no endpoint (uses AWS default)
                return StorageType.S3;
            }
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/HashBiMap.java

        nextInBucketKToV = createFilledWithAbsent(expectedSize);
        nextInBucketVToK = createFilledWithAbsent(expectedSize);
    
        firstInInsertionOrder = ENDPOINT;
        lastInInsertionOrder = ENDPOINT;
    
        prevInInsertionOrder = createFilledWithAbsent(expectedSize);
        nextInInsertionOrder = createFilledWithAbsent(expectedSize);
      }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Dec 16 14:46:34 UTC 2025
    - 37.1K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractor.java

     * Extract a text by using external http server.
     */
    public class ApiExtractor extends AbstractExtractor {
    
        private static final Logger logger = LogManager.getLogger(ApiExtractor.class);
    
        /** The URL of the API endpoint. */
        protected String url;
    
        /** The access timeout in seconds. */
        protected Integer accessTimeout; // sec
    
        /** The HTTP client used for API calls. */
        protected CloseableHttpClient httpClient;
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/net/protocol/storage/HandlerTest.java

            // In this test, we expect IOException when endpoint is blank
            try {
                conn.connect();
                fail("Should throw IOException when endpoint is not set");
            } catch (IOException e) {
                assertTrue(e.getMessage().contains("endpoint is blank"));
            }
        }
    
        /**
         * Test thread-safety of connect() method.
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/gcs/GcsClient.java

            final String endpoint = getInitParameter("endpoint", null, String.class);
            if (StringUtil.isNotBlank(endpoint)) {
                // For fake-gcs-server or custom endpoint
                builder.setHost(endpoint);
                builder.setCredentials(NoCredentials.getInstance());
                if (logger.isDebugEnabled()) {
                    logger.debug("Using custom GCS endpoint: {}", endpoint);
                }
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/storage/GcsStorageClient.java

            }
    
            if (StringUtil.isNotBlank(endpoint)) {
                // For fake-gcs-server or custom endpoint
                builder.setHost(endpoint);
                builder.setCredentials(NoCredentials.getInstance());
                if (logger.isDebugEnabled()) {
                    logger.debug("Using custom GCS endpoint: {}", endpoint);
                }
            } else {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/net/protocol/storage/Handler.java

                    throw new IOException("endpoint is blank.");
                }
    
                try {
                    final Builder builder = MinioClient.builder().endpoint(endpoint);
                    if (StringUtil.isNotBlank(accessKey) && StringUtil.isNotBlank(secretKey)) {
                        builder.credentials(accessKey, secretKey);
                    }
                    if (StringUtil.isNotBlank(region)) {
                        builder.region(region);
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 20 08:52:56 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/s3/S3Client.java

                return;
            }
    
            super.init();
    
            final String endpoint = getInitParameter("endpoint", null, String.class);
            if (StringUtil.isBlank(endpoint)) {
                throw new CrawlingAccessException(
                        "S3 endpoint is blank. Please set the S3_ENDPOINT environment variable or endpoint parameter.");
            }
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 21.4K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/storage/StorageClient.java

            final String endpoint = getInitParameter("endpoint", null, String.class);
            if (StringUtil.isBlank(endpoint)) {
                throw new CrawlingAccessException(
                        "Storage endpoint is blank. Please set the STORAGE_ENDPOINT environment variable or endpoint parameter.");
            }
            builder.endpoint(endpoint);
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 20K bytes
    - Viewed (2)
Back to top