Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for attribute_name (0.3 sec)

  1. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

            absl::StrAppend(&new_attr_map_str, ",");
          }
    
          // Append "<identifier>:<attribute_name>". Ex) "0:transpose_a".
          const std::string identifier = std::to_string(idx);
          const StringAttr attribute_name = attribute.getName();
          absl::StrAppend(&new_attr_map_str, identifier, ":", attribute_name.str());
          owner_op->setAttr(kAttrMapAttribute,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.td

    def NamedAttributeList : NativeCodeCall<"llvm::SmallVector<NamedAttribute>{$0...}">;
    
    // Creates a NamedAttribute given its name and value. Essentially creates
    // a pair: {attribute_name, attribute_value}.
    class NamedAttr<string attr_name> :
        NativeCodeCall<"NamedAttribute{$_builder.getStringAttr(\"" # attr_name # "\"), $0}">;
    
    // Checks if the value is not defined inside a lifted function by checking the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 00:32:20 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. pkg/apis/resource/structured/namedresources/validation/validation.go

    	var allErrs field.ErrorList
    	attributeNames := sets.New[string]()
    	for i, attribute := range attributes {
    		idxPath := fldPath.Index(i)
    		attributeName := attribute.Name
    		allErrs = append(allErrs, validateAttributeName(attributeName, idxPath.Child("name"))...)
    		if attributeNames.Has(attributeName) {
    			allErrs = append(allErrs, field.Duplicate(idxPath.Child("name"), attributeName))
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:26:20 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/internal/DefaultManifest.java

            for (Object attributeKey : javaManifest.getMainAttributes().keySet()) {
                String attributeName = attributeKey.toString();
                String attributeValue = javaManifest.getMainAttributes().getValue(attributeName);
                attributes.put(attributeName, attributeValue);
            }
        }
    
        private void addJavaManifestToSections(Manifest javaManifest) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/Cookie.kt

                }
              }
              attributeName.equals("path", ignoreCase = true) -> {
                path = attributeValue
              }
              attributeName.equals("secure", ignoreCase = true) -> {
                secureOnly = true
              }
              attributeName.equals("httponly", ignoreCase = true) -> {
                httpOnly = true
              }
              attributeName.equals("samesite", ignoreCase = true) -> {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:12:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/SourceFolder.java

            this.excludes = parseNodeListAttribute(node, "excluding");
        }
    
        private List<String> parseNodeListAttribute(Node node, String attributeName) {
            Object attribute = node.attribute(attributeName);
            if (attribute == null) {
                return ImmutableList.of();
            } else {
                return Arrays.asList(((String)attribute).split("\\|"));
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/ResolutionCandidateAssessor.java

                Attribute<Object> untyped = Cast.uncheckedCast(attribute);
                String attributeName = attribute.getName();
                AttributeValue<?> consumerValue = requestedAttributes.findEntry(attributeName);
                AttributeValue<?> producerValue = candidateAttributes.findEntry(attributeName);
    
                if (consumerValue.isPresent() && producerValue.isPresent()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReader.java

        }
    
        private void checkNotNull(String value, String name, String element) {
            if (value == null) {
                String attributeName = element == null ? name : element + " " + name;
                throw new RuntimeException("Missing required attribute: " + attributeName);
            }
        }
    
        public String getGroupId() {
            String groupId = getFirstChildText(projectElement, GROUP_ID);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  9. src/internal/trace/traceviewer/static/webcomponents.min.js

    s(e,t){this.type=e,this.target=t,this.addedNodes=[],this.removedNodes=[],this.previousSibling=null,this.nextSibling=null,this.attributeName=null,this.attributeNamespace=null,this.oldValue=null}function c(e){var t=new s(e.type,e.target);return t.addedNodes=e.addedNodes.slice(),t.removedNodes=e.removedNodes.slice(),t.previousSibling=e.previousSibling,t.nextSibling=e.nextSibling,t.attributeName=e.attributeName,t.attributeNamespace=e.attributeNamespace,t.oldValue=e.oldValue,t}function l(e,t){return _=new s(e,t)}function...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    char[][] elRawName; protected int[] elRawNameEnd; protected int[] elRawNameLine; protected String[] elName; protected String[] elPrefix; protected String[] elUri; protected int[] elNamespaceCount; protected int attributeCount; protected String[] attributeName; protected int[] attributeNameHash; protected String[] attributePrefix; protected String[] attributeUri; protected String[] attributeValue; protected int namespaceEnd; protected String[] namespacePrefix; protected int[] namespacePrefixHash; protected...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 164.6K bytes
    - Viewed (0)
Back to top