Searched defs:attributes (Results 1 - 16 of 16) sorted by relevance

/lucene-3.6.0/solr/client/ruby/solr-ruby/lib/solr/
H A Dxml.rb27 # element.attributes['blah'] should work
28 def attributes method in class:XML
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/index/attributes/
H A DCategoryProperty.java1 package org.apache.lucene.facet.index.attributes;
H A DCategoryAttributesIterable.java1 package org.apache.lucene.facet.index.attributes;
H A DOrdinalProperty.java1 package org.apache.lucene.facet.index.attributes;
68 "Merging ordinal attributes is prohibited");
H A DCategoryAttribute.java1 package org.apache.lucene.facet.index.attributes;
H A DCategoryAttributeImpl.java1 package org.apache.lucene.facet.index.attributes;
/lucene-3.6.0/lucene/contrib/facet/src/test/org/apache/lucene/facet/index/attributes/
H A DCategoryAttributeImplTest.java1 package org.apache.lucene.facet.index.attributes;
11 import org.apache.lucene.facet.index.attributes.CategoryAttribute;
12 import org.apache.lucene.facet.index.attributes.CategoryAttributeImpl;
H A DCategoryAttributesIterableTest.java1 package org.apache.lucene.facet.index.attributes;
11 import org.apache.lucene.facet.index.attributes.CategoryAttribute;
12 import org.apache.lucene.facet.index.attributes.CategoryAttributesIterable;
/lucene-3.6.0/solr/core/src/java/org/apache/solr/core/
H A DPluginInfo.java35 public final Map<String, String> attributes; field in class:PluginInfo
43 attributes = unmodifiableMap(attrs);
53 attributes = unmodifiableMap(DOMUtil.toMap(node.getAttributes()));
83 String enable = attributes.get("enable");
88 return Boolean.parseBoolean(attributes.get("default"));
H A DJmxMonitoredMap.java278 public AttributeList getAttributes(String[] attributes) { argument
280 for (String attribute : attributes) {
297 public AttributeList setAttributes(AttributeList attributes) { argument
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DAttributeSource.java126 private final Map<Class<? extends Attribute>, AttributeImpl> attributes; field in class:AttributeSource
140 * An AttributeSource that uses the same attributes as the supplied one.
146 this.attributes = input.attributes;
156 this.attributes = new LinkedHashMap<Class<? extends Attribute>, AttributeImpl>();
173 return Collections.unmodifiableSet(attributes.keySet()).iterator();
234 * the <code>AttributeSource</code>, because the provided attributes may already exist.
235 * You should always retrieve the wanted attributes using {@link #getAttribute} after adding
252 if (!attributes.containsKey(curInterface)) {
255 attributes
[all...]
/lucene-3.6.0/solr/contrib/clustering/src/java/org/apache/solr/handler/clustering/carrot2/
H A DCarrotClusteringEngine.java205 // Prepare attributes for Carrot2 clustering call
206 Map<String, Object> attributes = new HashMap<String, Object>();
208 attributes.put(AttributeNames.DOCUMENTS, documents);
209 attributes.put(AttributeNames.QUERY, query.toString());
213 attributes.put("solrFieldNames", getFieldsForClustering(sreq));
215 // Pass extra overriding attributes from the request, if any
216 extractCarrotAttributes(sreq.getParams(), attributes);
219 return clustersToNamedList(controller.process(attributes,
233 // Initialize Carrot2 controller. Pass initialization attributes, if any.
563 * Extracts parameters that can possibly match some attributes o
565 extractCarrotAttributes(SolrParams solrParams, Map<String, Object> attributes) argument
[all...]
/lucene-3.6.0/solr/contrib/dataimporthandler/src/java/org/apache/solr/handler/dataimport/
H A DXPathRecordReader.java207 List<Node> attributes; // List of attribute Nodes associated with this Node field in class:XPathRecordReader.Node
264 if (attributes != null) {
265 // we interested in storing attributes from the input stream
266 for (Node node : attributes) {
431 if (attributes != null) {
432 for (Node n : attributes) {
499 // have an element attribute. Add it to this nodes list of attributes
500 if (attributes == null) {
501 attributes = new ArrayList<Node>();
504 attributes
[all...]
/lucene-3.6.0/solr/contrib/extraction/src/java/org/apache/solr/handler/extraction/
H A DSolrContentHandler.java261 public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException { argument
268 for (int i = 0; i < attributes.getLength(); i++) {
269 addField(localName, attributes.getValue(i), null);
272 for (int i = 0; i < attributes.getLength(); i++) {
273 bldrStack.getLast().append(attributes.getValue(i)).append(' ');
/lucene-3.6.0/lucene/contrib/benchmark/src/java/org/apache/lucene/benchmark/byTask/feeds/
H A DEnwikiContentSource.java224 Attributes attributes) {
223 startElement(String namespace, String simple, String qualified, Attributes attributes) argument
/lucene-3.6.0/solr/core/src/java/org/apache/solr/response/
H A DXMLWriter.java210 /**Writes a tag with attributes
213 * @param attributes
218 public void startTag(String tag, Map<String,String> attributes, boolean closeTag, boolean escape) throws IOException { argument
222 if(!attributes.isEmpty()) {
223 for (Map.Entry<String, String> entry : attributes.entrySet()) {
234 /**Write a complete tag w/ attributes and cdata (the cdata is not enclosed in $lt;!CDATA[]!&gt;
236 * @param attributes
242 public void writeCdataTag(String tag, Map<String,String> attributes, String cdata, boolean escapeCdata, boolean escapeAttr) throws IOException { argument
246 if (!attributes.isEmpty()) {
247 for (Map.Entry<String, String> entry : attributes
[all...]

Completed in 28 milliseconds