Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Replica (0.18 sec)

  1. tensorflow/c/eager/c_api_test.cc

      TFE_Op* matmul = MatMulOp(ctx, m1, m2);
      TFE_OpSetDevice(matmul, "/job:localhost/replica:0/task:0/device:CPU:0",
                      status);
      ASSERT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      TFE_Op* matmul2 = MatMulOp(ctx, m1, m1);
      TFE_OpSetDevice(matmul2, "/job:localhost/replica:0/task:0/device:CPU:0",
                      status);
      ASSERT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Aug 03 20:50:20 GMT 2023
    - 94.6K bytes
    - Viewed (1)
  2. cmd/xl-storage-format-v2.go

    		if !ventry.Valid() {
    			return "", errors.New("internal error: invalid version entry generated")
    		}
    	}
    	updateVersion := false
    	if fi.VersionPurgeStatus().Empty() && (fi.DeleteMarkerReplicationStatus() == "REPLICA" || fi.DeleteMarkerReplicationStatus().Empty()) {
    		updateVersion = fi.MarkDeleted
    	} else {
    		// for replication scenario
    		if fi.Deleted && fi.VersionPurgeStatus() != Complete {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 23 05:07:37 GMT 2024
    - 63.6K bytes
    - Viewed (1)
  3. cmd/erasure-object.go

    	// Default deleteMarker to true if object is under versioning
    	deleteMarker := opts.Versioned
    
    	if opts.VersionID != "" {
    		// case where replica version needs to be deleted on target cluster
    		if versionFound && opts.DeleteMarkerReplicationStatus() == replication.Replica {
    			markDelete = false
    		}
    		if opts.VersionPurgeStatus().Empty() && opts.DeleteMarkerReplicationStatus().Empty() {
    			markDelete = false
    		}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 77.2K bytes
    - Viewed (2)
  4. tensorflow/c/c_api.h

    // Counts the number of elements in the device list.
    TF_CAPI_EXPORT extern int TF_DeviceListCount(const TF_DeviceList* list);
    
    // Retrieves the full name of the device (e.g. /job:worker/replica:0/...)
    // The return value will be a pointer to a null terminated string. The caller
    // must not modify or delete the string. It will be deallocated upon a call to
    // TF_DeleteDeviceList.
    //
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  5. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    .replaceAll(Pattern.quote("${fess.index.number_of_shards}"), numberOfShards)//
                    .replaceAll(Pattern.quote("${fess.index.auto_expand_replicas}"), autoExpandReplicas);
            for (final UnaryOperator<String> rule : docSettingRewriteRuleList) {
                source = rule.apply(source);
            }
            return source;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
Back to top