Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for toc (0.13 sec)

  1. src/archive/zip/reader_test.go

    		// 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
    		// non-zero and only the second line above, the TOC,
    		// is what matters.
    	})
    }
    
    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. api/go1.5.txt

    pkg debug/elf, const R_PPC64_TLSGD = 107
    pkg debug/elf, const R_PPC64_TLSGD R_PPC64
    pkg debug/elf, const R_PPC64_TLSLD = 108
    pkg debug/elf, const R_PPC64_TLSLD R_PPC64
    pkg debug/elf, const R_PPC64_TOC = 51
    pkg debug/elf, const R_PPC64_TOC R_PPC64
    pkg debug/elf, const R_PPC64_TOC16 = 47
    pkg debug/elf, const R_PPC64_TOC16 R_PPC64
    pkg debug/elf, const R_PPC64_TOC16_DS = 63
    pkg debug/elf, const R_PPC64_TOC16_DS R_PPC64
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  3. src/archive/zip/reader.go

    				}
    			} else if r.hash.Sum32() != r.f.CRC32 {
    				err = ErrChecksum
    			}
    		} else {
    			// If there's not a data descriptor, we still compare
    			// the CRC32 of what we've read against the file header
    			// or TOC's CRC32, if it seems like it was set.
    			if r.f.CRC32 != 0 && r.hash.Sum32() != r.f.CRC32 {
    				err = ErrChecksum
    			}
    		}
    	}
    	r.err = err
    	return
    }
    
    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)
Back to top