Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 125 for attr_name (0.12 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      }
      return result;
    }
    
    // Helper method that return list of string for all the StringAttr in the
    // Attribute identified by 'attr_name'.
    std::vector<std::string> GetStringsFromDictionaryAttr(
        const llvm::SmallVector<mlir::DictionaryAttr, 4>& dict_attrs,
        const StringRef attr_name) {
      std::vector<std::string> result;
      for (const auto& arg_attr : dict_attrs) {
        if (!arg_attr) continue;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_ops.td

          %out_c, %out_tensor = "tfd.delegate_kernel"(
            %in_c, %in1_tensor, %in2_tensor) {
            _name = "MatMul",
            attr1_name = "transpose_a", attr1_value = "bool$false",
            attr2_name = "transpose_b", attr2_value = "bool$false"
          } : (!tfrt.chain, !tfd.tf_tensor, !tfd.tf_tensor) -> (
            !tfrt.chain, !tfd.tf_tensor)
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

            String tag = "tag", id = "id", css = "css", attrName = "attrName", attrValue = "attrValue";
            PrunedTag prunedtag = new PrunedTag(tag);
            prunedtag.setAttr(attrName, attrValue);
            prunedtag.setId(id);
            prunedtag.setCss(css);
            assertEquals("PrunedTag [tag=" + tag + ", id=" + id + ", css=" + css + ", attrName=" + attrName + ", attrValue=" + attrValue + "]",
                    prunedtag.toString());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. src/html/template/transition.go

    			err:   errorf(ErrBadHTML, nil, 0, "expected space, attr name, or end of tag, but got %q", s[i:]),
    		}, len(s)
    	}
    
    	attrName := strings.ToLower(string(s[i:j]))
    	if c.element == elementScript && attrName == "type" {
    		attr = attrScriptType
    	} else {
    		switch attrType(attrName) {
    		case contentTypeURL:
    			attr = attrURL
    		case contentTypeCSS:
    			attr = attrStyle
    		case contentTypeJS:
    			attr = attrScript
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/PrunedTag.java

        private String css;
        private String attrName;
        private String attrValue;
    
        public PrunedTag(final String tag) {
            this.tag = tag;
        }
    
        public boolean matches(final Node node) {
            if (tag.equalsIgnoreCase(node.getNodeName())) {
                if (attrName != null) {
                    final Node attr = node.getAttributes().getNamedItem(attrName);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/html/template/attr_string.go

    	_ = x[attrStyle-3]
    	_ = x[attrURL-4]
    	_ = x[attrSrcset-5]
    }
    
    const _attr_name = "attrNoneattrScriptattrScriptTypeattrStyleattrURLattrSrcset"
    
    var _attr_index = [...]uint8{0, 8, 18, 32, 41, 48, 58}
    
    func (i attr) String() string {
    	if i >= attr(len(_attr_index)-1) {
    		return "attr(" + strconv.FormatInt(int64(i), 10) + ")"
    	}
    	return _attr_name[_attr_index[i]:_attr_index[i+1]]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:24:07 UTC 2023
    - 719 bytes
    - Viewed (0)
  7. src/debug/dwarf/type.go

    		// Enumeration type (DWARF v2 ยง5.6)
    		// Attributes:
    		//	AttrName: enum name if any
    		//	AttrByteSize: bytes required to represent largest value
    		// Children:
    		//	TagEnumerator:
    		//		AttrName: name of constant
    		//		AttrConstValue: value of constant
    		t := new(EnumType)
    		typ = t
    		typeCache[off] = t
    		t.EnumName, _ = e.Val(AttrName).(string)
    		t.Val = make([]*EnumValue, 0, 8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_netbsd.go

    //sys	ExtattrSetFile(file string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error)
    //sys	ExtattrDeleteFile(file string, attrnamespace int, attrname string) (err error)
    //sys	ExtattrListFile(file string, attrnamespace int, data uintptr, nbytes int) (ret int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd.go

    //sys	ExtattrSetFile(file string, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error)
    //sys	ExtattrDeleteFile(file string, attrnamespace int, attrname string) (err error)
    //sys	ExtattrListFile(file string, attrnamespace int, data uintptr, nbytes int) (ret int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. src/syscall/zsysnum_netbsd_amd64.go

    	SYS_EXTATTR_SET_FD       = 364 // { int|sys||extattr_set_fd(int fd, int attrnamespace, const char *attrname, const void *data, size_t nbytes); }
    	SYS_EXTATTR_GET_FD       = 365 // { ssize_t|sys||extattr_get_fd(int fd, int attrnamespace, const char *attrname, void *data, size_t nbytes); }
    	SYS_EXTATTR_DELETE_FD    = 366 // { int|sys||extattr_delete_fd(int fd, int attrnamespace, const char *attrname); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
Back to top