Package | Description |
---|---|
org.eclipse.jgit.internal.revwalk | |
org.eclipse.jgit.internal.storage.dfs |
Distributed file system based repository storage.
|
org.eclipse.jgit.internal.storage.pack |
Reading/writing Git pack files.
|
org.eclipse.jgit.lib |
Core API for repository, config, refs, object database.
|
org.eclipse.jgit.revwalk |
Walking revision graphs (commit history).
|
Constructor and Description |
---|
AddToBitmapFilter(BitmapIndex.BitmapBuilder bitmap)
Create a filter that adds visited commits to the given bitmap.
|
AddUnseenToBitmapFilter(BitmapIndex.BitmapBuilder seen,
BitmapIndex.BitmapBuilder bitmap)
Create a filter that adds visited commits to the given bitmap, but does not walk
through the objects in
seen . |
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
BitmapIndex.BitmapBuilder |
BitmapIndex.BitmapBuilder.addObject(AnyObjectId objectId,
int type)
Adds the id to the bitmap.
|
BitmapIndex.BitmapBuilder |
BitmapIndex.BitmapBuilder.andNot(BitmapIndex.Bitmap other)
Bitwise-AND-NOT the current bitmap with the value from the other
bitmap.
|
BitmapIndex.BitmapBuilder |
BitmapIndex.newBitmapBuilder()
Create a new
BitmapBuilder based on the values in the index. |
BitmapIndex.BitmapBuilder |
BitmapIndex.BitmapBuilder.or(BitmapIndex.Bitmap other)
Bitwise-OR the current bitmap with the value from the other bitmap.
|
BitmapIndex.BitmapBuilder |
BitmapIndex.BitmapBuilder.xor(BitmapIndex.Bitmap other)
Bitwise-XOR the current bitmap with the value from the other bitmap.
|
Modifier and Type | Method and Description |
---|---|
BitmapIndex.BitmapBuilder |
BitmapWalker.findObjects(Iterable<? extends ObjectId> start,
BitmapIndex.BitmapBuilder seen,
boolean ignoreMissing)
Return, as a bitmap, the objects reachable from the objects in start.
|
Modifier and Type | Method and Description |
---|---|
BitmapIndex.BitmapBuilder |
BitmapWalker.findObjects(Iterable<? extends ObjectId> start,
BitmapIndex.BitmapBuilder seen,
boolean ignoreMissing)
Return, as a bitmap, the objects reachable from the objects in start.
|
Copyright © 2019 Eclipse JGit Project. All rights reserved.