Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for getPoolIdxNoLock (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. cmd/erasure-server-pool.go

    	return z.getPoolIdxExistingWithOpts(ctx, bucket, object, ObjectOptions{
    		NoLock:             true,
    		SkipDecommissioned: true,
    		SkipRebalancing:    true,
    	})
    }
    
    func (z *erasureServerPools) getPoolIdxNoLock(ctx context.Context, bucket, object string, size int64) (idx int, err error) {
    	idx, err = z.getPoolIdxExistingNoLock(ctx, bucket, object)
    	if err != nil && !isErrObjectNotFound(err) {
    		return idx, err
    	}
    
    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)
Back to Top