Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for replicaSet (0.25 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def ReplicateInvariantOpHoistingPass : Pass<"tf-replicate-invariant-op-hoisting", "mlir::func::FuncOp"> {
      let summary = "Hoists replicate invariant operations out of replicate";
    
      let description = [{
        This pass looks for replicate invariant ops in a `tf_device.replicate` op
        region and hoists them out. It also makes `tf.Shape` ops replicate invariant
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers.go

    		r, err := printReplicationController(&list.Items[i], options)
    		if err != nil {
    			return nil, err
    		}
    		rows = append(rows, r...)
    	}
    	return rows, nil
    }
    
    func printReplicaSet(obj *apps.ReplicaSet, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    
    	desiredReplicas := obj.Spec.Replicas
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__events.k8s.io__v1_openapi.json

                "description": "regarding contains the object this Event is about. In most cases it's an Object reporting controller implements, e.g. ReplicaSetController implements ReplicaSets and this event is emitted because it acts on some changes in a ReplicaSet object."
              },
              "related": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectReference"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 142.7K bytes
    - Viewed (0)
  4. cmd/metrics-v2.go

    			var objects, objectsFailed float64
    			var bucket string
    			switch madmin.BatchJobType(mj.JobType) {
    			case madmin.BatchJobReplicate:
    				objects = float64(mj.Replicate.Objects)
    				objectsFailed = float64(mj.Replicate.ObjectsFailed)
    				bucket = mj.Replicate.Bucket
    			case madmin.BatchJobKeyRotate:
    				objects = float64(mj.KeyRotate.Objects)
    				objectsFailed = float64(mj.KeyRotate.ObjectsFailed)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

              "interval": "1m",
              "intervalFactor": 2,
              "legendFormat": "Replicated In Objects [{{bucket}}]",
              "refId": "A"
            }
          ],
          "title": "Replicated In Objects",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 11:11:51 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

      REMAINING_MASTER_COUNT=$(gcloud compute instances list \
        --project "${PROJECT}" \
        --filter="name ~ '$(get-replica-name-regexp)'" \
        --format "value(zone)" | wc -l)
    
      # In the replicated scenario, if there's only a single master left, we should also delete load balancer in front of it.
      if [[ "${REMAINING_MASTER_COUNT}" -eq 1 ]]; then
        detect-master
        local REMAINING_REPLICA_NAME
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/s390x/asmz.go

    	op_VPDI   uint32 = 0xE784 // 	VRR-c	VECTOR PERMUTE DOUBLEWORD IMMEDIATE
    	op_VPOPCT uint32 = 0xE750 // 	VRR-a	VECTOR POPULATION COUNT
    	op_VREP   uint32 = 0xE74D // 	VRI-c	VECTOR REPLICATE
    	op_VREPI  uint32 = 0xE745 // 	VRI-a	VECTOR REPLICATE IMMEDIATE
    	op_VSCEF  uint32 = 0xE71B // 	VRV	VECTOR SCATTER ELEMENT (32)
    	op_VSCEG  uint32 = 0xE71A // 	VRV	VECTOR SCATTER ELEMENT (64)
    	op_VSEL   uint32 = 0xE78D // 	VRR-e	VECTOR SELECT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        num_partitions *= dim.cast<IntegerAttr>().getInt();
      }
    
      const bool is_packed = op.getIsPacked();
      const bool replicated = partition_dims.empty();
      const int num_inputs_expected = is_packed ? 1 : num_partitions;
    
      if (!((replicated && !is_packed) || (op.getN() == num_inputs_expected))) {
        return op.emitOpError() << "expected " << num_inputs_expected
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  9. cmd/admin-handlers.go

    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    }
    
    // SitePerfHandler -  measures network throughput between site replicated setups
    func (a adminAPIHandlers) SitePerfHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	objectAPI, _ := validateAdminReq(ctx, w, r, policy.HealthInfoAdminAction)
    	if objectAPI == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  10. cmd/object-handlers.go

    		return dsc, nil
    	})
    
    	vID := opts.VersionID
    	if replica {
    		opts.SetReplicaStatus(replication.Replica)
    		if opts.VersionPurgeStatus().Empty() {
    			// opts.VersionID holds delete marker version ID to replicate and not yet present on disk
    			vID = ""
    		}
    	}
    	opts.SetEvalRetentionBypassFn(func(goi ObjectInfo, gerr error) (err error) {
    		err = nil
    		if vID != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top