Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getEndpointStrings (0.25 sec)

  1. cmd/erasure-sets.go

    				defaultParityCount: defaultParityCount,
    				getDisks:           s.GetDisks(i),
    				getLockers:         s.GetLockers(i),
    				getEndpoints:       s.GetEndpoints(i),
    				getEndpointStrings: s.GetEndpointStrings(i),
    				nsMutex:            mutex,
    			}
    		}(i)
    	}
    
    	wg.Wait()
    
    	// start cleanup stale uploads go-routine.
    	go s.cleanupStaleUploads(ctx)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. cmd/erasure.go

    	// some may be local and some remote.
    	getEndpoints func() []Endpoint
    
    	// getEndpoints returns list of endpoint strings belonging this set.
    	// some may be local and some remote.
    	getEndpointStrings func() []string
    
    	// Locker mutex map.
    	nsMutex *nsLockMap
    }
    
    // NewNSLock - initialize a new namespace RWLocker instance.
    func (er erasureObjects) NewNSLock(bucket string, objects ...string) RWLocker {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. cmd/erasure-healing.go

    	opts.Tags = map[string]interface{}{
    		"healResult": result,
    		"objectLocation": auditObjectOp{
    			Name:   decodeDirObject(object),
    			Pool:   er.poolIndex + 1,
    			Set:    er.setIndex + 1,
    			Drives: er.getEndpointStrings(),
    		},
    	}
    
    	auditLogInternal(ctx, opts)
    }
    
    // Heals an object by re-writing corrupt/missing erasure blocks.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
Back to top