Searched defs:load (Results 1 - 21 of 21) sorted by relevance

/lucene-3.6.0/solr/client/ruby/flare/vendor/plugins/engines/lib/engines/
H A Dplugin.rb42 # need plugin directories to be added to the load path, i.e.
70 # lib will actually be removed from the load paths when we call
110 @about = YAML.load(File.open(about_path).read)
120 # Here we add controller/helper code to the appropriate load paths (see
123 def load method in class:Plugin
124 logger.debug "Plugin '#{name}': starting load."
133 # to the three relevant load paths mechanism that Rails might use:
144 # Add relevant paths under the engine root to the load path
147 # Add to the load paths
/lucene-3.6.0/solr/core/src/java/org/apache/solr/handler/
H A DContentStreamLoader.java48 public abstract void load(SolrQueryRequest req, SolrQueryResponse rsp, ContentStream stream) throws Exception; method in class:ContentStreamLoader
H A DXMLLoader.java61 public void load(SolrQueryRequest req, SolrQueryResponse rsp, ContentStream stream) throws Exception { method in class:XMLLoader
H A DXsltXMLLoader.java65 public void load(SolrQueryRequest req, SolrQueryResponse rsp, ContentStream stream) throws Exception { method in class:XsltXMLLoader
H A DJsonLoader.java63 public void load(SolrQueryRequest req, SolrQueryResponse rsp, ContentStream stream) throws Exception { method in class:JsonLoader
H A DCSVRequestHandler.java349 /** load the CSV input */
351 public void load(SolrQueryRequest req, SolrQueryResponse rsp, ContentStream stream) throws IOException { method in class:CSVLoader
/lucene-3.6.0/lucene/contrib/analyzers/stempel/src/java/org/apache/lucene/analysis/stempel/
H A DStempelStemmer.java49 this(load(stemmerTable));
64 public static Trie load(InputStream stemmerTable) throws IOException { method in class:StempelStemmer
/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/messages/
H A DNLS.java40 * reference) - performs validation of all message in a bundle, at class load
87 * a class that extends NLS in a static block at class load time.
96 load(clazz);
101 // because this function is supposed to be called at class load time.
130 private static void load(Class<? extends NLS> clazz) { method in class:NLS
/lucene-3.6.0/lucene/contrib/spellchecker/src/java/org/apache/lucene/search/suggest/fst/
H A DFSTCompletionLookup.java274 public synchronized boolean load(InputStream input) throws IOException { method in class:FSTCompletionLookup
H A DWFSTCompletionLookup.java136 public boolean load(InputStream input) throws IOException { method in class:WFSTCompletionLookup
H A DFSTLookup.java549 public boolean load(InputStream input) throws IOException { method in class:FSTLookup
/lucene-3.6.0/solr/contrib/extraction/src/java/org/apache/solr/handler/extraction/
H A DExtractingDocumentLoader.java155 public void load(SolrQueryRequest req, SolrQueryResponse rsp, ContentStream stream) throws IOException { method in class:ExtractingDocumentLoader
/lucene-3.6.0/solr/core/src/java/org/apache/solr/util/plugin/
H A DAbstractPluginLoader.java124 public T load( ResourceLoader loader, NodeList nodes ) method in class:AbstractPluginLoader
134 // still load the others, and have a working system.
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/search/
H A DTotalFacetCountsCache.java175 public synchronized void load(File inputFile, IndexReader indexReader, TaxonomyReader taxonomy, method in class:TotalFacetCountsCache
189 * making them available for a later call to {@link #load(File, IndexReader, TaxonomyReader, FacetIndexingParams)}.
198 * @see #load(File, IndexReader, TaxonomyReader, FacetIndexingParams)
/lucene-3.6.0/lucene/contrib/spellchecker/src/java/org/apache/lucene/search/suggest/
H A DLookup.java154 * Discard current lookup data and load it from a previously saved copy.
156 * @param input the {@link InputStream} to load the lookup data.
160 public abstract boolean load(InputStream input) throws IOException; method in class:Lookup
/lucene-3.6.0/lucene/contrib/spellchecker/src/java/org/apache/lucene/search/suggest/jaspell/
H A DJaspellLookup.java173 public boolean load(InputStream input) throws IOException { method in class:JaspellLookup
/lucene-3.6.0/lucene/contrib/spellchecker/src/java/org/apache/lucene/search/suggest/tst/
H A DTSTLookup.java189 public synchronized boolean load(InputStream input) throws IOException { method in class:TSTLookup
/lucene-3.6.0/lucene/contrib/analyzers/smartcn/src/java/org/apache/lucene/analysis/cn/smart/hhmm/
H A DBigramDictionary.java67 singleInstance.load();
70 singleInstance.load(dictRoot);
97 // log.info("load bigram dict from serialization.");
114 private void load() throws IOException, ClassNotFoundException { method in class:BigramDictionary
119 private void load(String dictRoot) { method in class:BigramDictionary
210 // log.info("load dictionary done! " + dctFilePath + " total:" + total);
H A DWordDictionary.java86 singleInstance.load();
89 singleInstance.load(wordDictRoot);
98 * Attempt to load dictionary from provided directory, first trying coredict.mem, failing back on coredict.dct
102 public void load(String dctFileRoot) { method in class:WordDictionary
123 // log.info("load dictionary: " + dctFilePath + " total:" + total);
139 public void load() throws IOException, ClassNotFoundException { method in class:WordDictionary
165 // log.info("load core dict from serialization.");
/lucene-3.6.0/dev-tools/scripts/
H A DsmokeTestRelease.py140 def load(urlString): function
283 s = load(changesURL)
322 md5Expected, t = load(urlString + '.md5').strip().split()
326 sha1Expected, t = load(urlString + '.sha1').strip().split()
830 doc2 = ET.XML(load(subURL))
/lucene-3.6.0/solr/core/src/java/org/apache/solr/core/
H A DCoreContainer.java109 this.load(dir, configFile);
161 cores.load(solrHome, fconf);
165 cores.load(solrHome, new InputSource(new ByteArrayInputStream(DEF_SOLR_XML.getBytes("UTF-8"))));
191 p.load(is);
217 public void load(String dir, File configFile ) throws ParserConfigurationException, IOException, SAXException { method in class:CoreContainer
219 this.load(dir, new InputSource(configFile.toURI().toASCIIString()));
231 public void load(String dir, InputSource cfgis) method in class:CoreContainer

Completed in 35 milliseconds