Searched defs:verbose (Results 1 - 14 of 14) sorted by relevance

/lucene-3.6.0/lucene/contrib/queryparser/src/test/org/apache/lucene/queryParser/surround/query/
H A DExceptionQueryTst.java26 private boolean verbose; field in class:ExceptionQueryTst
28 public ExceptionQueryTst(String queryText, boolean verbose) { argument
30 this.verbose = verbose;
38 if (verbose) {
42 if (verbose) {
57 public static String getFailQueries(String[] exceptionQueries, boolean verbose) { argument
60 new ExceptionQueryTst( exceptionQueries[i], verbose).doTest(failQueries);
H A DTest01Exceptions.java31 boolean verbose = false; /* to show actual parsing error messages */ field in class:Test01Exceptions
62 String m = ExceptionQueryTst.getFailQueries(exceptionQueries, verbose);
H A DBooleanQueryTst.java40 boolean verbose = true; field in class:BooleanQueryTst
57 public void setVerbose(boolean verbose) {this.verbose = verbose;} argument
112 if (verbose) {
119 /* if (verbose) System.out.println("Srnd: " + lq.toString()); */
122 /* if (verbose) System.out.println("Lucene: " + query.toString()); */
H A DTest02Boolean.java31 boolean verbose = false; field in class:Test02Boolean
47 bqt.setVerbose(verbose);
H A DTest03Distance.java29 boolean verbose = false; field in class:Test03Distance
45 String m = ExceptionQueryTst.getFailQueries(exceptionQueries, verbose);
66 bqt.setVerbose(verbose);
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DUpgradeIndexMergePolicy.java92 if (verbose()) message("findForcedMerges: segmentsToUpgrade=" + oldSegments);
109 if (verbose())
148 private boolean verbose() { method in class:UpgradeIndexMergePolicy
150 return w != null && w.verbose();
154 if (verbose())
H A DConcurrentMergeScheduler.java194 if (verbose()) {
208 if (verbose()) {
222 * if (verbose()) {
227 protected boolean verbose() { method in class:ConcurrentMergeScheduler
228 return writer != null && writer.verbose();
232 * Outputs the given message - this method assumes {@link #verbose()} was
311 if (verbose()) {
324 if (verbose()) {
334 if (verbose()) {
347 if (verbose())
[all...]
H A DLogMergePolicy.java84 protected boolean verbose() { method in class:LogMergePolicy
86 return w != null && w.verbose();
107 if (verbose())
254 if (verbose()) {
356 if (verbose()) {
363 if (verbose()) {
385 if (verbose()) {
419 if (verbose())
430 if (verbose())
437 if (verbose())
[all...]
H A DTieredMergePolicy.java269 if (verbose()) {
286 if (verbose()) {
412 if (verbose()) {
482 if (verbose()) {
508 if (verbose()) {
516 if (verbose()) {
531 if (verbose()) {
542 if (verbose()) {
555 if (verbose()) {
573 if (verbose()) {
646 private boolean verbose() { method in class:TieredMergePolicy
[all...]
H A DIndexWriter.java1683 public boolean verbose() { method in class:IndexWriter
/lucene-3.6.0/lucene/tools/src/java/org/apache/lucene/validation/
H A DLicenseCheckTask.java68 * A logging level associated with verbose logging.
94 public void setVerbose(boolean verbose) { argument
95 verboseLevel = (verbose ? Project.MSG_INFO : Project.MSG_VERBOSE);
/lucene-3.6.0/lucene/contrib/benchmark/src/java/org/apache/lucene/benchmark/byTask/feeds/
H A DContentItemsSource.java39 * <li><b>content.source.verbose</b> - specifies whether messages should be
46 * <b>NOTE:</b> if verbose is set to false, logging should not occur even if
64 protected boolean verbose; field in class:ContentItemsSource
102 * Returns true whether it's time to log a message (depending on verbose and
106 return verbose && logStep > 0 && itemCount % logStep == 0;
147 verbose = config.get("content.source.verbose", false);
152 if (!verbose) {
/lucene-3.6.0/solr/core/src/test/org/apache/solr/update/
H A DAutoCommitTest.java110 public static void verbose(Object... args) { method in class:AutoCommitTest
/lucene-3.6.0/solr/contrib/dataimporthandler/src/java/org/apache/solr/handler/dataimport/
H A DDataImporter.java526 public boolean verbose = false; field in class:DataImporter.RequestParams
565 verbose = StrUtils.parseBool((String)requestParams.get("verbose"),false);

Completed in 2446 milliseconds