Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isMinioMetaBucketName (0.17 sec)

  1. cmd/object-api-input-checks.go

    }
    
    // Checks bucket and object name validity, returns nil if both are valid.
    func checkBucketAndObjectNames(ctx context.Context, bucket, object string) error {
    	// Verify if bucket is valid.
    	if !isMinioMetaBucketName(bucket) && s3utils.CheckValidBucketNameStrict(bucket) != nil {
    		return BucketNameInvalid{Bucket: bucket}
    	}
    	// Verify if object is valid.
    	if len(object) == 0 {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 5.7K bytes
    - Viewed (0)
  2. cmd/peer-s3-server.go

    			UUID:     "",
    			Endpoint: localDrives[i].String(),
    			State:    beforeState[i],
    		})
    	}
    
    	// check dangling and delete bucket only if its not a meta bucket
    	if !isMinioMetaBucketName(bucket) && !isAllBucketsNotFound(errs) && opts.Remove {
    		g := errgroup.WithNErrs(len(localDrives))
    		for index := range localDrives {
    			index := index
    			g.Go(func() error {
    				if localDrives[index] == nil {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Mar 08 19:08:18 GMT 2024
    - 8.4K bytes
    - Viewed (0)
Back to top