Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for verifyDep (0.27 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. 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)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

                     "enabled"),
                 std::nullopt;
        }
    
        auto builtin_code = GetBuiltinOpCode(inst);
        if (!builtin_code) {
          if (auto verify_op = dyn_cast<mlir::TFL::NumericVerifyOp>(inst)) {
            return BuildNumericVerifyOperator(verify_op, operands, results);
          }
          if (auto custom_op = dyn_cast<mlir::TFL::CustomOp>(inst)) {
            return BuildCustomOperator(inst, custom_op, operands, results);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top