Searched defs:put (Results 1 - 25 of 36) sorted by relevance

12

/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/taxonomy/writercache/
H A DTaxonomyWriterCache.java28 * It basically has put() methods for adding a mapping, and get() for looking
30 * everything that has been put into it, and might in fact selectively
36 * loaded into the cache, and since then no put() returned true).
40 * cleanup (see {@link #put(CategoryPath, int)}'s return value).
58 * fed with all the categories, and since then put() never returned true)
91 public boolean put(CategoryPath categoryPath, int ordinal); method in interface:TaxonomyWriterCache
94 * Like {@link #put(CategoryPath, int)}, but for a given prefix of the
100 public boolean put(CategoryPath categoryPath, int prefixLen, int ordinal); method in interface:TaxonomyWriterCache
110 * After hasRoom(n) returned <code>true</code>, the following n put()
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DDoubleBarrelLRUCache.java85 put((K) key.clone(), result);
91 public void put(K key, V value) { method in class:DoubleBarrelLRUCache
101 primary.put(key, value);
H A DMapOfSets.java53 public int put(K key, V val) { method in class:MapOfSets
59 theMap.put(key, theSet);
76 theMap.put(key, theSet);
H A DWeakIdentityMap.java80 public V put(K key, V value) { method in class:WeakIdentityMap
82 return backingStore.put(new IdentityWeakReference(key, queue), value);
H A DScorerDocQueue.java69 public final void put(Scorer scorer) { method in class:ScorerDocQueue
83 put(scorer);
/lucene-3.6.0/lucene/contrib/grouping/src/java/org/apache/lucene/search/grouping/
H A DSentinelIntSet.java96 public int put(int key) { method in class:SentinelIntSet
/lucene-3.6.0/lucene/contrib/analyzers/kuromoji/src/tools/java/org/apache/lucene/analysis/ja/util/
H A DUnknownDictionaryWriter.java33 public int put(String[] entry) { method in class:UnknownDictionaryWriter
38 int result = super.put(entry);
H A DBinaryDictionaryWriter.java51 * put the entry in map
54 public int put(String[] entry) { method in class:BinaryDictionaryWriter
98 newBuffer.put(buffer);
132 buffer.put((byte) (shared << 4 | suffix));
140 buffer.put((byte) (reading.length() << 1 | 1));
143 buffer.put((byte) (reading.length() << 1));
153 // buffer.put((byte) shared);
156 buffer.put((byte) (pronunciation.length() << 1 | 1));
159 buffer.put((byte) (pronunciation.length() << 1));
181 buffer.put((byt
[all...]
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/taxonomy/writercache/cl2o/
H A DCl2oTaxonomyWriterCache.java59 public boolean put(CategoryPath categoryPath, int ordinal) { method in class:Cl2oTaxonomyWriterCache
66 public boolean put(CategoryPath categoryPath, int prefixLen, int ordinal) { method in class:Cl2oTaxonomyWriterCache
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/taxonomy/writercache/lru/
H A DLruTaxonomyWriterCache.java92 public boolean put(CategoryPath categoryPath, int ordinal) { method in class:LruTaxonomyWriterCache
93 boolean ret = cache.put(categoryPath, new Integer(ordinal));
100 // (put() removes the 2/3rd oldest entries).
107 public boolean put(CategoryPath categoryPath, int prefixLen, int ordinal) { method in class:LruTaxonomyWriterCache
108 boolean ret = cache.put(categoryPath, prefixLen, new Integer(ordinal));
115 // (put() removes the 2/3rd oldest entries).
H A DNameIntCacheLRU.java96 boolean put (CategoryPath name, Integer val) { method in class:NameIntCacheLRU
97 cache.put(key(name), val);
101 boolean put (CategoryPath name, int prefixLen, Integer val) { method in class:NameIntCacheLRU
102 cache.put(key(name, prefixLen), val);
/lucene-3.6.0/lucene/contrib/facet/src/test/org/apache/lucene/facet/taxonomy/directory/
H A DTestDirectoryTaxonomyWriter.java39 // always returns true in put(), to indicate some cache entries were cleared.
47 public boolean put(CategoryPath categoryPath, int ordinal) { return true; } method in class:TestDirectoryTaxonomyWriter.NoOpCache
48 public boolean put(CategoryPath categoryPath, int prefixLen, int ordinal) { return true; } method in class:TestDirectoryTaxonomyWriter.NoOpCache
78 userCommitData.put("testing", "1 2 3");
95 put("just", "data");
141 put("just", "data");
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/compound/hyphenation/
H A DByteVector.java95 public void put(int index, byte val) { method in class:ByteVector
H A DCharVector.java109 public void put(int index, char val) { method in class:CharVector
/lucene-3.6.0/solr/core/src/java/org/apache/solr/search/
H A DHashDocSet.java72 put(docs[i]);
78 void put(int doc) { method in class:HashDocSet
99 // see put() for algorithm details.
H A DSolrCache.java85 public V put(K key, V value); method in interface:SolrCache
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/
H A DCachingWrapperFilter.java115 public synchronized void put(Object coreKey, Object delCoreKey, T value) { method in class:CachingWrapperFilter.FilterCache
117 cache.put(coreKey, value);
119 cache.put(delCoreKey, value);
121 cache.put(coreKey, value);
122 cache.put(delCoreKey, value);
212 cache.put(coreKey, delCoreKey, docIdSet);
/lucene-3.6.0/solr/core/src/java/org/apache/solr/core/
H A DJmxMonitoredMap.java130 public SolrInfoMBean put(String key, SolrInfoMBean infoBean) { method in class:JmxMonitoredMap
143 return super.put(key, infoBean);
186 map.put("type", key);
188 map.put("id", infoBean.getName());
/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/common/
H A DSolrDocument.java98 _fields.put(name, value);
137 _fields.put( name, vals );
221 public Collection<Object> put(String key, Collection<Object> value) {throw new UnsupportedOperationException();}
250 public Collection<Object> put(String key, Object value) {throw new UnsupportedOperationException();}
285 public Object put(String key, Object value) { method in class:SolrDocument
286 return _fields.put(key, value);
H A DSolrInputDocument.java124 _fields.put( name, field );
214 public SolrInputField put(String key, SolrInputField value) { method in class:SolrInputDocument
215 return _fields.put(key, value);
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/util/collections/
H A DArrayHashMap.java356 // Iterates fast over the collection. Any valid pair is put into the new
406 public V put(K key, V e) { method in class:ArrayHashMap
424 // Now that everything is set, the pair can be just put inside with no
H A DFloatToObjectMap.java422 // Iterates fast over the collection. Any valid pair is put into the new
479 public T put(float key, T e) { method in class:FloatToObjectMap
497 // Now that everything is set, the pair can be just put inside with no
H A DIntToDoubleMap.java421 // Iterates fast over the collection. Any valid pair is put into the new
477 public double put(int key, double v) { method in class:IntToDoubleMap
495 // Now that everything is set, the pair can be just put inside with no
H A DIntToIntMap.java418 // Iterates fast over the collection. Any valid pair is put into the new
474 public int put(int key, int e) { method in class:IntToIntMap
492 // Now that everything is set, the pair can be just put inside with no
H A DIntToObjectMap.java422 // Iterates fast over the collection. Any valid pair is put into the new
479 public T put(int key, T e) { method in class:IntToObjectMap
497 // Now that everything is set, the pair can be just put inside with no

Completed in 71 milliseconds

12