Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for standardArExportData (0.2 sec)

  1. src/go/internal/gccgoimporter/ar.go

    	switch string(buf[:]) {
    	case armag:
    		return standardArExportData(archive)
    	case armagt:
    		return nil, errors.New("unsupported thin archive")
    	case armagb:
    		return aixBigArExportData(archive)
    	default:
    		return nil, fmt.Errorf("unrecognized archive file format %q", buf[:])
    	}
    }
    
    // standardArExportData returns export data from a standard archive.
    func standardArExportData(archive io.ReadSeeker) (io.ReadSeeker, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 14:14:36 UTC 2022
    - 4.4K bytes
    - Viewed (0)
Back to top