Searched defs:record (Results 1 - 4 of 4) sorted by relevance

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/
H A DSearcherLifetimeManager.java46 * then record this searcher:
52 * long token = mgr.record(searcher);
161 * You should record this long token in the search results
165 public long record(IndexSearcher searcher) throws IOException { method in class:SearcherLifetimeManager
291 * calling {@link #record} while you call close();
308 throw new IllegalStateException("another thread called record while this SearcherLifetimeManager instance was being closed; not all searchers were closed");
/lucene-3.6.0/solr/contrib/dataimporthandler/src/java/org/apache/solr/handler/dataimport/
H A DXPathEntityProcessor.java320 public void handle(Map<String, Object> record, String xpath) {
321 rows.add(readRow(record, xpath));
355 protected Map<String, Object> readRow(Map<String, Object> record, String xpath) { argument
357 List<String> names = (List<String>) record.get("name");
358 List<String> values = (List<String>) record.get("value");
378 record.put(XPATH_FIELD_NAME, xpath);
379 return record;
429 public void handle(Map<String, Object> record, String xpath) {
438 row = readRow(record, xpath);
H A DXPathRecordReader.java46 * A record is a Map<String,Object> . The key is the provided name
77 * @param forEachXpath The XPATH for which a record is emitted. Once the
79 * fields and at the close of the tag, a record is emitted containing all
82 * parent tag or above will also be included in the record, but these are
83 * not cleared after emitting the record.
105 * @param name The name for this field in the emitted record
107 * @param multiValued If 'true' then the emitted record will have values in
120 * @param name The name for this field in the emitted record
122 * @param multiValued If 'true' then the emitted record will have values in
137 * @param name The name for this field in the emitted record
487 build( List<String> paths, String fieldName, boolean multiValued, boolean record, int flags ) argument
646 handle(Map<String, Object> record, String xpath) argument
[all...]
/lucene-3.6.0/solr/core/src/java/org/apache/solr/internal/csv/
H A DCSVParser.java76 /** A record buffer for getLine(). Grows as necessary and is reused. */
77 private final ArrayList record = new ArrayList(); field in class:CSVParser
238 record.clear();
244 record.add(reusableToken.content.toString());
247 record.add(reusableToken.content.toString());
251 record.add(reusableToken.content.toString());
266 if (!record.isEmpty()) {
267 ret = (String[]) record.toArray(new String[record.size()]);
276 * number does not correspond to the record
[all...]

Completed in 998 milliseconds