Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 48 for exploded (0.17 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

          TensorType expanded_type = input_type.clone(input_shape);
          input = rewriter.create<TFL::ExpandDimsOp>(op.getLoc(), expanded_type,
                                                     input, dim);
    
          // Update expanded dimension in the input dimensions for the next
          // iteration.
          input_dims.push_back(static_cast<int64_t>(dim_to_expand));
        }
        return input;
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    	// object layer not initialized we return with no decision.
    	if newObjectLayerFn() == nil {
    		return
    	}
    
    	// Disable server-side replication on object prefixes which are excluded
    	// from versioning via the MinIO bucket versioning extension.
    	if !globalBucketVersioningSys.PrefixEnabled(bucket, object) {
    		return
    	}
    
    	replStatus := mopts.ReplicationStatus()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/bootstrap.min.js.map

    .removeClass(ClassName.COLLAPSE)\n      .addClass(ClassName.COLLAPSING)\n\n    this._element.style[dimension] = 0\n\n    if (this._triggerArray.length) {\n      $(this._triggerArray)\n        .removeClass(ClassName.COLLAPSED)\n        .attr('aria-expanded', true)\n    }\n\n    this.setTransitioning(true)\n\n    const complete = () => {\n      $(this._element)\n        .removeClass(ClassName.COLLAPSING)\n        .addClass(ClassName.COLLAPSE)\n        .addClass(ClassName.SHOW)\n\n      this._element.style[dimension]...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (0)
  4. src/main/webapp/js/bootstrap.min.js.map

    .removeClass(ClassName.COLLAPSE)\n      .addClass(ClassName.COLLAPSING)\n\n    this._element.style[dimension] = 0\n\n    if (this._triggerArray.length) {\n      $(this._triggerArray)\n        .removeClass(ClassName.COLLAPSED)\n        .attr('aria-expanded', true)\n    }\n\n    this.setTransitioning(true)\n\n    const complete = () => {\n      $(this._element)\n        .removeClass(ClassName.COLLAPSING)\n        .addClass(ClassName.COLLAPSE)\n        .addClass(ClassName.SHOW)\n\n      this._element.style[dimension]...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 11 06:54:28 UTC 2020
    - 189.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    // dimensions i.e. foo[:, :, 3:, 2].
    static void BuildDenseSliceSpec(const SparseSliceSpec &sparse,
                                    DenseSliceSpec *dense) {
      // Build expanded dense begin, end, strides, begin_mask, end_mask, and
      // shrink_axis_mask.
      dense->begin.resize(dense->dims);
      dense->end.resize(dense->dims);
      dense->strides.resize(dense->dims);
      dense->begin_mask = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.4.md

          * all docker labels were exported as `container_label_*=*`
        * New behavior:
          * Only `container_name`, `pod_name`, `namespace`, `id`, `image`, and `name` labels are exposed
          * no environment variables will be exposed ever via /metrics, even if whitelisted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    // As a last step before running the command, any invocations of any
    // environment variables with alphanumeric names, such as $GOFILE or
    // $HOME, are expanded throughout the command line. The syntax for
    // variable expansion is $NAME on all operating systems. Due to the
    // order of evaluation, variables are expanded even inside quoted
    // strings. If the variable NAME is not set, $NAME expands to the
    // empty string.
    //
    // A directive of the form,
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * returned is suitable for constructing a {@link java.util.Date} object
     * (i.e. seconds since Epoch 1970). Times should be the same as those
     * reported using the properties dialog of the Windows Explorer program.
     *
     * For Win95/98/Me this is actually the last write time. It is currently
     * not possible to retrieve the create time from files on these systems.
     *
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    func (kl *Kubelet) filterOutInactivePods(pods []*v1.Pod) []*v1.Pod {
    	filteredPods := make([]*v1.Pod, 0, len(pods))
    	for _, p := range pods {
    		// if a pod is fully terminated by UID, it should be excluded from the
    		// list of pods
    		if kl.podWorkers.IsPodKnownTerminated(p.UID) {
    			continue
    		}
    
    		// terminal pods are considered inactive UNLESS they are actively terminating
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

    arith::ConstantOp ExpandedShape(PatternRewriter& rewriter, Value input,
                                    DenseIntElementsAttr broadcast_dimensions,
                                    Value output) {
      // Initialize expanded shape with output rank and dimensions of 1.
      SmallVector<Attribute, 4> expanded_shape(
          mlir::cast<ShapedType>(output.getType()).getRank(),
          /*Value=*/rewriter.getI64IntegerAttr(1));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top