Searched refs:TEST_NIGHTLY (Results 1 - 25 of 26) sorted by relevance

12

/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/index/
H A DTestLazyBug.java44 public static int NUM_DOCS = TEST_NIGHTLY ? 500 : 50;
45 public static int NUM_FIELDS = TEST_NIGHTLY ? 100 : 10;
H A DTestStressNRT.java73 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 DTestRollingUpdates.java42 final int numUpdates = (int) (SIZE * (2+(TEST_NIGHTLY ? 200*random.nextDouble() : 5*random.nextDouble())));
H A DTestIndexWriterOnDiskFull.java122 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 DTestIndexReaderOnDiskFull.java224 diskFree += TEST_NIGHTLY ? _TestUtil.nextInt(random, 5, 20) : _TestUtil.nextInt(random, 50, 200);
H A DTestIndexWriterForceMerge.java39 final int incrMin = TEST_NIGHTLY ? 15 : 40;
H A DTestAddIndexes.java755 final int NUM_ITER = TEST_NIGHTLY ? 15 : 5;
909 final int NUM_COPY = TEST_NIGHTLY ? 50 : 5;
H A DTestIndexWriterExceptions.java874 int iter = TEST_NIGHTLY ? 200 : 20;
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/index/
H A DTestLazyBug.java44 public static int NUM_DOCS = TEST_NIGHTLY ? 500 : 50;
45 public static int NUM_FIELDS = TEST_NIGHTLY ? 100 : 10;
H A DTestStressNRT.java73 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 DTestRollingUpdates.java39 final int SIZE = atLeast(TEST_NIGHTLY ? 100 : 20);
H A DTestIndexWriterOnDiskFull.java122 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 DTestIndexReaderOnDiskFull.java224 diskFree += TEST_NIGHTLY ? _TestUtil.nextInt(random, 5, 20) : _TestUtil.nextInt(random, 50, 200);
H A DTestIndexWriterForceMerge.java39 final int incrMin = TEST_NIGHTLY ? 15 : 40;
H A DTestAddIndexes.java755 final int NUM_ITER = TEST_NIGHTLY ? 15 : 5;
909 final int NUM_COPY = TEST_NIGHTLY ? 50 : 5;
H A DTestIndexWriterExceptions.java872 int iter = TEST_NIGHTLY ? 200 : 20;
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/util/
H A DLuceneTestCaseRunner.java46 import static org.apache.lucene.util.LuceneTestCase.TEST_NIGHTLY;
89 if (TEST_NIGHTLY == false) {
H A DLuceneTestCase.java166 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 DLuceneTestCaseRunner.java46 import static org.apache.lucene.util.LuceneTestCase.TEST_NIGHTLY;
90 if (TEST_NIGHTLY == false) {
H A DLuceneTestCase.java141 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 DTestTopKResultsHandlerRandom.java137 return TEST_NIGHTLY ? 20000 : 1000;
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/index/
H A DThreadedIndexingAndSearchingTestCase.java137 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 DThreadedIndexingAndSearchingTestCase.java137 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 DTestSearcherManager.java50 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 DTestJoinUtil.java132 int numberOfDocumentsToIndex = TEST_NIGHTLY ? _TestUtil.nextInt(random, 7889, 14632) : _TestUtil.nextInt(random, 87, 764);

Completed in 153 milliseconds

12