Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 91 for Element3 (0.16 sec)

  1. src/main/webapp/js/admin/popper.min.js.map

    common to the two provided nodes\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element1\n * @argument {Element} element2\n * @returns {Element} common offset parent\n */\nexport default function findCommonOffsetParent(element1, element2) {\n  // This check is needed to avoid errors in case one of the elements isn't defined for any reason\n  if (!element1 || !element1.nodeType || !element2 || !element2.nodeType) {\n    return document.documentElement;\n  }\n\n  // Here we make sure to...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let description = [{
    This operation returns the coordinates of true elements in `condition`. The
    coordinates are returned in a 2-D tensor where the first dimension (rows)
    represents the number of true elements, and the second dimension (columns)
    represents the coordinates of the true elements. Keep in mind, the shape of
    the output tensor can vary depending on how many true values there are in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    	</li>
    	<li>An element list that does not contain any keys must
    	    list an element for each struct field in the
    	    order in which the fields are declared.
    	</li>
    	<li>If any element has a key, every element must have a key.
    	</li>
    	<li>An element list that contains keys does not need to
    	    have an element for each struct field. Omitted fields
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    static FailureOr<SmallVector<int32_t>> parseI32Array(AsmParser& parser) {
      SmallVector<int32_t> elements;
      auto elementParser = [&]() {
        int32_t element;
        if (failed(parser.parseInteger(element))) return failure();
        elements.push_back(element);
        return success();
      };
      if (parser.parseCommaSeparatedList(AsmParser::Delimiter::Square,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/bootstrap.min.js.map

    _removeElement(element) {\n    $(element).removeClass(ClassName.SHOW)\n\n    if (!$(element).hasClass(ClassName.FADE)) {\n      this._destroyElement(element)\n      return\n    }\n\n    const transitionDuration = Util.getTransitionDurationFromElement(element)\n\n    $(element)\n      .one(Util.TRANSITION_END, (event) => this._destroyElement(element, event))\n      .emulateTransitionEnd(transitionDuration)\n  }\n\n  _destroyElement(element) {\n    $(element)\n      .detach()\n      .trigger(Event.CLOSED)\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (0)
  6. src/main/webapp/js/bootstrap.min.js.map

    _removeElement(element) {\n    $(element).removeClass(ClassName.SHOW)\n\n    if (!$(element).hasClass(ClassName.FADE)) {\n      this._destroyElement(element)\n      return\n    }\n\n    const transitionDuration = Util.getTransitionDurationFromElement(element)\n\n    $(element)\n      .one(Util.TRANSITION_END, (event) => this._destroyElement(element, event))\n      .emulateTransitionEnd(transitionDuration)\n  }\n\n  _destroyElement(element) {\n    $(element)\n      .detach()\n      .trigger(Event.CLOSED)\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 11 06:54:28 UTC 2020
    - 189.9K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

              <name>licenses</name>
              <version>3.0.0+</version>
              <description>
                <![CDATA[
                This element describes all the licenses for this project.
                Each license is described by a {@code license} element, which
                is then described by additional elements.
                Projects should only list the license(s) that applies to the project
                and not the licenses that apply to dependencies.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize.cc

    ElementsAttr ExpandTo4DForConvImpl(Attribute a, bool is_depthwise) {
      auto elements = mlir::dyn_cast<DenseElementsAttr>(a);
      auto shape = elements.getType().getShape();
      if (!shape.empty()) {
        // Checks that elements are essentially 1d.
        assert(elements.getNumElements() == shape.back());
      }
      std::vector<int64_t> shape_data = {1, 1, 1, 1};
      const int vector_length = elements.getNumElements();
      if (is_depthwise)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      return nullptr;
    }
    
    // Follow the use chain of TensorList and return true iff all elements written
    // to TensorList have same static shape. If all elements have same shape, assign
    // it to `potential_element_type`.
    //
    // This can handle multiple mutations of a TensorList object and would return
    // true if across all mutations the elements written have the same shape.
    bool CanInferTensorListElementType(Value tensorlist,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

                "elements");
    
          expected_size = length;
        } else if (length != expected_size) {
          return op.emitOpError() << "requires begin, end and strides to have the "
                                     "same number of elements";
        }
      }
    
      // If strides are constants, verify that none of the element is zero.
      DenseIntElementsAttr strides;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top