- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 36 for budget (0.03 sec)
-
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); } } @OverrideRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 10.3K bytes - Viewed (0) -
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) -
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) -
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) -
fess-crawler/src/main/java/org/codelibs/fess/net/protocol/s3/Handler.java
* * <p> * The connection extracts bucket and object names from the URL and uses environment * variables for authentication and endpoint configuration. * </p> */ public class S3URLConnection extends URLConnection { /** The AWS S3 client for storage operations */ private S3Client s3Client; /** The name of the storage bucket */ private String bucketName;Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 07:57:44 UTC 2025 - 9.5K bytes - Viewed (0) -
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) -
fess-crawler/src/main/java/org/codelibs/fess/net/protocol/gcs/Handler.java
* * <p> * The connection extracts bucket and object names from the URL and uses environment * variables for authentication and endpoint configuration. * </p> */ public class GcsURLConnection extends URLConnection { /** The GCS Storage client for storage operations */ private Storage storage; /** The name of the storage bucket */ private String bucketName;Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 9.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/gcs/HandlerTest.java
assertEquals("my-bucket-name", getField(gcsConn, "bucketName")); assertEquals("object.txt", getField(gcsConn, "objectName")); } /** * Test URL parsing with dots in bucket name. */ public void test_urlParsing_dotsInBucket() throws Exception { URL url = new URL("gcs://my.bucket.name/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) -
android/guava/src/com/google/common/collect/HashBiMap.java
private transient int size; private transient int modCount; /** Maps a bucket to the "entry" of its first element. */ private transient int[] hashTableKToV; /** Maps a bucket to the "entry" of its first element. */ private transient int[] hashTableVToK; /** Maps an "entry" to the "entry" that follows it in its bucket. */ private transient int[] nextInBucketKToV;
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Dec 16 14:46:34 UTC 2025 - 37.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/storage/HandlerTest.java
assertEquals("my-bucket-name", getField(storageConn, "bucketName")); assertEquals("object.txt", getField(storageConn, "objectName")); } /** * Test URL parsing with dots in bucket name. */ public void test_urlParsing_dotsInBucket() throws Exception { URL url = new URL("storage://my.bucket.name/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)