Tabnine Logo
BytesStore$1.getPosition
Code IndexAdd Tabnine to your IDE (free)

How to use
getPosition
method
in
org.apache.lucene.util.fst.BytesStore$1

Best Java code snippets using org.apache.lucene.util.fst.BytesStore$1.getPosition (Showing top 8 results out of 1,395)

origin: org.apache.lucene/lucene-core

@Override
public void setPosition(long pos) {
 int bufferIndex = (int) (pos >> blockBits);
 nextBuffer = bufferIndex+1;
 current = blocks.get(bufferIndex);
 nextRead = (int) (pos & blockMask);
 assert getPosition() == pos;
}
origin: harbby/presto-connectors

@Override
public void setPosition(long pos) {
 int bufferIndex = (int) (pos >> blockBits);
 nextBuffer = bufferIndex+1;
 current = blocks.get(bufferIndex);
 nextRead = (int) (pos & blockMask);
 assert getPosition() == pos;
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.lucene

@Override
public void setPosition(long pos) {
 int bufferIndex = (int) (pos >> blockBits);
 nextBuffer = bufferIndex+1;
 current = blocks.get(bufferIndex);
 nextRead = (int) (pos & blockMask);
 assert getPosition() == pos;
}
origin: harbby/presto-connectors

@Override
public void skipBytes(long count) {
 setPosition(getPosition() + count);
}
origin: org.infinispan/infinispan-embedded-query

@Override
public void skipBytes(long count) {
 setPosition(getPosition() + count);
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.lucene

@Override
public void skipBytes(long count) {
 setPosition(getPosition() + count);
}
origin: org.infinispan/infinispan-embedded-query

@Override
public void setPosition(long pos) {
 int bufferIndex = (int) (pos >> blockBits);
 nextBuffer = bufferIndex+1;
 current = blocks.get(bufferIndex);
 nextRead = (int) (pos & blockMask);
 assert getPosition() == pos;
}
origin: org.apache.lucene/lucene-core

@Override
public void skipBytes(long count) {
 setPosition(getPosition() + count);
}
org.apache.lucene.util.fstBytesStore$1getPosition

Popular methods of BytesStore$1

  • setPosition

Popular in Java

  • Updating database using SQL prepared statement
  • getResourceAsStream (ClassLoader)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • runOnUiThread (Activity)
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • Path (java.nio.file)
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • XPath (javax.xml.xpath)
    XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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