Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Blob (0.02 sec)

  1. 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)
  2. src/main/java/org/codelibs/fess/storage/GcsStorageClient.java

        public void downloadObject(final String objectName, final OutputStream outputStream) {
            try {
                final Blob blob = storage.get(BlobId.of(bucket, objectName));
                if (blob == null) {
                    throw new StorageException("Object not found: " + objectName);
                }
                blob.downloadTo(outputStream);
            } catch (final StorageException e) {
                throw e;
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  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)
Back to top