Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for jar (0.13 sec)

  1. src/archive/zip/reader_test.go

    		if err != nil {
    			panic(err)
    		}
    	}
    	return bytes.NewReader(b), int64(len(b))
    }
    
    func TestIssue8186(t *testing.T) {
    	// Directory headers & data found in the TOC of a JAR file.
    	dirEnts := []string{
    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/archive/zip/reader.go

    )
    
    // A Reader serves content from a ZIP archive.
    type Reader struct {
    	r             io.ReaderAt
    	File          []*File
    	Comment       string
    	decompressors map[uint16]Decompressor
    
    	// Some JAR files are zip files with a prefix that is a bash script.
    	// The baseOffset field is the start of the zip file proper.
    	baseOffset int64
    
    	// fileList is a list of files sorted by ename,
    	// for use by the Open method.
    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