Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 158 for replicaSet (0.16 sec)

  1. docs/site-replication/run-multi-site-oidc.sh

    	exit_1
    fi
    
    # force a resync after removing all site replication
    ./mc admin replicate rm --all --force minio1
    ./mc rb minio2 --force --dangerous
    ./mc admin replicate add minio1 minio2
    ./mc admin replicate resync start minio1 minio2
    sleep 30
    
    ./mc ls -r --versions minio1/newbucket >/tmp/minio1.txt
    ./mc ls -r --versions minio2/newbucket >/tmp/minio2.txt
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. docs/site-replication/run-multi-site-ldap.sh

    	exit_1
    fi
    
    # force a resync after removing all site replication
    ./mc admin replicate rm --all --force minio1
    ./mc rb minio2 --force --dangerous
    ./mc admin replicate add minio1 minio2
    ./mc admin replicate resync start minio1 minio2
    sleep 30
    
    ./mc ls -r --versions minio1/newbucket >/tmp/minio1.txt
    ./mc ls -r --versions minio2/newbucket >/tmp/minio2.txt
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tpu_dynamic_layout_pass.cc

    }
    
    // Performs transformation for replicated inputs. Returns true if this is a
    // supported case (thus transform happened).
    bool HandleReplicatedInputs(
        const int64_t execute_arg_index, Value compilation_key,
        tf_device::LaunchOp execute_launch, tf_device::LaunchOp compile_launch,
        mlir::BlockArgument replicate_arg, tf_device::ReplicateOp replicate,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_device.cc

        const auto& replicated_input = replicated_input_and_idx.value();
        // Check if replicated input matches `n`.
        if (replicated_input.size() != *n)
          return parser->emitError(loc)
                 << "expects number of operands for replicated input " << idx
                 << " to be 'n' (" << *n << "), got " << replicated_input.size();
    
        // Resolve replicated input and block argument type.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

        computation is replicated (`num_replicas` > 1), the `num_replicas` attribute is
        not copied over but instead the `tf_device.cluster` is further wrapped with a
        `tf_device.replicate`, and associated `tf.TPUReplicatedInput` and
        `tf.TPUReplicatedOutput` ops are replaced as the `tf_device.replicate` operands
        and results. Otherwise, the single operands and results of the associated
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

                                partitioned_result_types.end());
          }
        }
      }
      return result_types;
    }
    
    // Creates a `tf_device.replicate` to represent replication for the cluster, if
    // necessary. Erases Identity ops between partitioned and replicated output ops.
    LogicalResult ReplicateCluster(mlir::tf_device::ClusterOp cluster,
                                   int num_replicas, int num_cores_per_replica) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  7. cmd/bucket-replication.go

    			}
    			if oi.DeleteMarker && (validReplStatus || replicate) {
    				dsc.Set(newReplicateTargetDecision(tgtArn, replicate, sync))
    				continue
    			}
    			// can be the case that other cluster is down and duplicate `mc rm --vid`
    			// is issued - this still needs to be replicated back to the other target
    			if !oi.VersionPurgeStatus.Empty() {
    				replicate = oi.VersionPurgeStatus == Pending || oi.VersionPurgeStatus == Failed
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  8. cmd/bucket-replication-utils.go

    		}
    	}
    	return
    }
    
    type replicateTargetDecision struct {
    	Replicate   bool   // Replicate to this target
    	Synchronous bool   // Synchronous replication configured.
    	Arn         string // ARN of replication target
    	ID          string
    }
    
    func (t *replicateTargetDecision) String() string {
    	return fmt.Sprintf("%t;%t;%s;%s", t.Replicate, t.Synchronous, t.Arn, t.ID)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. cmd/metrics-v3-bucket-replication.go

    	bucketReplSentBytesMD = NewCounterMD(bucketReplSentBytes,
    		"Total number of bytes replicated to the target",
    		bucketL)
    	bucketReplSentCountMD = NewCounterMD(bucketReplSentCount,
    		"Total number of objects replicated to the target",
    		bucketL)
    	bucketReplTotalFailedBytesMD = NewCounterMD(bucketReplTotalFailedBytes,
    		"Total number of bytes failed at least once to replicate since server start",
    		bucketL)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

      func.return %5#0, %5#1, %7#0, %7#1 : tensor<?xi32>, tensor<?xi32>, tensor<?xi32>, tensor<?xi32>
    }
    
    // CHECK: [[REPLICATE:%.+]]:4 = tf_device.replicate
    // CHECK: return [[REPLICATE]]#0, [[REPLICATE]]#2, [[REPLICATE]]#1, [[REPLICATE]]#3
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top