aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/format/packfile/delta_test.go
Commit message (Collapse)AuthorAgeFilesLines
* fuzzing : fuzz testing support for oss-fuzz integrationArjun Singh2023-10-021-0/+12
| | | | Signed-off-by: Arjun Singh <ajsinghyadav00@gmail.com>
* *: Remove use of deprecated io/utilPaulo Gomes2023-05-111-5/+5
| | | | Signed-off-by: Paulo Gomes <pjbgf@linux.com>
* plumbing: format/packfile, prevent large objects from being read into memory ↵zeripath2021-06-301-0/+51
| | | | | | | | | | | | | | | completely (#330) This PR adds code to prevent large objects from being read into memory from packfiles or the filesystem. Objects greater than 1Mb are now no longer directly stored in the cache or read completely into memory. This PR differs and improves the previous broken #323 by fixing several bugs in the reader and transparently wrapping ReaderAt as a Reader. Signed-off-by: Andrew Thornton <art27@cantab.net>
* plumbing: packfile, Don't push empty objects. Fixes #840kuba--2018-06-071-3/+18
| | | | Signed-off-by: kuba-- <kuba@sourced.tech>
* packfile: Avoid panics patching corrupted deltasAntonio Jesus Navarro Perez2017-07-191-3/+21
|
* packfile: A copy operation cannot be bigger than 64kbAntonio Jesus Navarro Perez2017-06-011-0/+17
| | | | More info here: https://github.com/git/git/blob/f7466e94375b3be27f229c78873f0acf8301c0a5/diff-delta.c#L428
* packfile: delta selection logic (#182)Antonio Navarro Perez2016-12-161-16/+0
| | | | | | | | | | * packfile: delta selection logic - Implemented logic to assign deltas to objects * Requested changes * Improved tests and fix errors
* packfile: delta diff implementation (#159)Antonio Navarro Perez2016-12-091-0/+93
* packfile: delta diff implementation - Renamed delta.go to patch_delta.go - Added diff_delta.go file - Added tests that creates a diff and then tries to patch it * Requested changes