Searched defs:tag (Results 1 - 6 of 6) sorted by relevance

/lucene-3.6.0/solr/core/src/test/org/apache/solr/request/
H A DTestWriterPerf.java55 String tag = "f_ss"; field in class:TestWriterPerf
65 index(id,1, i1, 100,t1,"now is the time for all good men", tag,"patriotic");
66 index(id,2, i1, 50 ,t1,"to come to the aid of their country.", tag,"patriotic",tag,"country",tag,"nation",tag,"speeches");
67 index(id,3, i1, 2 ,t1,"how now brown cow", tag,"cow",tag,"jersey");
68 index(id,4, i1, -100 ,t1,"the quick fox jumped over the lazy dog",tag,"fox",tag,"do
[all...]
/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/common/util/
H A DXML.java91 public final static void writeXML(Writer out, String tag, String val) throws IOException { argument
93 out.write(tag);
102 out.write(tag);
108 public final static void writeUnescapedXML(Writer out, String tag, String val, Object... attrs) throws IOException { argument
110 out.write(tag);
127 out.write(tag);
133 public final static void writeXML(Writer out, String tag, String val, Object... attrs) throws IOException { argument
135 out.write(tag);
152 out.write(tag);
158 public static void writeXML(Writer out, String tag, Strin argument
[all...]
H A DJavaBinCodec.java57 * this is a special tag signals an end. No value is associated with it
61 // types that combine tag + length (or other info) in a single byte
161 // if top 3 bits are clear, this is a normal tag
268 public void writeTag(byte tag) throws IOException { argument
269 daos.writeByte(tag);
272 public void writeTag(byte tag, int size) throws IOException { argument
273 if ((tag & 0xe0) != 0) {
275 daos.writeByte(tag | size);
277 daos.writeByte(tag | 0x1f);
281 daos.writeByte(tag);
[all...]
/lucene-3.6.0/solr/test-framework/src/java/org/apache/solr/util/
H A DTestHarness.java454 * @param args The attributes of the delete tag
470 * @param args The attributes of the delete tag
509 private static String simpleTag(String tag, String... args) { argument
515 XML.writeXML(r, tag, null);
517 XML.writeXML(r, tag, null, (Object[])args);
/lucene-3.6.0/solr/core/src/java/org/apache/solr/response/
H A DXMLWriter.java210 /**Writes a tag with attributes
212 * @param tag
218 public void startTag(String tag, Map<String,String> attributes, boolean closeTag, boolean escape) throws IOException { argument
221 writer.write(tag);
234 /**Write a complete tag w/ attributes and cdata (the cdata is not enclosed in $lt;!CDATA[]!&gt;
235 * @param tag
242 public void writeCdataTag(String tag, Map<String,String> attributes, String cdata, boolean escapeCdata, boolean escapeAttr) throws IOException { argument
245 writer.write(tag);
260 writer.write(tag);
266 public void startTag(String tag, Strin argument
761 writePrim(String tag, String name, String val, boolean escape) argument
[all...]
/lucene-3.6.0/solr/core/src/java/org/apache/solr/core/
H A DSolrConfig.java261 private void loadPluginInfo(Class clazz, String tag, boolean requireName, boolean requireClass) { argument
262 List<PluginInfo> result = readPluginInfos(tag, requireName, requireClass);
266 public List<PluginInfo> readPluginInfos(String tag, boolean requireName, boolean requireClass) { argument
268 NodeList nodes = (NodeList) evaluate(tag, XPathConstants.NODESET);
270 PluginInfo pluginInfo = new PluginInfo(nodes.item(i), "[solrconfig.xml] " + tag, requireName, requireClass);

Completed in 274 milliseconds