Searched defs:termCount (Results 1 - 3 of 3) sorted by relevance

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DFrozenBufferedDeletes.java40 int termCount; // just for debugging field in class:FrozenBufferedDeletes
52 termCount = termsArray.length;
115 s += " " + numTermDeletes + " deleted terms (unique count=" + termCount + ")";
128 return termCount > 0 || queries.length > 0;
H A DCheckIndex.java215 public long termCount = 0L; field in class:CheckIndex.Status.TermIndexStatus
692 status.termCount++;
819 if (status.termCount != uniqueTermCountAllFields) {
820 throw new RuntimeException("termCount mismatch " + uniqueTermCountAllFields + " vs " + (status.termCount));
826 msg("OK [" + status.termCount + " terms; " + status.totFreq + " terms/docs pairs; " + status.totPos + " tokens]");
/lucene-3.6.0/lucene/contrib/pruning/src/java/org/apache/lucene/index/
H A DPruningReader.java49 protected int termCount, delTermCount; field in class:PruningReader
232 termCount++;
233 if ((termCount % 50000) == 0) {
234 LOG.info(" - terms: " + termCount + " (" + term() + "), deleted: " + delTermCount);

Completed in 14 milliseconds