Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for disksWithAllParts (0.19 sec)

  1. cmd/erasure-healing-common_test.go

    			if !modTime.Equal(test.expectedTime) {
    				t.Fatalf("Expected modTime to be equal to %v but was found to be %v",
    					test.expectedTime, modTime)
    			}
    			availableDisks, newErrs, _ := disksWithAllParts(ctx, onlineDisks, partsMetadata,
    				test.errs, fi, bucket, object, madmin.HealDeepScan)
    			test.errs = newErrs
    
    			if test._tamperBackend != noTamper {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Jan 30 20:43:25 GMT 2024
    - 23K bytes
    - Viewed (1)
  2. cmd/erasure-healing-common.go

    	}
    
    	return onlineDisks, modTime, ""
    }
    
    // disksWithAllParts - This function needs to be called with
    // []StorageAPI returned by listOnlineDisks. Returns,
    //
    // - disks which have all parts specified in the latest xl.meta.
    //
    //   - slice of errors about the state of data files on disk - can have
    //     a not-found error or a hash-mismatch error.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 10.8K bytes
    - Viewed (0)
  3. cmd/erasure-healing.go

    	// we pass in disks as is for it to be verified. Once verified
    	// the disksWithAllParts() returns the actual disks that can be
    	// used here for reconstruction. This is done to ensure that
    	// we do not skip drives that have inconsistent metadata to be
    	// skipped from purging when they are stale.
    	availableDisks, dataErrs, _ := disksWithAllParts(ctx, onlineDisks, partsMetadata,
    		errs, latestMeta, bucket, object, scanMode)
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 06:32:14 GMT 2024
    - 33.1K bytes
    - Viewed (0)
Back to top