| Commit message (Expand) | Author | Age | Files | Lines |
* | packfile: get object size correctly for delta objects | Jeremy Stribling | 2019-01-31 | 2 | -1/+27 |
* | plumbing/packfile: test UpdateObjectStorage empty packfile error | Javi Fontan | 2018-12-03 | 1 | -0/+14 |
* | git: return better error message when packfile cannot be downloaded | Javi Fontan | 2018-11-30 | 1 | -1/+7 |
* | plumbing: format/packfile, performance optimizations for reading large commit... | Filip Navara | 2018-11-28 | 5 | -33/+89 |
* | Merge pull request #994 from epiclabs-io/fix-thin-pack | Máximo Cuadros | 2018-11-16 | 2 | -47/+95 |
|\ |
|
| * | plumbing/format/packfile: Added thin pack test | Javier Peletier | 2018-11-12 | 1 | -0/+50 |
| * | plumbing/format/packfile: Fix broken "thin" packfile support. Fixes #991 | Javier Peletier | 2018-10-23 | 1 | -47/+45 |
* | | Remove unused method (#1022) | Antonio Navarro Perez | 2018-11-16 | 1 | -56/+0 |
|/ |
|
* | packfile: add comment on GetSizeByOffset | Jeremy Stribling | 2018-10-15 | 1 | -0/+2 |
* | object: get object size without reading whole object | Jeremy Stribling | 2018-10-11 | 1 | -0/+16 |
* | Expose Storage cache. | kuba-- | 2018-09-07 | 1 | -4/+3 |
* | plumbing, storage: add bases to the common cache | Javi Fontan | 2018-08-22 | 2 | -0/+25 |
* | plumbing/idxfile: object iterators returns entries in offset order | Javi Fontan | 2018-08-21 | 1 | -1/+1 |
* | plumbing/packfile: do not compute sha1 for already undeltified objects | Javi Fontan | 2018-08-14 | 1 | -7/+9 |
* | plumbing/pacfile: tidy up objectInfo struct | Javi Fontan | 2018-08-14 | 1 | -36/+22 |
* | plumbing: add buffer cache and use it in packfile parser | Javi Fontan | 2018-08-14 | 1 | -14/+10 |
* | plumbing: packfile, open and close packfile on FSObject reads | Miguel Molina | 2018-08-09 | 5 | -56/+126 |
* | plumbing: packfile, rename DiskObject to FSObject | Miguel Molina | 2018-08-09 | 2 | -15/+15 |
* | plumbing: packfile, read object content only once | Miguel Molina | 2018-08-09 | 2 | -7/+40 |
* | plumbing: packfile, add Parse benchmark | Miguel Molina | 2018-08-09 | 1 | -0/+30 |
* | plumbing: packfile, allow non-seekable sources on Parser | Miguel Molina | 2018-08-08 | 5 | -177/+226 |
* | *: use parser to populate non writable storages and bug fixes | Miguel Molina | 2018-08-07 | 9 | -1156/+489 |
* | Merge pull request #907 from erizocosmico/feature/fix-tests | Miguel Molina | 2018-08-01 | 4 | -34/+98 |
|\ |
|
| * | plumbing: packfile, fix package tests | Miguel Molina | 2018-07-30 | 3 | -32/+70 |
|/ |
|
* | plumbing/packfile: add index generation to decoder | Javi Fontan | 2018-07-27 | 1 | -7/+25 |
* | plumbing: packfile, lazy object reads with DiskObjects | Miguel Molina | 2018-07-27 | 4 | -27/+293 |
* | plumbing: packfile, new Packfile representation | Miguel Molina | 2018-07-26 | 5 | -154/+418 |
* | plumbing, storage: integrate new index | Javi Fontan | 2018-07-26 | 2 | -9/+11 |
* | plumbing/packfile: preallocate memory in PatchDelta | Javi Fontan | 2018-07-26 | 1 | -1/+1 |
* | plumbing/packfile: disable lookup by offset | Javi Fontan | 2018-07-26 | 1 | -8/+9 |
* | plumbing/packfile: add new packfile parser | Javi Fontan | 2018-07-26 | 2 | -0/+498 |
* | plumbing/format/idxfile: add new Index and MemoryIndex | Miguel Molina | 2018-07-19 | 2 | -135/+17 |
* | packfile: optimise NewIndexFromIdxFile for a very common case | David Symonds | 2018-06-21 | 1 | -2/+12 |
* | plumbing: packfile, Don't push empty objects. Fixes #840 | kuba-- | 2018-06-07 | 2 | -4/+19 |
* | packfile: improve Index memory representation to be more compact | David Symonds | 2018-05-30 | 2 | -23/+67 |
* | *: Use CheckClose with named returns | Javi Fontan | 2018-03-27 | 2 | -4/+4 |
* | *: skip time consuming tests | Máximo Cuadros | 2018-03-21 | 1 | -0/+9 |
* | plumbing: format/packfile, add SaveOriginalMetadata function | Javi Fontan | 2018-02-09 | 2 | -5/+9 |
* | plumbing: format/packfile, fix panic retrieving object hash. | Javi Fontan | 2018-02-09 | 3 | -4/+10 |
* | plumbing: format/packfile, check nil objects in ObjectToPack | Javi Fontan | 2018-01-25 | 2 | -8/+12 |
* | plumbing: format/packfile, fix crash with cycle deltas | Javi Fontan | 2018-01-24 | 4 | -1/+51 |
* | plumbing: packfile, Add crc check to scanner test. | Javi Fontan | 2018-01-21 | 1 | -4/+75 |
* | plumbing: packfile, Add a buffer to crc writer. | Javi Fontan | 2018-01-21 | 1 | -9/+31 |
* | Modify cache to delete more than one item to free space | Javi Fontan | 2018-01-16 | 1 | -0/+2 |
* | Clean reconstructed objects outside pack window | Javi Fontan | 2018-01-11 | 1 | -13/+19 |
* | Merge pull request #698 from jfontan/improvement/use-decoder-cache | Máximo Cuadros | 2017-12-20 | 2 | -17/+39 |
|\ |
|
| * | Make DeltaBaseCache private | Javi Fontan | 2017-12-20 | 1 | -6/+13 |
| * | Fix typo and documentation of NewDecoderForType | Javi Fontan | 2017-12-20 | 1 | -3/+3 |
| * | Enforce the use of cache in packfile decoder | Javi Fontan | 2017-12-20 | 2 | -12/+27 |
* | | Improve delta reutilization | Antonio Jesus Navarro Perez | 2017-12-20 | 5 | -29/+152 |
|/ |
|