Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 73 for Dadd (0.13 sec)

  1. src/archive/zip/reader_test.go

    	return messWith("crc32-not-streamed.zip", func(b []byte) {
    		// Corrupt foo.txt's final crc32 byte, in both
    		// the file header and TOC. (0x7e -> 0x7f)
    		b[0x11]++
    		b[0x9d]++
    
    		// TODO(bradfitz): add a new test that only corrupts
    		// one of these values, and verify that that's also an
    		// error. Currently, the reader code doesn't verify the
    		// fileheader and TOC's crc32 match if they're both
    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)
  2. src/cmd/asm/internal/asm/testdata/arm64.s

    	ADDW	R1, R2, R3
    	ADDW	R1, ZR, R3
    	ADD	$1, R2, R3
    	ADD	R1, R2, R3
    	ADD	R1, ZR, R3
    	ADD	$1, R2, R3
    	ADDW	$1, R2
    	ADDW	R1, R2
    	ADD	$1, R2
    	ADD	R1, R2
    	ADD	R1>>11, R2
    	ADD	R1<<22, R2
    	ADD	R1->33, R2
    	ADD	$0x000aaa, R2, R3               // ADD $2730, R2, R3                      // 43a82a91
    	ADD	$0x000aaa, R2                   // ADD $2730, R2                          // 42a82a91
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 94.9K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	ADDW R5.UXTH, R8, R9                       // 0921250b
    	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
    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)
  4. src/cmd/asm/internal/asm/testdata/arm.s

    	ADD	R0->28, R1           // 401e81e0
    	ADD	R0@>28, R1           // 601e81e0
    	ADD.S	R0<<28, R1           // 001e91e0
    	ADD.S	R0>>28, R1           // 201e91e0
    	ADD.S	R0->28, R1           // 401e91e0
    	ADD.S	R0@>28, R1           // 601e91e0
    	ADD	R0<<R1, R2, R3       // 103182e0
    	ADD	R0>>R1, R2, R3       // 303182e0
    	ADD	R0->R1, R2, R3       // 503182e0
    	ADD	R0@>R1, R2, R3       // 703182e0
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 15 20:51:01 GMT 2023
    - 69K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/cgotest/overlaydir.go

    			info, err = os.Stat(srcPath)
    			if err != nil {
    				return err
    			}
    			perm = info.Mode() & os.ModePerm
    		}
    
    		// Always copy directories (don't symlink them).
    		// If we add a file in the overlay, we don't want to add it in the original.
    		if info.IsDir() {
    			return os.MkdirAll(dstPath, perm|0200)
    		}
    
    		// If the OS supports symlinks, use them instead of copying bytes.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon May 22 20:56:09 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  6. misc/wasm/wasm_exec.html

    Use of this source code is governed by a BSD-style
    license that can be found in the LICENSE file.
    -->
    <html>
    
    <head>
    	<meta charset="utf-8">
    	<title>Go wasm</title>
    </head>
    
    <body>
    	<!--
    	Add the following polyfill for Microsoft Edge 17/18 support:
    	<script src="https://cdn.jsdelivr.net/npm/text-encoding@0.7.0/lib/encoding.min.js"></script>
    	(see https://caniuse.com/#feat=textencoder)
    	-->
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Oct 02 17:25:11 GMT 2018
    - 1.3K bytes
    - Viewed (0)
  7. src/archive/tar/fuzz_test.go

    	}
    	_, err = w.Write(inp)
    	if err != nil {
    		f.Fatalf("failed to write file to archive: %s", err)
    	}
    	if err := w.Close(); err != nil {
    		f.Fatalf("failed to write archive: %s", err)
    	}
    	f.Add(b.Bytes())
    
    	f.Fuzz(func(t *testing.T, b []byte) {
    		r := NewReader(bytes.NewReader(b))
    		type file struct {
    			header  *Header
    			content []byte
    		}
    		files := []file{}
    		for {
    			hdr, err := r.Next()
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jan 13 18:06:33 GMT 2022
    - 2.2K bytes
    - Viewed (0)
  8. src/archive/tar/strconv.go

    }
    
    func (f *formatter) formatOctal(b []byte, x int64) {
    	if !fitsInOctal(len(b), x) {
    		x = 0 // Last resort, just write zero
    		f.err = ErrFieldTooLong
    	}
    
    	s := strconv.FormatInt(x, 8)
    	// Add leading zeros, but leave room for a NUL.
    	if n := len(b) - len(s) - 1; n > 0 {
    		s = strings.Repeat("0", n) + s
    	}
    	f.formatString(b, s)
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 01 14:28:42 GMT 2023
    - 9K bytes
    - Viewed (0)
  9. api/go1.6.txt

    pkg debug/elf, const R_MIPS_32 = 2
    pkg debug/elf, const R_MIPS_32 R_MIPS
    pkg debug/elf, const R_MIPS_64 = 18
    pkg debug/elf, const R_MIPS_64 R_MIPS
    pkg debug/elf, const R_MIPS_ADD_IMMEDIATE = 34
    pkg debug/elf, const R_MIPS_ADD_IMMEDIATE R_MIPS
    pkg debug/elf, const R_MIPS_CALL16 = 11
    pkg debug/elf, const R_MIPS_CALL16 R_MIPS
    pkg debug/elf, const R_MIPS_CALL_HI16 = 30
    pkg debug/elf, const R_MIPS_CALL_HI16 R_MIPS
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Jan 13 23:40:13 GMT 2016
    - 12.9K bytes
    - Viewed (0)
  10. api/go1.18.txt

    pkg syscall (windows-amd64), func SyscallN(uintptr, ...uintptr) (uintptr, uintptr, Errno)
    pkg testing, func MainStart(testDeps, []InternalTest, []InternalBenchmark, []InternalFuzzTarget, []InternalExample) *M
    pkg testing, method (*F) Add(...interface{})
    pkg testing, method (*F) Cleanup(func())
    pkg testing, method (*F) Error(...interface{})
    pkg testing, method (*F) Errorf(string, ...interface{})
    pkg testing, method (*F) Fail()
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 13K bytes
    - Viewed (0)
Back to top