aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/src/org/eclipse/jgit/transport/ReceivedPackStatistics.java
Commit message (Collapse)AuthorAgeFilesLines
* [errorprone] Add missing javadoc summaryMatthias Sohn2023-09-251-3/+16
| | | | | | see https://google.github.io/styleguide/javaguide.html#s7.2-summary-fragment Change-Id: Iaf4a6b55d4e4c59b7a2da3451164abb1bb47d4a1
* ReceivePackStats: Add size and count of unnecessary pushed objectsYunjie Li2020-09-111-0/+50
| | | | | | | | | | | | Since there is no negotiation for a push, the client is probably sending redundant objects and bytes which already exist in the server. Add more metrics in the stats to quantify it. Duplicated size and number to measure the size and the number of duplicated objects which should not be pushed. Change-Id: Iaacd4761ee9366a0a7ec4e26c508eff45c8744de Signed-off-by: Yunjie Li <yunjieli@google.com>
* Update EDL 1.0 license headers to new short SPDX compliant formatMatthias Sohn2020-01-041-38/+5
| | | | | | | | | | This is the format given by the Eclipse legal doc generator [1]. [1] https://www.eclipse.org/projects/tools/documentation.php?id=technology.jgit Bug: 548298 Change-Id: I8d8cabc998ba1b083e3f0906a8d558d391ffb6c4 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
* Fix javadoc in org.eclipse.jgit transport packageMatthias Sohn2017-12-201-12/+56
| | | | Change-Id: Id70e2c27e38bf12f87e66b28fbd0b06908494764 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
* Fix wrong @since tags introduced by 1beb3ccdMatthias Sohn2016-09-211-1/+1
| | | | | | 1beb3ccd1ed3be0dde703a604deeff3a4b9f27eb was submitted in 4.6.0-SNAPSHOT Change-Id: I33e027dbd0995ba36491bd9e2d4b3c84f9f0abd6 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
* Add ReceivedPackStatistics for PackParserMasaya Suzuki2016-09-191-0/+231
This is like PackStatistics, but for PackParser. Change-Id: I854215c0956fd0b36843d631780be303e021b8be Signed-off-by: Masaya Suzuki <masayasuzuki@google.com>