Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for currentDisksInfo (0.24 sec)

  1. cmd/format-erasure.go

    	newFormats := make([][]*formatErasureV3, setCount)
    	for i := range refFormat.Erasure.Sets {
    		newFormats[i] = make([]*formatErasureV3, setDriveCount)
    	}
    	currentDisksInfo := make([][]DiskInfo, setCount)
    	for i := range refFormat.Erasure.Sets {
    		currentDisksInfo[i] = make([]DiskInfo, setDriveCount)
    	}
    	for i := range refFormat.Erasure.Sets {
    		for j := range refFormat.Erasure.Sets[i] {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 15:54:03 GMT 2024
    - 23.2K bytes
    - Viewed (0)
  2. cmd/erasure-sets.go

    			errCorruptedFormat))
    		return res, errCorruptedFormat
    	}
    
    	formatOpID := mustGetUUID()
    
    	// Initialize a new set of set formats which will be written to disk.
    	newFormatSets, currentDisksInfo := newHealFormatSets(refFormat, s.setCount, s.setDriveCount, formats, sErrs)
    
    	if !dryRun {
    		tmpNewFormats := make([]*formatErasureV3, s.setCount*s.setDriveCount)
    		for i := range newFormatSets {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 20:08:20 GMT 2024
    - 37.7K bytes
    - Viewed (5)
Back to top