Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for verifyDep (0.4 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                            verifyDep(getOriginal(it), it)
                        }
    
                        configurations.destination2.dependencies.each {
                            verifyDep(getOriginal(it), it)
                        }
    
                        configurations.implementation.copy().dependencies.each {
                            verifyDep(getOriginal(it), it)
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/NtlmContext.java

            this.signKey = deriveKey(mk, C2S_SIGN_CONSTANT);
            this.verifyKey = deriveKey(mk, S2C_SIGN_CONSTANT);
    
            if ( log.isDebugEnabled() ) {
                log.debug("Sign key is " + Hexdump.toHexString(this.signKey));
                log.debug("Verify key is " + Hexdump.toHexString(this.verifyKey));
            }
    
            this.sealClientKey = deriveKey(mk, C2S_SEAL_CONSTANT);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 15.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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