Searched refs:find (Results 1 - 25 of 70) sorted by relevance

123

/lucene-3.6.0/solr/client/ruby/flare/vendor/plugins/engines/lib/engines/
H A Dplugin_list.rb17 self.find { |plugin| plugin.name.to_s == name_or_index.to_s }
/lucene-3.6.0/dev-tools/scripts/
H A DdiffSources.py53 keep = l.lower().find('/build/') == -1 and (l.lower().startswith('Only in') or ((l.lower().endswith('.java') or l.lower().endswith('.txt') or l.lower().endswith('.xml') or l.lower().endswith('.iml')) and l.find('/.svn/') == -1))
H A DsmokeTestRelease.py35 # This tool expects to find /lucene and /solr off the base URL. You
52 if s.find('java version "%s.' % version) == -1:
117 if not quiet and fileName.find('.asc') == -1:
137 if not quiet and fileName.find('.asc') == -1:
250 if line.lower().find('warning') != -1 \
251 and line.find('WARNING: This key is not certified with a trusted signature') == -1:
264 if line.lower().find('warning') != -1:
298 if isHTML and s.find('Release %s' % version) == -1:
301 if s.lower().find('not yet released') != -1:
310 if s.find(su
[all...]
H A DcheckJavaDocs.py62 if desc is not None and fullPath.find('/overview-summary.html') == -1:
92 if dirPath.find('/all/') != -1:
/lucene-3.6.0/solr/client/ruby/solr-ruby/lib/solr/importer/
H A Dxpath_mapper.rb19 doc.find(xpath.to_s).collect do |node|
/lucene-3.6.0/solr/core/src/test/org/apache/solr/
H A DDisMaxRequestHandlerTest.java182 assertTrue(p.matcher(resp).find());
183 assertFalse(p_bool.matcher(resp).find());
192 assertTrue(p.matcher(resp).find());
193 assertTrue(p_bool.matcher(resp).find());
/lucene-3.6.0/solr/scripts/
H A Dbackupcleaner101 find ${data_dir} -maxdepth 0 -name foobar >/dev/null 2>&1
109 for i in `find ${data_dir} ${maxdepth} -name 'backup.*' -mtime +${days} -print`
117 backups=`find ${data_dir} -type d -name 'backup.*' 2>/dev/null| sort -r`
H A Dsnapcleaner113 find ${data_dir} -maxdepth 0 -name foobar >/dev/null 2>&1
121 for i in `find ${data_dir} ${maxdepth} -name 'snapshot.*' -mtime +${days} -print`
129 snapshots=`find ${data_dir} -type d -name 'snapshot.*' 2>/dev/null| sort -r`
H A Dsnapshooter96 previous=`find ${data_dir} -name snapshot.\* | sort -r | head -1`
120 find . -print|cpio -pdlmu ${temp} 1>/dev/null 2>&1
/lucene-3.6.0/lucene/contrib/grouping/src/java/org/apache/lucene/search/grouping/
H A DSentinelIntSet.java77 public int find(int key) { method in class:SentinelIntSet
93 return find(key) >= 0;
97 int s = find(key);
H A DTermSecondPassGroupingCollector.java68 int slot = ordSet.find(index.order[doc]);
/lucene-3.6.0/solr/contrib/dataimporthandler/src/java/org/apache/solr/handler/dataimport/
H A DLineEntityProcessor.java122 if (acceptLineRegex != null && ! acceptLineRegex.matcher(line).find()) continue;
123 if (skipLineRegex != null && skipLineRegex.matcher(line).find()) continue;
H A DFileListEntityProcessor.java148 if (m.find()) {
156 if (m.find()) {
185 if (m.find()) {
234 } else if (fileNamePattern.matcher(name).find()) {
235 if (excludesPattern != null && excludesPattern.matcher(name).find())
/lucene-3.6.0/solr/client/ruby/flare/config/
H A Dboot.rb44 STDERR.puts %(Cannot find gem for Rails ~>#{version}.0:
/lucene-3.6.0/solr/core/src/java/org/apache/solr/analysis/
H A DPatternTokenizer.java86 while (matcher.find()) {
101 while (matcher.find()) {
H A DPatternTokenizerFactory.java129 while(matcher.find()) {
166 while(matcher.find()) {
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/compound/hyphenation/
H A DTernaryTree.java286 public int find(String key) { method in class:TernaryTree
292 return find(strkey, 0);
295 public int find(char[] key, int start) { method in class:TernaryTree
327 return (find(key) >= 0);
413 * tree is traversed to find the key substrings actually used. In addition,
440 k = map.find(kv.getArray(), lo[p]);
591 * traverse the tree to find next key
659 System.out.println((char) tt.find("Car"));
660 System.out.println((char) tt.find("Carlos"));
661 System.out.println((char) tt.find("alt
[all...]
/lucene-3.6.0/lucene/contrib/analyzers/phonetic/src/java/org/apache/lucene/analysis/phonetic/
H A DBeiderMorseFilter.java87 if (matcher.find()) {
102 if (matcher.find()) {
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/util/collections/
H A DArrayHashMap.java275 return find(key) != 0;
290 protected int find(K key) { method in class:ArrayHashMap
308 // If we got this far, it could only mean we did not find the key we
315 * use the baseHashIndex. If those call {@link #find()} there's no need to
337 // If we got thus far, it could only mean we did not find the key we
345 return (V) values[find(key)];
408 int index = find(key);
435 * @param key used to find the value to remove
H A DFloatToObjectMap.java317 return find(key) != 0;
322 * This method iterates over the collection, trying to find an equal object.
345 protected int find(float key) { method in class:FloatToObjectMap
363 // If we got this far, it could only mean we did not find the key we
370 * Some methods use the baseHashIndex. If those call {@link #find()} there's
395 // If we got this far, it could only mean we did not find the key we
410 return (T) values[find(key)];
481 int index = find(key);
508 * @param key used to find the value to remove
H A DIntToDoubleMap.java319 return find(key) != 0;
324 * This method iterates over the collection, trying to find an equal object.
346 protected int find(int key) { method in class:IntToDoubleMap
364 // If we got this far, it could only mean we did not find the key we
371 * Some methods use the baseHashIndex. If those call {@link #find()} there's
396 // If we got this far, it could only mean we did not find the key we
410 return values[find(key)];
479 int index = find(key);
506 * @param key used to find the value to remove
H A DIntToIntMap.java316 return find(key) != 0;
321 * This method iterates over the collection, trying to find an equal object.
343 protected int find(int key) { method in class:IntToIntMap
361 // If we got this far, it could only mean we did not find the key we
368 * Some methods use the baseHashIndex. If those call {@link #find()} there's
393 // If we got this far, it could only mean we did not find the key we
407 return values[find(key)];
476 int index = find(key);
503 * @param key used to find the value to remove
H A DIntToObjectMap.java317 return find(key) != 0;
322 * This method iterates over the collection, trying to find an equal object.
345 protected int find(int key) { method in class:IntToObjectMap
363 // If we got this far, it could only mean we did not find the key we
370 * Some methods use the baseHashIndex. If those call {@link #find()} there's
395 // If we got this far, it could only mean we did not find the key we
410 return (T) values[find(key)];
481 int index = find(key);
508 * @param key used to find the value to remove
H A DObjectToFloatMap.java320 return find(key) != 0;
325 * This method iterates over the collection, trying to find an equal object.
347 protected int find(K key) { method in class:ObjectToFloatMap
365 // If we got this far, it could only mean we did not find the key we
372 * Some methods use the baseHashIndex. If those call {@link #find()} there's
397 // If we got this far, it could only mean we did not find the key we
411 return values[find(key)];
481 int index = find(key);
508 * @param key used to find the value to remove
H A DObjectToIntMap.java320 return find(key) != 0;
325 * This method iterates over the collection, trying to find an equal object.
347 protected int find(K key) { method in class:ObjectToIntMap
365 // If we got this far, it could only mean we did not find the key we
372 * Some methods use the baseHashIndex. If those call {@link #find()} there's
397 // If we got this far, it could only mean we did not find the key we
411 return values[find(key)];
480 int index = find(key);
507 * @param key used to find the value to remove

Completed in 119 milliseconds

123