Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for 12 (0.56 sec)

  1. .github/ISSUE_TEMPLATE/12-telemetry.yml

    Sean Liao <******@****.***> 1700764992 +0000
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Nov 27 17:23:51 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  2. src/archive/tar/format.go

    func (h *headerGNU) devMinor() []byte    { return h[337:][:8] }
    func (h *headerGNU) accessTime() []byte  { return h[345:][:12] }
    func (h *headerGNU) changeTime() []byte  { return h[357:][:12] }
    func (h *headerGNU) sparse() sparseArray { return sparseArray(h[386:][:24*4+1]) }
    func (h *headerGNU) realSize() []byte    { return h[483:][:12] }
    
    type headerSTAR [blockSize]byte
    
    func (h *headerSTAR) v7() *headerV7      { return (*headerV7)(h) }
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 11.3K bytes
    - Viewed (0)
  3. src/bytes/bytes_test.go

    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 24 16:07:25 GMT 2024
    - 56.2K bytes
    - Viewed (0)
  4. src/archive/zip/reader_test.go

    				Modified: time.Date(2011, 12, 8, 10, 4, 24, 0, time.UTC),
    				Mode:     0666,
    			},
    			{
    				Name:     "dir/bar",
    				Content:  []byte("foo \r\n"),
    				Modified: time.Date(2011, 12, 8, 10, 4, 50, 0, time.UTC),
    				Mode:     0666,
    			},
    			{
    				Name:     "dir/empty/",
    				Content:  []byte{},
    				Modified: time.Date(2011, 12, 8, 10, 8, 6, 0, time.UTC),
    				Mode:     fs.ModeDir | 0777,
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  5. src/archive/tar/strconv_test.go

    		{0777 + 1, 4, false},
    		{0, 8, true},
    		{07777777, 8, true},
    		{07777777 + 1, 8, false},
    		{0, 12, true},
    		{077777777777, 12, true},
    		{077777777777 + 1, 12, false},
    		{math.MaxInt64, 22, true},
    		{012345670123, 12, true},
    		{01564164, 12, true},
    		{-012345670123, 12, false},
    		{-01564164, 12, false},
    		{-1564164, 30, false},
    	}
    
    	for _, v := range vectors {
    		ok := fitsInOctal(v.width, v.input)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Feb 09 05:28:50 GMT 2021
    - 14K bytes
    - Viewed (0)
  6. src/archive/zip/struct.go

    // If the offset is non-sensible, then this uses an offset of zero.
    func timeZone(offset time.Duration) *time.Location {
    	const (
    		minOffset   = -12 * time.Hour  // E.g., Baker island at -12:00
    		maxOffset   = +14 * time.Hour  // E.g., Line island at +14:00
    		offsetAlias = 15 * time.Minute // E.g., Nepal at +5:45
    	)
    	offset = offset.Round(offsetAlias)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 12.1K bytes
    - Viewed (0)
  7. src/archive/zip/reader.go

    	if maybeSig.uint32() != dataDescriptorSignature {
    		// No data descriptor signature. Keep these four
    		// bytes.
    		off += 4
    	}
    	if _, err := io.ReadFull(r, buf[off:12]); err != nil {
    		return err
    	}
    	b := readBuf(buf[:12])
    	if b.uint32() != f.CRC32 {
    		return ErrChecksum
    	}
    
    	// The two sizes that follow here can be either 32 bits or 64 bits
    	// but the spec is not very clear on this and different
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 27.7K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/buildid_linux.go

    			if len(d) < 12 {
    				t.Logf("note section %d too short (%d < 12)", i, len(d))
    				continue sections
    			}
    
    			namesz := f.ByteOrder.Uint32(d)
    			descsz := f.ByteOrder.Uint32(d[4:])
    			typ := f.ByteOrder.Uint32(d[8:])
    
    			an := (namesz + 3) &^ 3
    			ad := (descsz + 3) &^ 3
    
    			if int(12+an+ad) > len(d) {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:02 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/operand_test.go

    }
    
    var armOperandTests = []operandTest{
    	{"$0", "$0"},
    	{"$256", "$256"},
    	{"(R0)", "(R0)"},
    	{"(R11)", "(R11)"},
    	{"(g)", "(g)"},
    	{"-12(R4)", "-12(R4)"},
    	{"0(PC)", "0(PC)"},
    	{"1024", "1024"},
    	{"12(R(1))", "12(R1)"},
    	{"12(R13)", "12(R13)"},
    	{"R0", "R0"},
    	{"R0->(32-1)", "R0->31"},
    	{"R0<<R1", "R0<<R1"},
    	{"R0>>R(1)", "R0>>R1"},
    	{"R0@>(32-1)", "R0@>31"},
    	{"R1", "R1"},
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 18:31:05 GMT 2023
    - 23.9K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	ADD R8.SXTB<<3, R23, R14                   // ee8e288b
    	ADDW $3076, R17, R3                        // 23123011
    	ADDW $(3076<<12), R17, R3                  // ADDW $12599296, R17, R3           // 23127011
    	ADD $2280, R25, R11                        // 2ba32391
    	ADD $(2280<<12), R25, R11                  // ADD $9338880, R25, R11            // 2ba36391
    	ADDW R13->5, R11, R7                       // 67158d0b
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jul 24 01:11:41 GMT 2023
    - 43.9K bytes
    - Viewed (1)
Back to top