Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for mycket (0.06 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/net/protocol/gcs/HandlerTest.java

         */
        public void test_protocol() throws Exception {
            URL url = new URL("gcs://bucket/object");
            assertEquals("gcs", url.getProtocol());
        }
    
        /**
         * Test URL parsing with bucket and object path.
         */
        public void test_urlParsing_bucketAndObject() throws Exception {
            URL url = new URL("gcs://mybucket/path/to/object.txt");
            Handler handler = new Handler();
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/net/protocol/storage/HandlerTest.java

         */
        public void test_protocol() throws Exception {
            URL url = new URL("storage://bucket/object");
            assertEquals("storage", url.getProtocol());
        }
    
        /**
         * Test URL parsing with bucket and object path.
         */
        public void test_urlParsing_bucketAndObject() throws Exception {
            URL url = new URL("storage://mybucket/path/to/object.txt");
            Handler handler = new Handler();
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/s3/S3Client.java

            }
        }
    
        /**
         * Checks if a bucket exists in the object storage.
         * @param name the name of the bucket to check
         * @return true if the bucket exists, false otherwise
         * @throws CrawlingAccessException if an error occurs while checking bucket existence
         */
        protected boolean bucketExists(final String name) {
            try {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 21.4K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/s3/S3ClientTest.java

            values = s3Client.parsePath("bucket/path");
            assertEquals("bucket", values[0]);
            assertEquals("path", values[1]);
    
            values = s3Client.parsePath("bucket/path1/path2");
            assertEquals("bucket", values[0]);
            assertEquals("path1/path2", values[1]);
    
            values = s3Client.parsePath("bucket/");
            assertEquals("bucket", values[0]);
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 07:57:44 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/storage/GcsStorageClient.java

            try {
                final Bucket existingBucket = storage.get(bucket);
                if (existingBucket == null) {
                    storage.create(BucketInfo.newBuilder(bucket).build());
                    logger.info("Created storage bucket: {}", bucket);
                }
            } catch (final Exception e) {
                logger.warn("Failed to ensure bucket exists: {}", bucket, e);
            }
        }
    
        @Override
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/util/FacetResponse.java

    import java.util.List;
    import java.util.Map;
    
    import org.codelibs.fess.Constants;
    import org.opensearch.search.aggregations.Aggregations;
    import org.opensearch.search.aggregations.bucket.filter.Filter;
    import org.opensearch.search.aggregations.bucket.terms.Terms;
    
    import com.google.common.io.BaseEncoding;
    
    /**
     * Response object for faceted search results containing query counts and field facets.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Nov 23 11:39:05 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/storage/S3StorageClient.java

                s3Client.headBucket(request);
            } catch (final NoSuchBucketException e) {
                try {
                    final CreateBucketRequest createRequest = CreateBucketRequest.builder().bucket(bucket).build();
                    s3Client.createBucket(createRequest);
                    logger.info("Created storage bucket: {}", bucket);
                } catch (final Exception e1) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/gcs/GcsClient.java

                    }
                }
            }
        }
    
        /**
         * Parses a GCS path into bucket name and object path components.
         * @param path the GCS path to parse (format: bucket/object/path)
         * @return an array containing the bucket name and object path
         * @throws CrawlingAccessException if the path format is invalid
         */
        protected String[] parsePath(final String path) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  9. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/storage/StorageClientTest.java

            values = storageClient.parsePath("bucket/path");
            assertEquals("bucket", values[0]);
            assertEquals("path", values[1]);
    
            values = storageClient.parsePath("bucket/path1/path2");
            assertEquals("bucket", values[0]);
            assertEquals("path1/path2", values[1]);
    
            values = storageClient.parsePath("bucket/");
            assertEquals("bucket", values[0]);
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 20.9K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/storage/StorageClient.java

            }
        }
    
        /**
         * Checks if a bucket exists in the object storage.
         * @param name the name of the bucket to check
         * @return true if the bucket exists, false otherwise
         * @throws CrawlingAccessException if an error occurs while checking bucket existence
         */
        protected boolean bucketExists(final String name) {
            try {
    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