Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Trivedi (0.21 sec)

  1. cmd/erasure-sets.go

    	}
    	if diskID == offlineDiskUUID {
    		return -1, -1, fmt.Errorf("DriveID: %s is offline", diskID)
    	}
    	for i := 0; i < len(refFormat.Erasure.Sets); i++ {
    		for j := 0; j < len(refFormat.Erasure.Sets[0]); j++ {
    			if refFormat.Erasure.Sets[i][j] == diskID {
    				return i, j, nil
    			}
    		}
    	}
    
    	return -1, -1, fmt.Errorf("DriveID: %s not found", diskID)
    }
    
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Thu Apr 11 17:45:28 GMT 2024
    - 37.6K bytes
    - Viewed (5)
  2. cmd/format-erasure.go

    	for i := 0; i < len(tmpFormat.Erasure.Sets); i++ {
    		for j := 0; j < len(tmpFormat.Erasure.Sets[i]); j++ {
    			if this == tmpFormat.Erasure.Sets[i][j] {
    				return nil
    			}
    		}
    	}
    	return fmt.Errorf("DriveID %s not found in any drive sets %s", this, format.Erasure.Sets)
    }
    
    // saveFormatErasureAll - populates `format.json` on disks in its order.
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 27.8K bytes
    - Viewed (0)
  3. cmd/erasure-server-pool.go

    		for setIdx, set := range format.Erasure.Sets {
    			for i, diskID := range set {
    				if diskID == id {
    					return poolIdx, setIdx, i, nil
    				}
    			}
    		}
    	}
    	return -1, -1, -1, fmt.Errorf("DriveID(%s) %w", id, errDiskNotFound)
    }
    
    const (
    	vmware = "VMWare"
    )
    
    // HealthOptions takes input options to return specific information
    type HealthOptions struct {
    	Maintenance    bool
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 77.8K bytes
    - Viewed (0)
  4. RELEASE.md

        `Model.predict`, and `Model.evaluate` for a significant performance boost.
    
    ## Thanks to our Contributors
    
    This release contains contributions from many people at Google, as well as:
    
    Plain Text
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Wed Apr 03 20:27:38 GMT 2024
    - 727.4K bytes
    - Viewed (8)
Back to top