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

/lucene-3.6.0/solr/contrib/uima/src/java/org/apache/solr/uima/processor/ae/
H A DAEProviderFactory.java30 private static AEProviderFactory instance; field in class:AEProviderFactory
39 if (instance == null) {
40 instance = new AEProviderFactory();
42 return instance;
/lucene-3.6.0/solr/core/src/java/org/apache/solr/util/xslt/
H A DTransformerProvider.java53 public static TransformerProvider instance = new TransformerProvider(); field in class:TransformerProvider
/lucene-3.6.0/solr/contrib/dataimporthandler/src/test/org/apache/solr/handler/dataimport/
H A DTestContentStreamDataSource.java43 SolrInstance instance = null; field in class:TestContentStreamDataSource
50 instance = new SolrInstance("inst", null);
51 instance.setUp();
52 jetty = createJetty(instance);
59 instance.tearDown();
91 * if masterPort is null, this instance is a master -- otherwise this instance is a slave, and assumes the master is
147 private JettySolrRunner createJetty(SolrInstance instance) throws Exception { argument
148 System.setProperty("solr.solr.home", instance.getHomeDir());
149 System.setProperty("solr.data.dir", instance
[all...]
H A DTestSolrEntityProcessorEndToEnd.java83 private SolrInstance instance = null; field in class:TestSolrEntityProcessorEndToEnd
103 // data source solr instance
104 instance = new SolrInstance();
105 instance.setUp();
106 jetty = createJetty(instance);
118 instance.tearDown();
334 private JettySolrRunner createJetty(SolrInstance instance) throws Exception { argument
335 System.setProperty("solr.solr.home", instance.getHomeDir());
336 System.setProperty("solr.data.dir", instance.getDataDir());
/lucene-3.6.0/solr/core/src/java/org/apache/solr/handler/admin/
H A DShowFileRequestHandler.java85 private static ShowFileRequestHandler instance; field in class:ShowFileRequestHandler
89 instance = this; // used so that getFileContents can access hiddenFiles
208 if( instance != null && instance.hiddenFiles != null ) {
209 if( instance.hiddenFiles.contains( path ) ) {
/lucene-3.6.0/solr/core/src/test/org/apache/solr/handler/
H A DTestReplicationHandler.java115 private static JettySolrRunner createJetty(SolrInstance instance) throws Exception { argument
116 System.setProperty("solr.solr.home", instance.getHomeDir());
117 System.setProperty("solr.data.dir", instance.getDataDir());
/lucene-3.6.0/solr/core/src/java/org/apache/solr/core/
H A DSolrCore.java101 private static SolrCore instance; field in class:SolrCore
126 * Gets the configuration resource name used by this core instance.
134 * Gets the configuration resource name used by this core instance.
142 * Gets the configuration object used by this core instance.
149 * Gets the schema resource name used by this core instance.
157 * Gets the schema resource name used by this core instance.
166 * Gets the schema object used by this core instance.
241 * Returns a Map of name vs SolrInfoMBean objects. The returned map is an instance of
407 /** Creates an instance by trying a constructor that accepts a SolrCore before
409 *@param className the instance clas
[all...]

Completed in 791 milliseconds