Searched defs:inputFile (Results 1 - 2 of 2) sorted by relevance

/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/search/
H A DTotalFacetCounts.java111 static TotalFacetCounts loadFromFile(File inputFile, TaxonomyReader taxonomy, argument
113 DataInputStream dis = new DataInputStream(new BufferedInputStream(new FileInputStream(inputFile)));
H A DTotalFacetCountsCache.java168 * @param inputFile file from which to read the data
175 public synchronized void load(File inputFile, IndexReader indexReader, TaxonomyReader taxonomy, argument
177 if (!inputFile.isFile() || !inputFile.exists() || !inputFile.canRead()) {
178 throw new IllegalArgumentException("Exepecting an existing readable file: "+inputFile);
181 TotalFacetCounts tfc = TotalFacetCounts.loadFromFile(inputFile, taxonomy, facetIndexingParams);

Completed in 20 milliseconds