Searched defs:ex (Results 1 - 9 of 9) sorted by relevance

/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/index/
H A DTestNRTReaderWithThreads.java57 assertNull("Exception thrown: "+indexThreads[x].ex, indexThreads[x].ex);
65 assertNull("Exception thrown: "+indexThreads[x].ex, indexThreads[x].ex);
76 volatile Throwable ex; field in class:TestNRTReaderWithThreads.RunThread
109 } catch (Throwable ex) {
110 ex.printStackTrace(System.out);
111 this.ex = ex;
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/index/
H A DTestNRTReaderWithThreads.java57 assertNull("Exception thrown: "+indexThreads[x].ex, indexThreads[x].ex);
65 assertNull("Exception thrown: "+indexThreads[x].ex, indexThreads[x].ex);
76 volatile Throwable ex; field in class:TestNRTReaderWithThreads.RunThread
109 } catch (Throwable ex) {
110 ex.printStackTrace(System.out);
111 this.ex = ex;
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/search/
H A DAssertingIndexSearcher.java35 public AssertingIndexSearcher(IndexReader r, ExecutorService ex) { argument
36 super(r, ex);
/lucene-3.6.0/lucene/backwards/src/test-framework/java/org/apache/lucene/search/
H A DAssertingIndexSearcher.java35 public AssertingIndexSearcher(IndexReader r, ExecutorService ex) { argument
36 super(r, ex);
/lucene-3.6.0/solr/core/src/java/org/apache/solr/servlet/
H A DSolrDispatchFilter.java232 //For security reasons it's a bad idea to allow a leading '/', ex: /select?qt=/update see SOLR-3161
290 catch (Throwable ex) {
291 sendError( (HttpServletResponse)response, ex );
368 protected void sendError(HttpServletResponse res, Throwable ex) throws IOException { argument
371 if( ex instanceof SolrException ) {
372 code = ((SolrException)ex).code();
378 ex.printStackTrace(new PrintWriter(sw));
381 SolrException.logOnce(log,null,ex );
389 res.sendError( code, ex.getMessage() + trace );
/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/client/solrj/impl/
H A DConcurrentUpdateSolrServer.java196 } catch (Exception ex) {
333 public void handleError(Throwable ex) { argument
334 log.error("error", ex);
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/compound/hyphenation/
H A DPatternParser.java201 protected ArrayList<Object> normalizeException(ArrayList<?> ex) { argument
203 for (int i = 0; i < ex.size(); i++) {
204 Object item = ex.get(i);
232 protected String getExceptionWord(ArrayList<?> ex) { argument
234 for (int i = 0; i < ex.size(); i++) {
235 Object item = ex.get(i);
386 private String getLocationString(SAXParseException ex) { argument
389 String systemId = ex.getSystemId();
398 str.append(ex.getLineNumber());
400 str.append(ex
[all...]
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/util/
H A DLuceneTestCase.java1327 final ExecutorService ex = (random.nextBoolean()) ? null
1330 if (ex != null && VERBOSE) {
1333 return new AssertingIndexSearcher(r, ex) {
1337 shutdownExecutorService(ex);
1343 static void shutdownExecutorService(ExecutorService ex) { argument
1344 if (ex != null) {
1345 ex.shutdown();
1347 ex.awaitTermination(1000, TimeUnit.MILLISECONDS);
/lucene-3.6.0/lucene/backwards/src/test-framework/java/org/apache/lucene/util/
H A DLuceneTestCase.java1151 final ExecutorService ex = (random.nextBoolean()) ? null
1154 if (ex != null && VERBOSE) {
1157 return new AssertingIndexSearcher(r, ex) {
1161 shutdownExecutorService(ex);
1167 static void shutdownExecutorService(ExecutorService ex) { argument
1168 if (ex != null) {
1169 ex.shutdown();
1171 ex.awaitTermination(1000, TimeUnit.MILLISECONDS);

Completed in 863 milliseconds