Searched defs:stop (Results 1 - 17 of 17) sorted by relevance

/lucene-3.6.0/solr/client/ruby/solr-ruby/test/functional/
H A Dtest_solr_server.rb43 solr_server.stop
60 def stop method in class:TestSolrServer
80 # stop a running solr server
97 # stop a running solr server
/lucene-3.6.0/lucene/contrib/queries/src/java/org/apache/lucene/search/similar/
H A DSimilarityQueries.java78 * @param stop optional set of stop words to ignore
85 Set<?> stop)
95 // ignore opt stop words
96 if ( stop != null &&
97 stop.contains( word)) continue;
82 formSimilarQuery( String body, Analyzer a, String field, Set<?> stop) argument
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/analysis/
H A DTestStopAnalyzer.java32 private StopAnalyzer stop = new StopAnalyzer(TEST_VERSION_CURRENT); field in class:TestStopAnalyzer
46 assertTrue(stop != null);
47 StringReader reader = new StringReader("This is a test of the english stop analyzer");
48 TokenStream stream = stop.tokenStream("test", reader);
63 StringReader reader = new StringReader("This is a good test of the english stop analyzer");
72 assertEquals(1,posIncrAtt.getPositionIncrement()); // in 2.4 stop tokenizer does not apply increments.
82 StringReader reader = new StringReader("This is a good test of the english stop analyzer with positions");
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/analysis/
H A DTestStopAnalyzer.java32 private StopAnalyzer stop = new StopAnalyzer(TEST_VERSION_CURRENT); field in class:TestStopAnalyzer
46 assertTrue(stop != null);
47 StringReader reader = new StringReader("This is a test of the english stop analyzer");
48 TokenStream stream = stop.tokenStream("test", reader);
63 StringReader reader = new StringReader("This is a good test of the english stop analyzer");
72 assertEquals(1,posIncrAtt.getPositionIncrement()); // in 2.4 stop tokenizer does not apply increments.
82 StringReader reader = new StringReader("This is a good test of the english stop analyzer with positions");
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/index/
H A DTestIndexWriterNRTIsCurrent.java34 volatile boolean stop = false; field in class:TestIndexWriterNRTIsCurrent.ReaderHolder
101 for (int i = 0; i < numOps && !holder.stop; i++) {
147 System.out.println("writer stopped - forced by reader: " + holder.stop);
186 holder.stop = true;
H A DTestIndexReaderReopen.java866 public void stop() { method in class:TestIndexReaderReopen.ReaderThreadTask
883 this.task.stop();
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/index/
H A DTestIndexWriterNRTIsCurrent.java34 volatile boolean stop = false; field in class:TestIndexWriterNRTIsCurrent.ReaderHolder
101 for (int i = 0; i < numOps && !holder.stop; i++) {
147 System.out.println("writer stopped - forced by reader: " + holder.stop);
186 holder.stop = true;
H A DTestIndexReaderReopen.java870 public void stop() { method in class:TestIndexReaderReopen.ReaderThreadTask
887 this.task.stop();
/lucene-3.6.0/lucene/contrib/grouping/src/java/org/apache/lucene/search/grouping/
H A DAbstractAllGroupHeadsCollector.java85 * The {@link TemporalResult#stop} property will be <code>true</code> if the group head wasn't encountered before
103 if (temporalResult.stop) {
138 public boolean stop; field in class:AbstractAllGroupHeadsCollector.TemporalResult
/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/common/util/
H A DRTimer.java58 /** Recursively stop timer and sub timers */
59 public double stop() { method in class:RTimer
69 child.stop();
149 subt.stop();
150 rt.stop();
/lucene-3.6.0/solr/core/src/java/org/apache/solr/client/solrj/embedded/
H A DJettySolrRunner.java117 public void stop() throws Exception method in class:JettySolrRunner
120 server.stop();
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/
H A DTimeLimitingCollector.java194 * you stop the {@link TimerThread} via {@link TimerThread#stopTimer()}.
209 * you stop the {@link TimerThread} via {@link TimerThread#stopTimer()}.
245 private volatile boolean stop = false; field in class:TimeLimitingCollector.TimerThread
262 while (!stop) {
284 stop = true;
/lucene-3.6.0/solr/core/src/java/org/apache/solr/util/
H A DConcurrentLFUCache.java427 private boolean stop = false; field in class:ConcurrentLFUCache.CleanupThread
437 if (stop) break;
443 if (stop) break;
458 stop = true;
H A DConcurrentLRUCache.java580 private boolean stop = false; field in class:ConcurrentLRUCache.CleanupThread
590 if (stop) break;
595 if (stop) break;
610 stop=true;
/lucene-3.6.0/solr/contrib/dataimporthandler/src/java/org/apache/solr/handler/dataimport/
H A DDocBuilder.java235 if (stop.get()) {
344 if (stop.get())
365 if (stop.get())
369 if (!stop.get()) {
501 if(DocBuilder.this.stop.get()) break;
659 if (stop.get())
720 if (stop.get())
955 if (stop.get())
970 if (stop.get())
996 if (stop
1087 private AtomicBoolean stop = new AtomicBoolean(false); field in class:DocBuilder
[all...]
/lucene-3.6.0/solr/core/src/java/org/apache/solr/handler/
H A DSnapPuller.java92 private volatile boolean stop = false; field in class:SnapPuller
346 stop = false;
775 stop = true;
937 if (stop) {
938 stop = false;
/lucene-3.6.0/solr/client/ruby/flare/public/javascripts/
H A Dprototype.js131 stop: function() {
1045 stop: function() {
2215 stop: function(event) {

Completed in 218 milliseconds