Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for fmtStr (0.14 sec)

  1. src/archive/tar/writer.go

    // templateV7Plus or writeRawFile.
    func (tw *Writer) templateV7Plus(hdr *Header, fmtStr stringFormatter, fmtNum numberFormatter) *block {
    	tw.blk.reset()
    
    	modTime := hdr.ModTime
    	if modTime.IsZero() {
    		modTime = time.Unix(0, 0)
    	}
    
    	v7 := tw.blk.toV7()
    	v7.typeFlag()[0] = hdr.Typeflag
    	fmtStr(v7.name(), hdr.Name)
    	fmtStr(v7.linkName(), hdr.Linkname)
    	fmtNum(v7.mode(), hdr.Mode)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. src/crypto/aes/asm_ppc64x.s

    	ADD	$0x10, PTR, PTR    // addi  6,6,0x10   PTR to next 16 bytes of RCON
    	MOVD	$8, CNT            // li    7,8        CNT = 8
    	VXOR	ZERO, ZERO, ZERO   // vxor  0,0,0      Zero to be zero :)
    	MOVD	CNT, CTR           // mtctr 7          Set the counter to 8 (rounds)
    
    	// The expanded decrypt key is the expanded encrypt key stored in reverse order.
    	// Move OUTDEC to the last key location, and store in descending order.
    	ADD	$160, OUTDEC, OUTDEC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. src/encoding/xml/marshal.go

    		}
    		if name == "" {
    			return &UnsupportedTypeError{typ}
    		}
    		start.Name.Local = name
    	}
    
    	// Attributes
    	for i := range tinfo.fields {
    		finfo := &tinfo.fields[i]
    		if finfo.flags&fAttr == 0 {
    			continue
    		}
    		fv := finfo.value(val, dontInitNilPointers)
    
    		if finfo.flags&fOmitEmpty != 0 && (!fv.IsValid() || isEmptyValue(fv)) {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
Back to top