Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for verifyDep (0.08 sec)

  1. cmd/erasure-healing-common.go

    			continue
    		}
    
    		var (
    			verifyErr  error
    			verifyResp *CheckPartsResp
    		)
    
    		meta.DataDir = latestMeta.DataDir
    		switch scanMode {
    		case madmin.HealDeepScan:
    			// disk has a valid xl.meta but may not have all the
    			// parts. This is considered an outdated disk, since
    			// it needs healing too.
    			verifyResp, verifyErr = onlineDisk.VerifyFile(ctx, bucket, object, meta)
    		default:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    		expected_op_map := tc.expected_attaches
    		plugin_map := testPlugin.GetAttachedVolumes()
    		verify_op := "attach"
    		volFound, nodeFound := false, false
    		for i := 0; i <= 1; i++ { // verify attaches and detaches
    			if i == 1 {
    				expected_op_map = tc.expected_detaches
    				plugin_map = testPlugin.GetDetachedVolumes()
    				verify_op = "detach"
    			}
    			// Verify every (node, volume) in the expected_op_map is in the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. cmd/storage-rest-client.go

    	}
    
    	respReader, err := waitForHTTPResponse(respBody)
    	if err != nil {
    		return nil, toStorageErr(err)
    	}
    
    	verifyResp := &CheckPartsResp{}
    	if err = gob.NewDecoder(respReader).Decode(verifyResp); err != nil {
    		return nil, toStorageErr(err)
    	}
    
    	return verifyResp, nil
    }
    
    func (client *storageRESTClient) StatInfoFile(ctx context.Context, volume, path string, glob bool) (stat []StatInfo, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.4K bytes
    - Viewed (0)
Back to top