Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Sean (0.12 sec)

  1. src/archive/zip/reader.go

    		commentLen:         b.uint16(),
    	}
    	l := int(d.commentLen)
    	if l > len(b) {
    		return nil, 0, errors.New("zip: invalid comment length")
    	}
    	d.comment = string(b[:l])
    
    	// These values mean that the file can be a zip64 file
    	if d.directoryRecords == 0xffff || d.directorySize == 0xffff || d.directoryOffset == 0xffffffff {
    		p, err := findDirectory64End(r, directoryEndOffset)
    		if err == nil && p >= 0 {
    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)
  2. src/cmd/cgo/doc.go

    -extldflags='-ggdb -O3'. If any package in a build includes a .cc or
    other file compiled by the C++ compiler, the go tool will use the
    -extld option to set the host linker to the C++ compiler.
    
    These defaults mean that Go-aware build systems can ignore the linking
    changes and keep running plain 'cmd/link' and get reasonable results, but
    they can also control the linking details if desired.
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
Back to top