Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for replicaSet (0.31 sec)

  1. pkg/controlplane/storageversionhashdata/data.go

    	"apps/v1/daemonsets":                                                "dd7pWHUlMKQ=",
    	"apps/v1/deployments":                                               "8aSe+NMegvE=",
    	"apps/v1/replicasets":                                               "P1RzHs8/mWQ=",
    	"apps/v1/statefulsets":                                              "H+vl74LkKdo=",
    	"admissionregistration.k8s.io/v1/mutatingwebhookconfigurations":     "Sqi0GUgDaX0=",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. docs/bucket/replication/delete-replication.sh

    ./mc ready myminio1
    ./mc ready myminio2
    
    ./mc mb myminio1/testbucket/
    ./mc version enable myminio1/testbucket/
    ./mc mb myminio2/testbucket/
    ./mc version enable myminio2/testbucket/
    
    ./mc replicate add myminio1/testbucket --remote-bucket http://minioadmin:minioadmin@localhost:9002/testbucket/ --priority 1
    
    ./mc cp README.md myminio1/testbucket/dir/file
    ./mc cp README.md myminio1/testbucket/dir/file
    
    sleep 1s
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. buildscripts/disable-root.sh

    export MC_HOST_sitea=http://minioadmin:minioadmin@127.0.0.1:9001
    export MC_HOST_siteb=http://minioadmin:minioadmin@127.0.0.1:9004
    
    ./mc ready sitea
    ./mc ready siteb
    
    ./mc admin replicate add sitea siteb
    
    ./mc admin user add sitea foobar foo12345
    
    ./mc admin policy attach sitea/ consoleAdmin --user=foobar
    
    ./mc admin user info siteb foobar
    
    killall -9 minio
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/convert_to_legacy_compile_and_replicate_attributes.mlir

    // RUN: tf-opt %s -split-input-file -verify-diagnostics -tf-convert-to-legacy-compile-and-replicate-attributes | FileCheck %s
    
    // CHECK-LABEL: func @convert_to_legacy_attribute
    func.func @convert_to_legacy_attribute(%arg0: tensor<*xf32>, %arg1: tensor<f32>, %arg2: tensor<f32>) -> tensor<*xf32> attributes {tf._disable_call_shape_inference = true, tf.signature.is_stateful} {
      // CHECK-NOT: _replication_info =
      %0 = tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/transforms.cc

      pm.addNestedPass<func::FuncOp>(createOptimizePass());
      // Conditionally enable below pass because this causes unfused convolutions
      // described in b/293149194. This problem is not replicated in
      // StableHLO Quantizer.
      if (add_fold_broadcast_pass) {
        pm.addNestedPass<func::FuncOp>(createFoldBroadcastPass());
      }
    
      // Rewrites legacy StableHLO ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 04:34:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. .github/workflows/multipart/migrate.sh

    sleep 30s
    
    ./mc alias set site1 http://site1-nginx:9001 minioadmin minioadmin --api s3v4
    ./mc alias set site2 http://site2-nginx:9002 minioadmin minioadmin --api s3v4
    
    ./mc ready site1/
    ./mc ready site2/
    
    ./mc admin replicate add site1 site2
    ./mc mb site1/testbucket/
    ./mc cp -r --quiet /usr/bin site1/testbucket/
    
    sleep 5
    
    ./s3-check-md5 -h
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/mlir_bridge_pass_util.cc

                           const FunctionLibraryDefinition* function_library) {
      auto predicate = [](const Graph& graph) {
        for (const Node* node : graph.nodes()) {
          // _tpu_replicate is used in replicated TPU graphs. It will be converted
          // to_replication_info and _xla_compile_device_type in phase 1 pipelines.
          if (node->attrs().FindByString(std::string(kTpuReplicateAttr))) {
            return true;
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 12:22:33 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_outline_tpu_island.cc

          // Island was marked to be skipped.
          return WalkResult::advance();
        }
        for (Operation &op : island_op.GetBody().without_terminator()) {
          if (isa<TF::TPUReplicateMetadataOp>(&op)) {
            // Handle replicated TPU case.
            islands_to_outline.push_back(island_op);
            break;
          }
          auto device_type =
              op.getAttrOfType<StringAttr>(TF::kCompileDeviceTypeAttr);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. pkg/test/framework/components/environment/kube/settings.go

    	MCSAPIGroup string
    
    	// MCSAPIVersion the version to use for the MCS API
    	MCSAPIVersion string
    
    	// controlPlaneTopology maps each cluster to the cluster that runs its control plane. For replicated control
    	// plane cases (where each cluster has its own control plane), the cluster will map to itself (e.g. 0->0).
    	controlPlaneTopology clusterTopology
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. cmd/batch-job-common-types.go

    	var tmp retry
    	err := val.Decode(&tmp)
    	if err != nil {
    		return err
    	}
    
    	*r = BatchJobRetry(tmp)
    	r.line, r.col = val.Line, val.Column
    	return nil
    }
    
    // Validate validates input replicate retries.
    func (r BatchJobRetry) Validate() error {
    	if r.Attempts < 0 {
    		return BatchJobYamlErr{
    			line: r.line,
    			col:  r.col,
    			msg:  "Invalid arguments specified",
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top