Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 126 for attrName (0.14 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go

    	SYS_EXTATTR_SET_FILE         = 356 // { ssize_t extattr_set_file(const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }
    	SYS_EXTATTR_GET_FILE         = 357 // { ssize_t extattr_get_file(const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go

    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(attrname)
    	if err != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  3. src/syscall/zsysnum_freebsd_arm64.go

    	SYS_EXTATTR_SET_FILE         = 356 // { ssize_t extattr_set_file( const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }
    	SYS_EXTATTR_GET_FILE         = 357 // { ssize_t extattr_get_file( const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java

                return true;
            }
            return false;
        }
    
        public void addChildUrlRule(final String tagName, final String attrName) {
            if (StringUtil.isNotBlank(tagName) && StringUtil.isNotBlank(attrName)) {
                childUrlRuleMap.put(tagName, attrName);
            }
        }
    
        protected XPathAPI getXPathAPI() {
            XPathAPI cachedXPathAPI = xpathAPI.get();
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testplugin/testdata/checkdwarf/main.go

    	for {
    		e, err := rdr.Next()
    		if err != nil {
    			fmt.Fprintf(os.Stderr, "%s: error reading DWARF: %v\n", exePath, err)
    			os.Exit(1)
    		}
    		if e == nil {
    			break
    		}
    		name, hasname := e.Val(dwarf.AttrName).(string)
    		if !hasname {
    			continue
    		}
    		if strings.HasSuffix(name, dieSuffix) {
    			// found
    			os.Exit(0)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradleModuleMetadataParser.java

            reader.beginObject();
            while (reader.peek() != END_OBJECT) {
                String attrName = reader.nextName();
                if (reader.peek() == BOOLEAN) {
                    boolean attrValue = reader.nextBoolean();
                    attributes = attributesFactory.concat(attributes, Attribute.of(attrName, Boolean.class), attrValue);
                } else if (reader.peek() == NUMBER) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:07:04 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  7. src/mdo/writer.vm

                serializer.startTag(NAMESPACE, tagName).text(value).endTag(NAMESPACE, tagName);
            }
        }
    
        private void writeAttr(String attrName, String value, XmlSerializer serializer) throws IOException {
            if (value != null) {
                serializer.attribute(NAMESPACE, attrName, value);
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/compile/internal/ssa/stmtlines_test.go

    	must(err)
    	rdr := dw.Reader()
    	rdr.Seek(0)
    	for {
    		e, err := rdr.Next()
    		must(err)
    		if e == nil {
    			break
    		}
    		if e.Tag != dwarf.TagCompileUnit {
    			continue
    		}
    		pkgname, _ := e.Val(dwarf.AttrName).(string)
    		if pkgname == "runtime" {
    			continue
    		}
    		if pkgname == "crypto/internal/nistec/fiat" {
    			continue // golang.org/issue/49372
    		}
    		if e.Val(dwarf.AttrStmtList) == nil {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 17:05:14 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. src/debug/dwarf/attr_string.go

    	// An "invalid array index" compiler error signifies that the constant values have changed.
    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[AttrSibling-1]
    	_ = x[AttrLocation-2]
    	_ = x[AttrName-3]
    	_ = x[AttrOrdering-9]
    	_ = x[AttrByteSize-11]
    	_ = x[AttrBitOffset-12]
    	_ = x[AttrBitSize-13]
    	_ = x[AttrStmtList-16]
    	_ = x[AttrLowpc-17]
    	_ = x[AttrHighpc-18]
    	_ = x[AttrLanguage-19]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 03 17:32:37 UTC 2019
    - 7.9K bytes
    - Viewed (0)
Back to top