Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testHeaderRoundTrip (0.52 sec)

  1. src/archive/zip/zip_test.go

    		ModifiedTime:     1234,
    		ModifiedDate:     5678,
    	}
    	testHeaderRoundTrip(fh, fh.UncompressedSize, uint64(fh.UncompressedSize), t)
    }
    
    func TestFileHeaderRoundTrip64(t *testing.T) {
    	fh := &FileHeader{
    		Name:               "foo.txt",
    		UncompressedSize64: 9876543210,
    		ModifiedTime:       1234,
    		ModifiedDate:       5678,
    	}
    	testHeaderRoundTrip(fh, uint32max, fh.UncompressedSize64, t)
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 19.5K bytes
    - Viewed (0)
  2. src/archive/tar/tar_test.go

    	}
    	if !bytes.Equal(rData, data) {
    		t.Errorf("Data mismatch.\n got %q\nwant %q", rData, data)
    	}
    }
    
    type headerRoundTripTest struct {
    	h  *Header
    	fm fs.FileMode
    }
    
    func TestHeaderRoundTrip(t *testing.T) {
    	vectors := []headerRoundTripTest{{
    		// regular file.
    		h: &Header{
    			Name:     "test.txt",
    			Mode:     0644,
    			Size:     12,
    			ModTime:  time.Unix(1360600916, 0),
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24K bytes
    - Viewed (0)
Back to top