- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for bookinfo (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/storage/GcsStorageClient.java
try { final BlobId blobId = BlobId.of(bucket, objectName); final BlobInfo blobInfo = BlobInfo.newBuilder(blobId).setContentType(contentType).build(); storage.createFrom(blobInfo, inputStream); } catch (final Exception e) { throw new StorageException("Failed to upload " + objectName, e); } }Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 10.3K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/gcs/GcsClientTest.java
storage.create(BucketInfo.newBuilder(bucketName).build()); storage.create(BlobInfo.newBuilder(BlobId.of(bucketName, "file1.txt"))// .setContentType("application/octet-stream")// .setMetadata(Map.of("label", "label1"))// .build(), "file1".getBytes()); storage.create(BlobInfo.newBuilder(BlobId.of(bucketName, "dir1/file2.txt"))//Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Dec 11 08:38:29 GMT 2025 - 19.6K bytes - Click Count (0)