congrats Icon
New! Announcing our next generation AI code completions
Read here
Tabnine Logo
RevCommitList.clearFlag
Code IndexAdd Tabnine to your IDE (free)

How to use
clearFlag
method
in
org.eclipse.jgit.revwalk.RevCommitList

Best Java code snippets using org.eclipse.jgit.revwalk.RevCommitList.clearFlag (Showing top 4 results out of 315)

origin: org.eclipse.jgit/org.eclipse.jgit

/**
 * Remove the given flag from all commits.
 * <p>
 * Same as <code>clearFlag(flag, 0, size())</code>, but without the
 * incremental behavior.
 *
 * @param flag
 *            the flag to remove. Applications are responsible for
 *            allocating this flag from the source RevWalk.
 */
public void clearFlag(RevFlag flag) {
  clearFlag(flag, 0, size());
}
origin: berlam/github-bucket

/**
 * Remove the given flag from all commits.
 * <p>
 * Same as <code>clearFlag(flag, 0, size())</code>, but without the
 * incremental behavior.
 *
 * @param flag
 *            the flag to remove. Applications are responsible for
 *            allocating this flag from the source RevWalk.
 */
public void clearFlag(RevFlag flag) {
  clearFlag(flag, 0, size());
}
origin: sonia.jgit/org.eclipse.jgit

/**
 * Remove the given flag from all commits.
 * <p>
 * Same as <code>clearFlag(flag, 0, size())</code>, but without the
 * incremental behavior.
 *
 * @param flag
 *            the flag to remove. Applications are responsible for
 *            allocating this flag from the source RevWalk.
 */
public void clearFlag(final RevFlag flag) {
  clearFlag(flag, 0, size());
}
origin: theonedev/onedev

/**
 * Remove the given flag from all commits.
 * <p>
 * Same as <code>clearFlag(flag, 0, size())</code>, but without the
 * incremental behavior.
 *
 * @param flag
 *            the flag to remove. Applications are responsible for
 *            allocating this flag from the source RevWalk.
 */
public void clearFlag(RevFlag flag) {
  clearFlag(flag, 0, size());
}
org.eclipse.jgit.revwalkRevCommitListclearFlag

Javadoc

Remove the given flag from all commits.

Same as clearFlag(flag, 0, size()), but without the incremental behavior.

Popular methods of RevCommitList

  • add
  • applyFlag
    Apply a flag to all commits matching the specified filter. This version allows incremental testing a
  • enter
    Optional callback invoked when commits enter the list by fillTo. This method is only called during #
  • size
  • <init>
  • clear
  • source
    Set the revision walker this list populates itself from.

Popular in Java

  • Creating JSON documents from java classes using gson
  • onRequestPermissionsResult (Fragment)
  • getContentResolver (Context)
  • getExternalFilesDir (Context)
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • JComboBox (javax.swing)
  • Table (org.hibernate.mapping)
    A relational table
  • 14 Best Plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now