Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for attributes_size (0.19 sec)

  1. tensorflow/cc/saved_model/bundle_v2.cc

      // Note that the root is always excluded from the search (it can never
      // be a restorable object). This matches some logic on the Python side.
      if (saved_object_node_id != 0 &&
          (trackable_object->attributes_size() > 0 ||
           trackable_object->slot_variables_size() > 0)) {
        TF_RETURN_WITH_CONTEXT_IF_ERROR(
            callback(saved_object_node_id, *trackable_object), "Unable to restore ",
            object_name);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 18:28:37 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeStaxBuilder.java

                        lName = parser.getLocalName();
                        location = locationBuilder != null ? locationBuilder.toInputLocation(parser) : null;
                        int attributesSize = parser.getAttributeCount();
                        if (attributesSize > 0 || namespacesSize > 0) {
                            attrs = new HashMap<>();
                            for (int i = 0; i < namespacesSize; i++) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeBuilder.java

                        location = locationBuilder != null ? locationBuilder.toInputLocation(parser) : null;
                        int attributesSize = parser.getAttributeCount();
                        if (attributesSize > 0) {
                            attrs = new HashMap<>();
                            for (int i = 0; i < attributesSize; i++) {
                                String aname = parser.getAttributeName(i);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top