Uses of Class
org.eclipse.jgit.storage.pack.PackConfig
-
Packages that use PackConfig Package Description org.eclipse.jgit.api High-level API commands (the porcelain of JGit).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 PackConfig in org.eclipse.jgit.api
Fields in org.eclipse.jgit.api declared as PackConfig Modifier and Type Field Description private PackConfig
GarbageCollectCommand. pconfig
-
Uses of PackConfig in org.eclipse.jgit.internal.storage.dfs
Fields in org.eclipse.jgit.internal.storage.dfs declared as PackConfig Modifier and Type Field Description private PackConfig
DfsGarbageCollector. packConfig
Methods in org.eclipse.jgit.internal.storage.dfs that return PackConfig Modifier and Type Method Description PackConfig
DfsGarbageCollector. getPackConfig()
Get configuration used to generate the new pack file.Methods in org.eclipse.jgit.internal.storage.dfs with parameters of type PackConfig Modifier and Type Method Description DfsGarbageCollector
DfsGarbageCollector. setPackConfig(PackConfig newConfig)
Set the new configuration to use when creating the pack file. -
Uses of PackConfig in org.eclipse.jgit.internal.storage.file
Fields in org.eclipse.jgit.internal.storage.file declared as PackConfig Modifier and Type Field Description private PackConfig
GC. pconfig
private PackConfig
ObjectDirectoryPackParser. pconfig
private PackConfig
PackInserter. pconfig
Methods in org.eclipse.jgit.internal.storage.file with parameters of type PackConfig Modifier and Type Method Description void
GC. setPackConfig(PackConfig pconfig)
Set the PackConfig used when (re-)writing packfiles. -
Uses of PackConfig in org.eclipse.jgit.internal.storage.pack
Fields in org.eclipse.jgit.internal.storage.pack declared as PackConfig Modifier and Type Field Description (package private) PackConfig
DeltaTask.Block. config
private PackConfig
DeltaWindow. config
(package private) PackConfig
PackWriter. config
Methods in org.eclipse.jgit.internal.storage.pack that return PackConfig Modifier and Type Method Description PackConfig
PackWriter.State. getConfig()
Methods in org.eclipse.jgit.internal.storage.pack with parameters of type PackConfig Modifier and Type Method Description (package private) static byte[]
PackWriter. buffer(PackConfig config, ObjectReader or, AnyObjectId objId)
Constructors in org.eclipse.jgit.internal.storage.pack with parameters of type PackConfig Constructor Description Block(int threads, PackConfig config, ObjectReader reader, DeltaCache dc, ThreadSafeProgressMonitor pm, ObjectToPack[] list, int begin, int end)
DeltaCache(PackConfig pc)
DeltaWindow(PackConfig pc, DeltaCache dc, ObjectReader or, ProgressMonitor pm, long bpu, ObjectToPack[] in, int beginIndex, int endIndex)
PackWriter(PackConfig config, ObjectReader reader)
Create writer with a specified configuration.PackWriter(PackConfig config, ObjectReader reader, PackStatistics.Accumulator statsAccumulator)
Create writer with a specified configuration.PackWriterBitmapPreparer(ObjectReader reader, PackBitmapIndexBuilder writeBitmaps, ProgressMonitor pm, java.util.Set<? extends ObjectId> want, PackConfig config)
ThreadSafeDeltaCache(PackConfig pc)
-
Uses of PackConfig in org.eclipse.jgit.storage.pack
Constructors in org.eclipse.jgit.storage.pack with parameters of type PackConfig Constructor Description PackConfig(PackConfig cfg)
Copy an existing configuration to a new instance. -
Uses of PackConfig in org.eclipse.jgit.transport
Fields in org.eclipse.jgit.transport declared as PackConfig Modifier and Type Field Description private PackConfig
BundleWriter. packConfig
private PackConfig
Daemon. packConfig
private PackConfig
Transport. packConfig
Pack configuration used by this transport to make pack file.private PackConfig
UploadPack. packConfig
Configuration to pass into the PackWriter.Methods in org.eclipse.jgit.transport that return PackConfig Modifier and Type Method Description PackConfig
Daemon. getPackConfig()
Get configuration controlling packing, may be null.PackConfig
Transport. getPackConfig()
Get the configuration used by the pack generator to make packs.Methods in org.eclipse.jgit.transport with parameters of type PackConfig Modifier and Type Method Description void
BundleWriter. setPackConfig(PackConfig pc)
Set the configuration used by the pack generator.void
Daemon. setPackConfig(PackConfig pc)
Set the configuration used by the pack generator.void
Transport. setPackConfig(PackConfig pc)
Set the configuration used by the pack generator.void
UploadPack. setPackConfig(PackConfig pc)
Set the configuration used by the pack generator.
-