Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 452 for iattr (0.04 sec)

  1. src/time/zoneinfo_read.go

    		//	10	meth[2]
    		//	12	modtime[2]
    		//	14	moddate[2]
    		//	16	crc[4]
    		//	20	csize[4]
    		//	24	uncsize[4]
    		//	28	namelen[2]
    		//	30	xlen[2]
    		//	32	fclen[2]
    		//	34	disknum[2]
    		//	36	iattr[2]
    		//	38	eattr[4]
    		//	42	off[4]
    		//	46	name[namelen]
    		//	46+namelen+xlen+fclen - next header
    		//
    		if get4(buf) != zcheader {
    			break
    		}
    		meth := get2(buf[10:])
    		size := get4(buf[24:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. src/log/slog/attr.go

    // an Attr with that value.
    func Int(key string, value int) Attr {
    	return Int64(key, int64(value))
    }
    
    // Uint64 returns an Attr for a uint64.
    func Uint64(key string, v uint64) Attr {
    	return Attr{key, Uint64Value(v)}
    }
    
    // Float64 returns an Attr for a floating-point number.
    func Float64(key string, v float64) Attr {
    	return Attr{key, Float64Value(v)}
    }
    
    // Bool returns an Attr for a bool.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 18:23:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. src/encoding/xml/read_test.go

    	BFalse bool    `xml:",attr"`
    	BTrue  bool    `xml:",attr"`
    	I      int     `xml:",attr"`
    	INeg   int     `xml:",attr"`
    	I8     int8    `xml:",attr"`
    	I8Neg  int8    `xml:",attr"`
    	I16    int16   `xml:",attr"`
    	I16Neg int16   `xml:",attr"`
    	I32    int32   `xml:",attr"`
    	I32Neg int32   `xml:",attr"`
    	I64    int64   `xml:",attr"`
    	I64Neg int64   `xml:",attr"`
    	UI     uint    `xml:",attr"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  4. docs/debugging/xattr/main.go

    			names = append(names, attrs...)
    		} else {
    			names = append(names, name)
    		}
    		var data [][]string
    		for _, attr := range names {
    			value, err := getxattr(path, attr)
    			if err != nil {
    				data = append(data, []string{attr, errors.Unwrap(err).Error()})
    			} else {
    				data = append(data, []string{attr, fmt.Sprintf("%d", value)})
    			}
    		}
    		table.AppendBulk(data) // Add Bulk Data
    		table.Render()
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 29 23:52:41 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/PrunedTag.java

                        }
                    }
                } else {
                    final Node idAttr = node.getAttributes().getNamedItem("id");
                    if (idAttr != null) {
                        final String value = idAttr.getNodeValue();
                        return id.equals(value);
                    }
                }
            }
            return false;
        }
    
        @Override
    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/cmd/vendor/golang.org/x/tools/go/analysis/passes/slog/slog.go

    						// t must be an empty interface. So it can also be an Attr.
    						// We don't know enough to make an assumption.
    						pos = unknown
    						continue
    					} else if attrType != nil && types.AssignableTo(attrType, t) {
    						// Assume it is an Attr.
    						pos = key
    						continue
    					}
    					// Can't be either a string or Attr. Definitely an error.
    					fallthrough
    				default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. src/html/template/transition.go

    			attr = attrURL
    		case contentTypeCSS:
    			attr = attrStyle
    		case contentTypeJS:
    			attr = attrScript
    		case contentTypeSrcset:
    			attr = attrSrcset
    		}
    	}
    
    	if j == len(s) {
    		state = stateAttrName
    	} else {
    		state = stateAfterName
    	}
    	return context{state: state, element: c.element, attr: attr}, j
    }
    
    // tAttrName is the context transition function for stateAttrName.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. src/encoding/xml/read.go

    		// Recur to read element into slice.
    		if err := d.unmarshalAttr(val.Index(n), attr); err != nil {
    			val.SetLen(n)
    			return err
    		}
    		return nil
    	}
    
    	if val.Type() == attrType {
    		val.Set(reflect.ValueOf(attr))
    		return nil
    	}
    
    	return copyValue(val, []byte(attr.Value))
    }
    
    var (
    	attrType            = reflect.TypeFor[Attr]()
    	unmarshalerType     = reflect.TypeFor[Unmarshaler]()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  9. src/encoding/xml/marshal.go

    func (p *printer) marshalAttr(start *StartElement, name Name, val reflect.Value) error {
    	if val.CanInterface() && val.Type().Implements(marshalerAttrType) {
    		attr, err := val.Interface().(MarshalerAttr).MarshalXMLAttr(name)
    		if err != nil {
    			return err
    		}
    		if attr.Name.Local != "" {
    			start.Attr = append(start.Attr, attr)
    		}
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  10. src/debug/dwarf/const.go

    	AttrHighpc         Attr = 0x12
    	AttrLanguage       Attr = 0x13
    	AttrDiscr          Attr = 0x15
    	AttrDiscrValue     Attr = 0x16
    	AttrVisibility     Attr = 0x17
    	AttrImport         Attr = 0x18
    	AttrStringLength   Attr = 0x19
    	AttrCommonRef      Attr = 0x1A
    	AttrCompDir        Attr = 0x1B
    	AttrConstValue     Attr = 0x1C
    	AttrContainingType Attr = 0x1D
    	AttrDefaultValue   Attr = 0x1E
    	AttrInline         Attr = 0x20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 13.8K bytes
    - Viewed (0)
Back to top