Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for blob (0.17 sec)

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

                final Page<Blob> blobs = storage.list(bucket, BlobListOption.prefix(searchPrefix), BlobListOption.currentDirectory(),
                        BlobListOption.pageSize(maxItems));
    
                for (final Blob blob : blobs.iterateAll()) {
                    final String blobName = blob.getName();
    
                    // Skip the prefix itself
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  2. README.md

    * [fess_label_en.properties](https://github.com/codelibs/fess/blob/master/src/main/resources/fess_label_en.properties)
    * [fess_message_en.properties](https://github.com/codelibs/fess/blob/master/src/main/resources/fess_message_en.properties)
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 00:28:33 UTC 2025
    - 7.8K bytes
    - Viewed (2)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/gcs/GcsClient.java

                }
                final Blob blob = getBlob(bucketName, path);
                if (blob == null) {
                    final Set<RequestData> requestDataSet = new HashSet<>();
                    final Page<Blob> blobs = storage.list(bucketName, BlobListOption.prefix(path), BlobListOption.currentDirectory());
                    for (final Blob item : blobs.iterateAll()) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/net/protocol/gcs/Handler.java

                }
            }
    
            /**
             * Gets the Blob object from GCS.
             * This method caches the response to avoid repeated calls.
             *
             * @return The Blob object
             * @throws IOException If an I/O error occurs
             */
            private Blob getBlob() throws IOException {
                if (blob == null) {
                    blob = storage.get(BlobId.of(bucketName, objectName));
                }
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  5. fess-crawler/src/test/resources/extractor/csv/test.csv

    Name,Email,Age,Department
    John Doe,******@****.***,30,Engineering
    Jane Smith,******@****.***,28,Marketing
    Bob Johnson,bob@example.com,35,Sales
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 03:46:53 UTC 2025
    - 193 bytes
    - Viewed (0)
Back to top