/lucene-3.6.0/solr/client/ruby/solr-ruby/lib/solr/ |
H A D | connection.rb | 38 # only calls to Connection#add/#update/#delete, though a Connection#send(AddDocument.new(...)) 130 # delete a document from the index using the document id 131 def delete(document_id) method in class:Solr 137 # delete using a query 156 # to some requests: add(), query(), commit(), delete() or send()
|
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/util/ |
H A D | StemmerUtil.java | 82 * @param pos Position of character to delete 86 public static int delete(char s[], int pos, int len) { method in class:StemmerUtil 97 * @param pos Position of character to delete 99 * @param nChars number of characters to delete 105 len = delete(s, pos, len);
|
/lucene-3.6.0/solr/core/src/java/org/apache/solr/util/ |
H A D | VersionedFile.java | 82 // delete old files only after we have successfuly opened the newest 84 delete(oldFiles); 91 private static synchronized void delete(Collection<File> files) { method in class:VersionedFile 97 df.delete();
|
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/ |
H A D | IndexCommit.java | 74 public abstract void delete(); method in class:IndexCommit
|
H A D | SnapshotDeletionPolicy.java | 93 public void delete() { method in class:SnapshotDeletionPolicy.SnapshotCommitPoint 95 // Suppress the delete request if this commit point is 98 cp.delete();
|
H A D | IndexFileDeleter.java | 58 * when to delete commit points. The actual mechanics of 74 /* Files that we tried to delete but failed (likely 86 * default delete policy (KeepOnlyLastCommitDeletionPolicy). 95 /* Commits that the IndexDeletionPolicy have decided to delete: */ 131 * the policy to let it delete commits. This will remove 246 // Now delete anything with ref count at 0. These are 328 * the filesystem and delete such files. If segmentName 329 * is non-null, we will only delete files corresponding to 391 * {@link IndexWriter#deleteUnusedFiles()}, which will attempt to delete the 414 message("delete pendin 704 public void delete() { method in class:IndexFileDeleter.CommitPoint [all...] |
H A D | DirectoryReader.java | 769 throw new StaleReaderException("IndexReader out of date and no longer valid for delete, undelete, or setNorm operations"); 784 throw new StaleReaderException("IndexReader out of date and no longer valid for delete, undelete, or setNorm operations"); 791 * Commit changes resulting from delete, undeleteAll, or setNorm operations 912 // delete unused files: 1063 public void delete() { method in class:DirectoryReader.ReaderCommit
|
/lucene-3.6.0/solr/contrib/dataimporthandler/src/java/org/apache/solr/handler/dataimport/ |
H A D | DIHCache.java | 69 * update a key's documents, first call delete(Object key). 99 public void delete(Object key); method in interface:DIHCache
|
H A D | SortedMapBackedCache.java | 85 public void delete(Object key) { method in class:SortedMapBackedCache
|
/lucene-3.6.0/solr/core/src/java/org/apache/solr/handler/ |
H A D | BinaryUpdateRequestHandler.java | 107 delete(update, processor); 125 private void delete(UpdateRequest update, UpdateRequestProcessor processor) throws IOException { method in class:BinaryUpdateRequestHandler
|
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/tr/ |
H A D | TurkishLowerCaseFilter.java | 69 length = delete(buffer, i, length); 115 * delete a character in-place. 118 private int delete(char s[], int pos, int len) { method in class:TurkishLowerCaseFilter
|
/lucene-3.6.0/solr/core/src/test/org/apache/solr/handler/component/ |
H A D | QueryElevationComponentTest.java | 72 private void delete() throws Exception { method in class:QueryElevationComponentTest 102 delete(); 132 delete(); 189 delete(); 311 delete(); 367 delete();
|
/lucene-3.6.0/solr/core/src/java/org/apache/solr/core/ |
H A D | IndexDeletionPolicyWrapper.java | 167 public void delete() { method in class:IndexDeletionPolicyWrapper.IndexCommitWrapper 172 delegate.delete();
|
/lucene-3.6.0/solr/core/src/java/org/apache/solr/update/ |
H A D | DirectUpdateHandler.java | 84 // released, we could delete it here. 100 // released, we could delete it here. 167 del committed[id] #delete from pending and committed 111 011 174 public void delete(DeleteUpdateCommand cmd) throws IOException { method in class:DirectUpdateHandler 220 searcher.getReader().delete(doc);
|
H A D | DirectUpdateHandler2.java | 87 <p>Supported delete commands: 96 <TD>delete</TD> 182 // released, we could try and delete it here 269 public void delete(DeleteUpdateCommand cmd) throws IOException { method in class:DirectUpdateHandler2
|
H A D | UpdateHandler.java | 134 public abstract void delete(DeleteUpdateCommand cmd) throws IOException; method in class:UpdateHandler
|
/lucene-3.6.0/solr/test-framework/src/java/org/apache/solr/util/ |
H A D | TestHarness.java | 452 * Generates a delete by query xml string 454 * @param args The attributes of the delete tag 460 return delete(r.getBuffer().toString(), args); 468 * Generates a delete by id xml string 470 * @param args The attributes of the delete tag 476 return delete(r.getBuffer().toString(), args); 484 * Generates a delete xml string 488 private static String delete(String val, String... args) { method in class:TestHarness 491 XML.writeUnescapedXML(r, "delete", val, (Object[])args);
|