Uses of Class
org.eclipse.jgit.internal.storage.pack.CachedPack
-
Packages that use CachedPack Package Description org.eclipse.jgit.internal.storage.dfs Distributed file system based repository storage.org.eclipse.jgit.internal.storage.file File based repository storage.org.eclipse.jgit.internal.storage.pack Reading/writing Git pack files.org.eclipse.jgit.storage.pack org.eclipse.jgit.transport Transport (fetch/push) for different protocols. -
-
Uses of CachedPack in org.eclipse.jgit.internal.storage.dfs
Subclasses of CachedPack in org.eclipse.jgit.internal.storage.dfs Modifier and Type Class Description class
DfsCachedPack
A DfsPackFile available for reuse as-is.Methods in org.eclipse.jgit.internal.storage.dfs that return types with arguments of type CachedPack Modifier and Type Method Description java.util.Collection<CachedPack>
DfsReader. getCachedPacksAndUpdate(BitmapIndex.BitmapBuilder needBitmap)
Obtain the available cached packs that match the bitmap and update the bitmap by removing the items that are in the CachedPack.Methods in org.eclipse.jgit.internal.storage.dfs with parameters of type CachedPack Modifier and Type Method Description void
DfsReader. copyPackAsIs(PackOutputStream out, CachedPack pack)
Append an entire pack's contents onto the output stream. -
Uses of CachedPack in org.eclipse.jgit.internal.storage.file
Subclasses of CachedPack in org.eclipse.jgit.internal.storage.file Modifier and Type Class Description (package private) class
LocalCachedPack
Methods in org.eclipse.jgit.internal.storage.file that return types with arguments of type CachedPack Modifier and Type Method Description java.util.Collection<CachedPack>
WindowCursor. getCachedPacksAndUpdate(BitmapIndex.BitmapBuilder needBitmap)
Obtain the available cached packs that match the bitmap and update the bitmap by removing the items that are in the CachedPack.Methods in org.eclipse.jgit.internal.storage.file with parameters of type CachedPack Modifier and Type Method Description void
WindowCursor. copyPackAsIs(PackOutputStream out, CachedPack pack)
Append an entire pack's contents onto the output stream. -
Uses of CachedPack in org.eclipse.jgit.internal.storage.pack
Fields in org.eclipse.jgit.internal.storage.pack with type parameters of type CachedPack Modifier and Type Field Description private java.util.List<CachedPack>
PackWriter. cachedPacks
Methods in org.eclipse.jgit.internal.storage.pack that return types with arguments of type CachedPack Modifier and Type Method Description java.util.Collection<CachedPack>
ObjectReuseAsIs. getCachedPacksAndUpdate(BitmapIndex.BitmapBuilder needBitmap)
Obtain the available cached packs that match the bitmap and update the bitmap by removing the items that are in the CachedPack.Methods in org.eclipse.jgit.internal.storage.pack with parameters of type CachedPack Modifier and Type Method Description void
ObjectReuseAsIs. copyPackAsIs(PackOutputStream out, CachedPack pack)
Append an entire pack's contents onto the output stream.CachedPackUriProvider.PackInfo
CachedPackUriProvider. getInfo(CachedPack pack, java.util.Collection<java.lang.String> protocolsSupported)
Method parameters in org.eclipse.jgit.internal.storage.pack with type arguments of type CachedPack Modifier and Type Method Description void
PackWriter. preparePack(java.util.Collection<? extends CachedPack> c)
Prepare the list of objects to be written to the pack stream. -
Uses of CachedPack in org.eclipse.jgit.storage.pack
Fields in org.eclipse.jgit.storage.pack with type parameters of type CachedPack Modifier and Type Field Description java.util.List<CachedPack>
PackStatistics.Accumulator. reusedPacks
The collection of reused packs in the upload.Methods in org.eclipse.jgit.storage.pack that return types with arguments of type CachedPack Modifier and Type Method Description java.util.List<CachedPack>
PackStatistics. getReusedPacks()
Get unmodifiable list of the cached packs that were reused in the output -
Uses of CachedPack in org.eclipse.jgit.transport
Fields in org.eclipse.jgit.transport with type parameters of type CachedPack Modifier and Type Field Description private java.util.List<CachedPack>
BundleWriter. cachedPacks
Method parameters in org.eclipse.jgit.transport with type arguments of type CachedPack Modifier and Type Method Description void
BundleWriter. addObjectsAsIs(java.util.Collection<? extends CachedPack> c)
Add objects to the bundle file.
-