Uses of Class
org.eclipse.jgit.revwalk.ObjectWalk
-
Packages that use ObjectWalk Package Description org.eclipse.jgit.internal.revwalk org.eclipse.jgit.internal.storage.file File based repository storage.org.eclipse.jgit.internal.storage.pack Reading/writing Git pack files.org.eclipse.jgit.internal.transport.connectivity org.eclipse.jgit.lfs org.eclipse.jgit.lib Core API for repository, config, refs, object database.org.eclipse.jgit.pgm org.eclipse.jgit.revwalk Walking revision graphs (commit history).org.eclipse.jgit.revwalk.filter Filters for use in revision walking. -
-
Uses of ObjectWalk in org.eclipse.jgit.internal.revwalk
Fields in org.eclipse.jgit.internal.revwalk declared as ObjectWalk Modifier and Type Field Description private ObjectWalkBitmappedObjectReachabilityChecker. walkprivate ObjectWalkPedestrianObjectReachabilityChecker. walkConstructors in org.eclipse.jgit.internal.revwalk with parameters of type ObjectWalk Constructor Description BitmappedObjectReachabilityChecker(ObjectWalk walk)New instance of the reachability checker using a existing walk.PedestrianObjectReachabilityChecker(ObjectWalk walk)New instance of the reachability checker using a existing walk. -
Uses of ObjectWalk in org.eclipse.jgit.internal.storage.file
Methods in org.eclipse.jgit.internal.storage.file with parameters of type ObjectWalk Modifier and Type Method Description private voidGC. removeReferenced(java.util.Map<ObjectId,java.io.File> id2File, ObjectWalk w)Remove all entries from a map which key is the id of an object referenced by the given ObjectWalk -
Uses of ObjectWalk in org.eclipse.jgit.internal.storage.pack
Fields in org.eclipse.jgit.internal.storage.pack declared as ObjectWalk Modifier and Type Field Description private ObjectWalkPackWriter.DepthAwareVisitationPolicy. walkMethods in org.eclipse.jgit.internal.storage.pack that return ObjectWalk Modifier and Type Method Description private ObjectWalkPackWriter. getObjectWalk()Methods in org.eclipse.jgit.internal.storage.pack with parameters of type ObjectWalk Modifier and Type Method Description private booleanPackWriter. depthSkip(RevObject obj, ObjectWalk walker)Determines if the object should be omitted from the pack as a result of its depth (probably because of the tree:filter). private voidPackWriter. findObjectsToPack(ProgressMonitor countingMonitor, ObjectWalk walker, java.util.Set<? extends ObjectId> want, java.util.Set<? extends ObjectId> have, java.util.Set<? extends ObjectId> noBitmaps)voidPackWriter. preparePack(ProgressMonitor countingMonitor, ObjectWalk walk, java.util.Set<? extends ObjectId> interestingObjects, java.util.Set<? extends ObjectId> uninterestingObjects, java.util.Set<? extends ObjectId> noBitmaps)Prepare the list of objects to be written to the pack stream.Constructors in org.eclipse.jgit.internal.storage.pack with parameters of type ObjectWalk Constructor Description DepthAwareVisitationPolicy(ObjectWalk walk) -
Uses of ObjectWalk in org.eclipse.jgit.internal.transport.connectivity
Methods in org.eclipse.jgit.internal.transport.connectivity with parameters of type ObjectWalk Modifier and Type Method Description private voidFullConnectivityChecker. checkCommitTree(ConnectivityChecker.ConnectivityCheckInfo connectivityCheckInfo, ObjectWalk ow, ProgressMonitor pm)private voidFullConnectivityChecker. checkObjects(ConnectivityChecker.ConnectivityCheckInfo connectivityCheckInfo, ObjectWalk ow, ProgressMonitor pm)private booleanFullConnectivityChecker. markStartAndKnownNodes(ConnectivityChecker.ConnectivityCheckInfo connectivityCheckInfo, ObjectWalk ow, java.util.Set<ObjectId> haves, ProgressMonitor pm) -
Uses of ObjectWalk in org.eclipse.jgit.lfs
Methods in org.eclipse.jgit.lfs with parameters of type ObjectWalk Modifier and Type Method Description private voidLfsPrePushHook. excludeRemoteRefs(ObjectWalk walk)private static voidLfsPrePushHook. findLfsPointers(java.util.Set<LfsPointer> toPush, ObjectWalk walk) -
Uses of ObjectWalk in org.eclipse.jgit.lib
Methods in org.eclipse.jgit.lib with parameters of type ObjectWalk Modifier and Type Method Description ObjectReachabilityCheckerObjectReader. createObjectReachabilityChecker(ObjectWalk ow)Create an object reachability checker that will use bitmaps if possible. -
Uses of ObjectWalk in org.eclipse.jgit.pgm
Methods in org.eclipse.jgit.pgm with parameters of type ObjectWalk Modifier and Type Method Description protected voidRevList. show(ObjectWalk ow, RevObject obj)"Show" the current RevCommit when called from the main processing loop.protected voidRevWalkTextBuiltin. show(ObjectWalk objectWalk, RevObject currentObject)"Show" the current RevCommit when called from the main processing loop. -
Uses of ObjectWalk in org.eclipse.jgit.revwalk
Subclasses of ObjectWalk in org.eclipse.jgit.revwalk Modifier and Type Class Description static classDepthWalk.ObjectWalkSubclass of ObjectWalk that performs depth filtering.Fields in org.eclipse.jgit.revwalk declared as ObjectWalk Modifier and Type Field Description private ObjectWalkBitmapWalker. walkerMethods in org.eclipse.jgit.revwalk that return ObjectWalk Modifier and Type Method Description ObjectWalkRevWalk. toObjectWalkWithSameObjects()Create and return anObjectWalkusing the same objects.Methods in org.eclipse.jgit.revwalk with parameters of type ObjectWalk Modifier and Type Method Description booleanBitmapWalker.BitmapObjectFilter. include(ObjectWalk walker, AnyObjectId objid)Constructors in org.eclipse.jgit.revwalk with parameters of type ObjectWalk Constructor Description BitmapWalker(ObjectWalk walker, BitmapIndex bitmapIndex, ProgressMonitor pm)Create a BitmapWalker. -
Uses of ObjectWalk in org.eclipse.jgit.revwalk.filter
Methods in org.eclipse.jgit.revwalk.filter with parameters of type ObjectWalk Modifier and Type Method Description booleanObjectFilter.AllFilter. include(ObjectWalk walker, AnyObjectId o)abstract booleanObjectFilter. include(ObjectWalk walker, AnyObjectId objid)Determine if the named object should be included in the walk.
-