Searched defs:old (Results 1 - 7 of 7) sorted by relevance

/lucene-3.6.0/lucene/contrib/analyzers/stempel/src/java/org/egothor/stemmer/
H A DReduce.java91 List<Row> removeGaps(int ind, List<Row> old, List<Row> to, int remap[]) { argument
94 Row now = old.get(ind);
100 removeGaps(c.ref, old, to, remap);
114 * @param old Description of the Parameter
117 public Remap(Row old, int remap[]) { argument
119 Iterator<Character> i = old.cells.keySet().iterator();
122 Cell c = old.at(ch);
H A DRow.java97 * @param old the Row to copy
99 public Row(Row old) { argument
100 cells = old.cells;
/lucene-3.6.0/solr/core/src/java/org/apache/solr/search/
H A DSolrCache.java56 * renenerate an item in the new cache from an entry in the old cache.
125 * Warm this cache associated with <code>searcher</code> using the <code>old</code>
126 * cache object. <code>this</code> and <code>old</code> will have the same concrete type.
128 void warm(SolrIndexSearcher searcher, SolrCache<K,V> old) throws IOException; argument
H A DFastLRUCache.java152 public void warm(SolrIndexSearcher searcher, SolrCache old) throws IOException { argument
155 FastLRUCache other = (FastLRUCache) old;
169 this, old, itemsArr[i].getKey(), itemsArr[i].getValue());
H A DLFUCache.java159 public void warm(SolrIndexSearcher searcher, SolrCache old) throws IOException { argument
162 LFUCache other = (LFUCache) old;
176 this, old, itemsArr[i].getKey(), itemsArr[i].getValue());
H A DLRUCache.java160 public void warm(SolrIndexSearcher searcher, SolrCache<K,V> old) throws IOException { argument
163 LRUCache<K,V> other = (LRUCache<K,V>)old;
195 boolean continueRegen = regenerator.regenerateItem(searcher, this, old, keys[i], vals[i]);
H A DSolrIndexSearcher.java1056 // old parameters: DocListAndSet out, Query query, List<Query> filterList, DocSet filter, Sort lsort, int offset, int len, int flags, long timeAllowed, NamedList<Object> responseHeader
1793 * Warm this searcher based on an old one (primarily for auto-cache warming).
1795 public void warm(SolrIndexSearcher old) throws IOException { argument
1803 if (logme) log.info("autowarming " + this + " from " + old + "\n\t" + old.cacheList[i]);
1815 this.cacheList[i].warm(this, old.cacheList[i]);

Completed in 2207 milliseconds