/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/index/ |
H A D | TestLazyBug.java | 44 public static int NUM_DOCS = TEST_NIGHTLY ? 500 : 50; 45 public static int NUM_FIELDS = TEST_NIGHTLY ? 100 : 10;
|
H A D | TestStressNRT.java | 73 final int nWriteThreads = _TestUtil.nextInt(random, 1, TEST_NIGHTLY ? 10 : 5); 74 final int maxConcurrentCommits = _TestUtil.nextInt(random, 1, TEST_NIGHTLY ? 10 : 5); // number of committers at a time... needed if we want to avoid commit errors due to exceeding the max 82 final int nReadThreads = _TestUtil.nextInt(random, 1, TEST_NIGHTLY ? 10 : 5);
|
H A D | TestRollingUpdates.java | 42 final int numUpdates = (int) (SIZE * (2+(TEST_NIGHTLY ? 200*random.nextDouble() : 5*random.nextDouble())));
|
H A D | TestIndexWriterOnDiskFull.java | 122 diskFree += TEST_NIGHTLY ? _TestUtil.nextInt(random, 400, 600) : _TestUtil.nextInt(random, 3000, 5000); 435 diskFree += TEST_NIGHTLY ? _TestUtil.nextInt(random, 4000, 8000) : _TestUtil.nextInt(random, 40000, 80000);
|
H A D | TestIndexReaderOnDiskFull.java | 224 diskFree += TEST_NIGHTLY ? _TestUtil.nextInt(random, 5, 20) : _TestUtil.nextInt(random, 50, 200);
|
H A D | TestIndexWriterForceMerge.java | 39 final int incrMin = TEST_NIGHTLY ? 15 : 40;
|
H A D | TestAddIndexes.java | 755 final int NUM_ITER = TEST_NIGHTLY ? 15 : 5; 909 final int NUM_COPY = TEST_NIGHTLY ? 50 : 5;
|
H A D | TestIndexWriterExceptions.java | 874 int iter = TEST_NIGHTLY ? 200 : 20;
|
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/index/ |
H A D | TestLazyBug.java | 44 public static int NUM_DOCS = TEST_NIGHTLY ? 500 : 50; 45 public static int NUM_FIELDS = TEST_NIGHTLY ? 100 : 10;
|
H A D | TestStressNRT.java | 73 final int nWriteThreads = _TestUtil.nextInt(random, 1, TEST_NIGHTLY ? 10 : 5); 74 final int maxConcurrentCommits = _TestUtil.nextInt(random, 1, TEST_NIGHTLY ? 10 : 5); // number of committers at a time... needed if we want to avoid commit errors due to exceeding the max 82 final int nReadThreads = _TestUtil.nextInt(random, 1, TEST_NIGHTLY ? 10 : 5);
|
H A D | TestRollingUpdates.java | 39 final int SIZE = atLeast(TEST_NIGHTLY ? 100 : 20);
|
H A D | TestIndexWriterOnDiskFull.java | 122 diskFree += TEST_NIGHTLY ? _TestUtil.nextInt(random, 400, 600) : _TestUtil.nextInt(random, 3000, 5000); 429 diskFree += TEST_NIGHTLY ? _TestUtil.nextInt(random, 4000, 8000) : _TestUtil.nextInt(random, 40000, 80000);
|
H A D | TestIndexReaderOnDiskFull.java | 224 diskFree += TEST_NIGHTLY ? _TestUtil.nextInt(random, 5, 20) : _TestUtil.nextInt(random, 50, 200);
|
H A D | TestIndexWriterForceMerge.java | 39 final int incrMin = TEST_NIGHTLY ? 15 : 40;
|
H A D | TestAddIndexes.java | 755 final int NUM_ITER = TEST_NIGHTLY ? 15 : 5; 909 final int NUM_COPY = TEST_NIGHTLY ? 50 : 5;
|
H A D | TestIndexWriterExceptions.java | 872 int iter = TEST_NIGHTLY ? 200 : 20;
|
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/util/ |
H A D | LuceneTestCaseRunner.java | 46 import static org.apache.lucene.util.LuceneTestCase.TEST_NIGHTLY; 89 if (TEST_NIGHTLY == false) {
|
H A D | LuceneTestCase.java | 166 public static final boolean TEST_NIGHTLY = Boolean.parseBoolean(System.getProperty("tests.nightly", "false")); field in class:LuceneTestCase 823 * The actual number returned will be influenced by whether {@link #TEST_NIGHTLY} 827 int min = (TEST_NIGHTLY ? 3*i : i) * RANDOM_MULTIPLIER; 839 * The actual number returned will be influenced by whether {@link #TEST_NIGHTLY} 843 int p = TEST_NIGHTLY ? 10 : 5; 1399 if (TEST_NIGHTLY) sb.append(" -Dtests.nightly=true");
|
/lucene-3.6.0/lucene/backwards/src/test-framework/java/org/apache/lucene/util/ |
H A D | LuceneTestCaseRunner.java | 46 import static org.apache.lucene.util.LuceneTestCase.TEST_NIGHTLY; 90 if (TEST_NIGHTLY == false) {
|
H A D | LuceneTestCase.java | 141 public static final boolean TEST_NIGHTLY = Boolean.parseBoolean(System.getProperty("tests.nightly", "false")); field in class:LuceneTestCase 668 * The actual number returned will be influenced by whether {@link #TEST_NIGHTLY} 672 int min = (TEST_NIGHTLY ? 3*i : i) * RANDOM_MULTIPLIER; 684 * The actual number returned will be influenced by whether {@link #TEST_NIGHTLY} 688 int p = TEST_NIGHTLY ? 10 : 5; 1216 if (TEST_NIGHTLY) sb.append(" -Dtests.nightly=true");
|
/lucene-3.6.0/lucene/contrib/facet/src/test/org/apache/lucene/facet/search/ |
H A D | TestTopKResultsHandlerRandom.java | 137 return TEST_NIGHTLY ? 20000 : 1000;
|
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/index/ |
H A D | ThreadedIndexingAndSearchingTestCase.java | 137 if (LuceneTestCase.TEST_NIGHTLY && random.nextInt(6) == 3) { 418 if (LuceneTestCase.TEST_NIGHTLY) { 470 final int RUN_TIME_SEC = LuceneTestCase.TEST_NIGHTLY ? 300 : RANDOM_MULTIPLIER;
|
/lucene-3.6.0/lucene/backwards/src/test-framework/java/org/apache/lucene/index/ |
H A D | ThreadedIndexingAndSearchingTestCase.java | 137 if (LuceneTestCase.TEST_NIGHTLY && random.nextInt(6) == 3) { 431 if (LuceneTestCase.TEST_NIGHTLY) { 483 final int RUN_TIME_SEC = LuceneTestCase.TEST_NIGHTLY ? 300 : RANDOM_MULTIPLIER;
|
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/search/ |
H A D | TestSearcherManager.java | 50 pruner = new SearcherLifetimeManager.PruneByAge(TEST_NIGHTLY ? _TestUtil.nextInt(random, 1, 20) : 1);
|
/lucene-3.6.0/lucene/contrib/join/src/test/org/apache/lucene/search/ |
H A D | TestJoinUtil.java | 132 int numberOfDocumentsToIndex = TEST_NIGHTLY ? _TestUtil.nextInt(random, 7889, 14632) : _TestUtil.nextInt(random, 87, 764);
|