Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for checkset (0.76 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      StringAttr replication_attr = GetReplicationAttr(*forward_pass_ops.begin());
      llvm::SmallVector<Operation*> checkset(forward_pass_ops.getArrayRef());
      checkset.append(backward_pass_ops.begin(), backward_pass_ops.end());
      for (Operation* op : checkset) {
        if (op->getParentRegion() != region) {
          op->emitOpError() << "embedding ops in two different regions";
          return signalPassFailure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_test.cc

        CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
        TFE_Execute(op, &h, &num_retvals, status);
        CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
        CHECK_EQ(1, num_retvals);
        CHECK(h);
        CHECK_EQ(TF_FLOAT, TFE_TensorHandleDataType(h));
        CHECK_EQ(0, TFE_TensorHandleNumDims(h, status));
        CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
        h = nullptr;
        TFE_DeleteOp(op);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    ** verify the artifact using the downloaded public keys
    ** if signature verification passes, perform additional requested checksum verification
    * if it's absent, fallback to checksum verification
    
    That is to say that Gradle's verification mechanism is much stronger if signature verification is enabled than just with checksum verification.
    In particular:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v2.go

    )
    
    func (e ErasureAlgo) valid() bool {
    	return e > invalidErasureAlgo && e < lastErasureAlgo
    }
    
    // ChecksumAlgo defines common type of different checksum algorithms
    type ChecksumAlgo uint8
    
    // List of currently supported checksum algorithms
    const (
    	invalidChecksumAlgo ChecksumAlgo = 0
    	HighwayHash         ChecksumAlgo = 1
    	lastChecksumAlgo    ChecksumAlgo = 2
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_test.cc

      TF_DeviceList* device_list = list.get();
    
      CHECK_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    
      const int num_devices = TF_DeviceListCount(device_list);
      LOG(INFO) << "There are " << num_devices << " devices.";
      for (int i = 0; i < num_devices; ++i) {
        const char* device_name = TF_DeviceListName(device_list, i, s);
        CHECK_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  6. cmd/iam.go

    				logErr := fmt.Errorf("failed to delete extraneous LDAP DN mapping for `%s`: %w", origKeys[0], delErr)
    				iamLogIf(ctx, logErr)
    			}
    		}
    	}
    	return nil
    }
    
    // CheckKey validates the incoming accessKey
    func (sys *IAMSys) CheckKey(ctx context.Context, accessKey string) (u UserIdentity, ok bool, err error) {
    	if !sys.Initialized() {
    		return u, false, nil
    	}
    
    	if accessKey == globalActiveCred.AccessKey {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                slf4jLogger.info("Disabling strict checksum verification on all artifact downloads.");
            } else if (MavenExecutionRequest.CHECKSUM_POLICY_FAIL.equals(cliRequest.request.getGlobalChecksumPolicy())) {
                slf4jLogger.info("Enabling strict checksum verification on all artifact downloads.");
            }
    
            if (slf4jLogger.isDebugEnabled()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrContentChecksumMismatch: {
    		Code:           "XAmzContentChecksumMismatch",
    		Description:    "The provided 'x-amz-checksum' header does not match what was computed.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    
    	// MinIO extensions.
    	ErrStorageFull: {
    		Code:           "XMinioStorageFull",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  9. tensorflow/compiler/jit/deadness_analysis.cc

            // currently processing frame are visited before starting processing
            // other frames.
            absl::string_view frame_name =
                control_flow_info_[ready_exits.front()->id()].frame_name;
            CHECK_EQ(ready_exits.size(), num_exits_for_frame[frame_name]);
            ready.insert(ready.end(), ready_exits.begin(), ready_exits.end());
            ready_exits.clear();
          } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  10. cluster/gce/windows/k8s-node-setup.psm1

        # filesystem. It can take the values normal or full.
        #
        # storage.sync normal
    
        # storage.checksum
        # ----------------
        # enable the data integrity check when writing and reading data from the
        # filesystem. The storage layer uses the CRC32 algorithm.
        #
        # storage.checksum off
    
        # storage.backlog.mem_limit
        # -------------------------
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top