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

/lucene-3.6.0/dev-tools/scripts/
H A DdiffSources.py43 keep = False variable
53 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)) variable
54 if keep:
58 elif keep:
/lucene-3.6.0/solr/core/src/java/org/apache/solr/analysis/
H A DCapitalizationFilterFactory.java39 * "keep" - a keep word list. Each word that should be kept separated by whitespace.<br/>
40 * "keepIgnoreCase - true or false. If true, the keep list will be considered case-insensitive.<br/>
41 * "forceFirstLetter" - Force the first letter to be capitalized even if it is in the keep list<br/>
55 * keep="java solr lucene" keepIgnoreCase="false"
65 public static final String KEEP = "keep";
74 //Map<String,String> keep = new HashMap<String, String>(); // not synchronized because it is only initialized once
75 CharArraySet keep; field in class:CapitalizationFilterFactory
83 boolean forceFirstLetter = true; // make sure the first letter is capitol even if it is in the keep list
98 keep
[all...]

Completed in 33 milliseconds