Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for replicaSet (0.18 sec)

  1. samples/addons/kiali.yaml

      - patch
    - apiGroups: [""]
      resources:
      - pods/portforward
      verbs:
      - create
      - post
    - apiGroups: ["extensions", "apps"]
      resources:
      - daemonsets
      - deployments
      - replicasets
      - statefulsets
      verbs:
      - get
      - list
      - watch
      - patch
    - apiGroups: ["batch"]
      resources:
      - cronjobs
      - jobs
      verbs:
      - get
      - list
      - watch
      - patch
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/cluster_tf_ops_pass.cc

        "The operation that uses the operand is on a different host than the "
        "operation that defines the op. This pass does not support cross-host data "
        "transfer yet";
    
    // The host address is identified by the job/replicate/task in the device name.
    std::string GetHost(llvm::StringRef device) {
      ParsedName parsed_name;
      DeviceNameUtils::ParseFullName(device.str(), &parsed_name);
      std::string result = DeviceNameUtils::ParsedNameToString(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v2/testdata/func_with_dead_ops.mlir

        %cst_1 = "tf.Const"() <{value = dense<0> : tensor<i32>}> : () -> tensor<i32>
        %cst_2 = "tf.Const"() <{value = dense<0> : tensor<i32>}> : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 23:22:50 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

      // ops should be executed in sequence after ops have been flattened.
      // For example, children of
      // `tf_device.parallel_execute` will be executed in parallel and
      // each replica child of a `tf_device.replicate` will be executed in parallel.
      // Otherwise, by default, an op's children will be executed in sequence.
      //
      // Two ops with the same groups and different branches are considered
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. cmd/object-api-interface.go

    	Expires              time.Time // Is only used in POST/PUT operations
    
    	DeleteMarker            bool // Is only set in DELETE operations for delete marker replication
    	CheckDMReplicationReady bool // Is delete marker ready to be replicated - set only during HEAD
    	Tagging                 bool // Is only in GET/HEAD operations to return tagging metadata along with regular metadata and body.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 20:27:52 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. src/compress/bzip2/bzip2.go

    			if repeat > 2*1024*1024 {
    				return StructuralError("repeat count too large")
    			}
    			continue
    		}
    
    		if repeat > 0 {
    			// We have decoded a complete run-length so we need to
    			// replicate the last output symbol.
    			if repeat > bz2.blockSize-bufIndex {
    				return StructuralError("repeats past end of block")
    			}
    			for i := 0; i < repeat; i++ {
    				b := mtf.First()
    				bz2.tt[bufIndex] = uint32(b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. cmd/bucket-replication-handlers.go

    // enabled for the qualifying rule. This API is a MinIO only extension provided for situations where
    // remote target is entirely lost,and previously replicated objects need to be re-synced. If resync is
    // already in progress it returns an error
    func (api objectAPIHandlers) ResetBucketReplicationStartHandler(w http.ResponseWriter, r *http.Request) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. architecture/ambient/ztunnel.md

      * While this is not needed for small scales, this is important for the long tail of massive clusters (think 1 million endpoints), where the entire set of endpoints cannot reasonably be replicated to each ztunnel.
    * It should not be client-specific.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. cmd/object-api-datatypes.go

    		DeleteMarker:               true,
    		UserDefined:                map[string]string{},
    		Checksum:                   ri.Checksum,
    	}
    }
    
    // ReplicateObjectInfo represents object info to be replicated
    type ReplicateObjectInfo struct {
    	Name                       string
    	Bucket                     string
    	VersionID                  string
    	ETag                       string
    	Size                       int64
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

              op->getAttrOfType<StringAttr>(TF::kReplicationInfoAttr)) {
        // Borrow cluster name from replication info.
        return replication_info.getValue();
      }
      // Use special cluster name for non-replicated case.
      return kNoReplicationCluster;
    }
    
    bool HasDataDependencyWithUnscheduledOp(
        Operation& op, Block* block, SmallPtrSet<Operation*, 16>& unscheduled_ops) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top