- Sort Score
- Num 10 results
- Language All
Results 1 - 9 of 9 for GetObjectTags (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/storage/StorageClient.java
*/ protected Tags getObjectTags(final String bucketName, final String path) { if (StringUtil.isEmpty(path)) { return null; } try { final GetObjectTagsArgs args = GetObjectTagsArgs.builder().bucket(bucketName).object(path).build(); return minioClient.getObjectTags(args); } catch (final ErrorResponseException e) {Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 20K bytes - Click Count (2) -
src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java
* @return map of tag key-value pairs * @throws StorageException if retrieving tags fails */ public static Map<String, String> getObjectTags(final String objectName) { try (StorageClient client = StorageClientFactory.createClient()) { return client.getObjectTags(objectName); } catch (final Exception e) { throw new StorageException("Failed to get tags from " + objectName, e); }Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 22.1K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/s3/S3Client.java
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Dec 11 08:38:29 GMT 2025 - 21.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/storage/GcsStorageClient.java
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) -
cmd/erasure-sets.go
er := s.getHashedSet(object) return er.DeleteObjectTags(ctx, bucket, object, opts) } // GetObjectTags - get object tags from an existing object func (s *erasureSets) GetObjectTags(ctx context.Context, bucket, object string, opts ObjectOptions) (*tags.Tags, error) { er := s.getHashedSet(object) return er.GetObjectTags(ctx, bucket, object, opts) } // TransitionObject - transition object content to target tier.
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 37K bytes - Click Count (1) -
cmd/object-api-interface.go
DecomTieredObject(context.Context, string, string, FileInfo, ObjectOptions) error // ObjectTagging operations PutObjectTags(context.Context, string, string, string, ObjectOptions) (ObjectInfo, error) GetObjectTags(context.Context, string, string, ObjectOptions) (*tags.Tags, error) DeleteObjectTags(context.Context, string, string, ObjectOptions) (ObjectInfo, error) }
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 17.5K bytes - Click Count (0) -
cmd/erasure-server-pool.go
return z.serverPools[idx].DeleteObjectTags(ctx, bucket, object, opts) } // GetObjectTags - get object tags from an existing object func (z *erasureServerPools) GetObjectTags(ctx context.Context, bucket, object string, opts ObjectOptions) (*tags.Tags, error) { object = encodeDirObject(object) if z.SinglePool() { return z.serverPools[0].GetObjectTags(ctx, bucket, object, opts) }
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 89.2K bytes - Click Count (0) -
cmd/erasure-object.go
return er.PutObjectTags(ctx, bucket, object, "", opts) } // GetObjectTags - get object tags from an existing object func (er erasureObjects) GetObjectTags(ctx context.Context, bucket, object string, opts ObjectOptions) (*tags.Tags, error) { // GetObjectInfo will return tag value as well
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Oct 24 04:05:31 GMT 2025 - 80.4K bytes - Click Count (0) -
cmd/object-handlers.go
return } opts, err := getOpts(ctx, r, bucket, object) if err != nil { writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL) return } ot, err := objAPI.GetObjectTags(ctx, bucket, object, opts) if err != nil { // if object/version is not found locally, but exists on peer site - proxy // the tagging request to peer site. The response to client will
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 120.6K bytes - Click Count (0)