Searched defs:lines (Results 1 - 5 of 5) sorted by relevance

/lucene-3.6.0/solr/core/src/test/org/apache/solr/analysis/
H A DEnglishPorterFilterFactoryTest.java77 List<String> lines = new ArrayList<String>();
78 Collections.addAll(lines, "banks", "fledgling");
79 factory.inform(new LinesMockSolrResourceLoader(lines));
87 List<String> lines; field in class:EnglishPorterFilterFactoryTest.LinesMockSolrResourceLoader
89 LinesMockSolrResourceLoader(List<String> lines) { argument
90 this.lines = lines;
94 return lines;
H A DSnowballPorterFilterFactoryTest.java84 List<String> lines = new ArrayList<String>();
85 Collections.addAll(lines, "banks", "fledgling");
86 factory.inform(new LinesMockSolrResourceLoader(lines));
94 List<String> lines; field in class:SnowballPorterFilterFactoryTest.LinesMockSolrResourceLoader
96 LinesMockSolrResourceLoader(List<String> lines) { argument
97 this.lines = lines;
101 return lines;
/lucene-3.6.0/solr/core/src/java/org/apache/solr/internal/csv/writer/
H A DCSVConfigGuesser.java80 String[] lines = new String[10];
84 lines[counter] = line;
90 System.arraycopy(lines, 0, newLines, 0, counter);
91 lines = newLines;
93 analyseLines(lines);
111 protected void analyseLines(String[] lines) { argument
112 guessFixedWidth(lines);
113 guessFieldSeperator(lines);
118 * Just basing the fact on all lines being of the same length
119 * @param lines
121 guessFixedWidth(String[] lines) argument
137 guessFieldSeperator(String[] lines) argument
146 guessFixedWidthSeperator(String[] lines) argument
[all...]
/lucene-3.6.0/lucene/contrib/spellchecker/src/java/org/apache/lucene/search/suggest/fst/
H A DSort.java112 public int lines; field in class:Sort.SortInfo
122 "time=%.2f sec. total (%.2f reading, %.2f sorting, %.2f merging), lines=%d, temp files=%d, merges=%d, soft ram limit=%.2f MB",
124 lines, tempMergeFiles, mergeRounds,
185 int lines = 0;
186 while ((lines = readPartition(is)) > 0) {
187 merges.add(sortPartition(lines));
189 sortInfo.lines += lines;
321 // it as it reads new lines. The PQ used here is a more elegant solution and has
/lucene-3.6.0/solr/core/src/java/org/apache/solr/handler/
H A DCSVRequestHandler.java101 int skipLines; // number of lines to skip at start of file
335 private void input_err(String msg, String[] lines, int lineNo, Throwable e) { argument
338 if (lines != null) {
339 for (String val : lines) {

Completed in 43 milliseconds