/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/store/ |
H A D | TestCopyBytes.java | 44 IndexOutput out = dir.createOutput("test"); 66 out = dir.createOutput("test2"); 116 IndexOutput output = d.createOutput("data"); 121 IndexOutput outputHeader = d.createOutput("header"); 129 copies[i] = new CopyThread((IndexInput) input.clone(), d.createOutput("copy" + i));
|
H A D | TestDirectory.java | 34 dir.createOutput("test"); 59 IndexOutput out = dir.createOutput(fname); 144 dir.createOutput(name).close(); 170 IndexOutput out = fsDir.createOutput("afile");
|
H A D | TestMultiMMap.java | 53 IndexOutput io = mmapDir.createOutput("bytes"); 84 IndexOutput io = mmapDir.createOutput("zeroBytes"); 97 IndexOutput io = mmapDir.createOutput("bytes"); 116 IndexOutput io = mmapDir.createOutput("bytes");
|
H A D | TestNRTCachingDirectory.java | 118 dir.createOutput("foo.txt").close(); 141 dir.createOutput(name).close(); 154 IndexOutput os = dir.createOutput(name);
|
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/store/ |
H A D | TestCopyBytes.java | 44 IndexOutput out = dir.createOutput("test"); 66 out = dir.createOutput("test2"); 116 IndexOutput output = d.createOutput("data"); 121 IndexOutput outputHeader = d.createOutput("header"); 129 copies[i] = new CopyThread((IndexInput) input.clone(), d.createOutput("copy" + i));
|
H A D | TestDirectory.java | 34 dir.createOutput("test"); 59 IndexOutput out = dir.createOutput(fname); 144 dir.createOutput(name).close(); 170 IndexOutput out = fsDir.createOutput("afile");
|
H A D | TestMultiMMap.java | 54 IndexOutput io = mmapDir.createOutput("zeroBytes"); 67 IndexOutput io = mmapDir.createOutput("bytes"); 86 IndexOutput io = mmapDir.createOutput("bytes");
|
H A D | TestNRTCachingDirectory.java | 118 dir.createOutput("foo.txt").close(); 141 dir.createOutput(name).close(); 154 IndexOutput os = dir.createOutput(name);
|
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/index/ |
H A D | TestAllZerosSegmentsFile.java | 36 IndexOutput out = dir.createOutput(nextSegmentsFile);
|
H A D | TestCrashCausesCorruptIndex.java | 161 * realDirectory.createOutput(..) has been called on a certain specified name. 189 public IndexOutput createOutput(String name) throws IOException { method in class:TestCrashCausesCorruptIndex.CrashAfterCreateOutput 190 IndexOutput indexOutput = realDirectory.createOutput(name);
|
H A D | TestFieldInfos.java | 49 IndexOutput output = dir.createOutput(name);
|
H A D | TestDoc.java | 61 files.add(createOutput("test.txt", 65 files.add(createOutput("test2.txt", 70 private File createOutput(String name, String text) throws IOException { method in class:TestDoc
|
/lucene-3.6.0/lucene/contrib/facet/src/test/org/apache/lucene/util/ |
H A D | SlowRAMDirectory.java | 48 public IndexOutput createOutput(String name) throws IOException { method in class:SlowRAMDirectory 50 return new SlowIndexOutput(super.createOutput(name)); 53 return super.createOutput(name);
|
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/store/ |
H A D | Directory.java | 56 * write operations (such as {@link #createOutput(String)}). 101 public abstract IndexOutput createOutput(String name) method in class:Directory 234 os = to.createOutput(dest);
|
H A D | NRTCachingDirectory.java | 146 // Cannot do this -- if lucene calls createOutput but 220 public IndexOutput createOutput(String name) throws IOException { method in class:NRTCachingDirectory 222 System.out.println("nrtdir.createOutput name=" + name); 233 return cache.createOutput(name); 240 return delegate.createOutput(name); 335 final IndexOutput out = delegate.createOutput(fileName);
|
H A D | FileSwitchDirectory.java | 164 public IndexOutput createOutput(String name) throws IOException { method in class:FileSwitchDirectory 165 return getDirectory(name).createOutput(name);
|
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/ |
H A D | FormatPostingsPositionsWriter.java | 43 out = parent.parent.parent.dir.createOutput(IndexFileNames.segmentFileName(parent.parent.parent.segment, IndexFileNames.PROX_EXTENSION));
|
H A D | TermVectorsTermsWriter.java | 130 tvx = docWriter.directory.createOutput(IndexFileNames.segmentFileName(docWriter.getSegment(), IndexFileNames.VECTORS_INDEX_EXTENSION)); 131 tvd = docWriter.directory.createOutput(IndexFileNames.segmentFileName(docWriter.getSegment(), IndexFileNames.VECTORS_DOCUMENTS_EXTENSION)); 132 tvf = docWriter.directory.createOutput(IndexFileNames.segmentFileName(docWriter.getSegment(), IndexFileNames.VECTORS_FIELDS_EXTENSION));
|
H A D | TermVectorsWriter.java | 45 tvx = directory.createOutput(IndexFileNames.segmentFileName(segment, IndexFileNames.VECTORS_INDEX_EXTENSION)); 47 tvd = directory.createOutput(IndexFileNames.segmentFileName(segment, IndexFileNames.VECTORS_DOCUMENTS_EXTENSION)); 49 tvf = directory.createOutput(IndexFileNames.segmentFileName(segment, IndexFileNames.VECTORS_FIELDS_EXTENSION));
|
H A D | FormatPostingsDocsWriter.java | 47 out = parent.parent.dir.createOutput(IndexFileNames.segmentFileName(parent.parent.segment, IndexFileNames.FREQ_EXTENSION));
|
H A D | FieldsWriter.java | 83 fieldsStream = directory.createOutput(IndexFileNames.segmentFileName(segment, IndexFileNames.FIELDS_EXTENSION)); 84 indexStream = directory.createOutput(IndexFileNames.segmentFileName(segment, IndexFileNames.FIELDS_INDEX_EXTENSION));
|
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/util/ |
H A D | TestByteBlockPool.java | 45 IndexOutput stream = dir.createOutput("foo.txt");
|
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/index/ |
H A D | TestFieldInfos.java | 49 IndexOutput output = dir.createOutput(name);
|
H A D | TestDoc.java | 68 files.add(createOutput("test.txt", 72 files.add(createOutput("test2.txt", 77 private File createOutput(String name, String text) throws IOException { method in class:TestDoc
|
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/store/ |
H A D | MockDirectoryWrapper.java | 134 * file is opened by createOutput, ever. */ 227 IndexOutput out = delegate.createOutput(name); 247 final IndexOutput tempOut = delegate.createOutput(tempFileName); 256 final IndexOutput out = delegate.createOutput(name); 269 IndexOutput out = delegate.createOutput(name); 409 public synchronized IndexOutput createOutput(String name) throws IOException { method in class:MockDirectoryWrapper 415 throw new IOException("cannot createOutput after crash"); 425 throw new IOException("cannot createOutput after crash"); 447 IndexOutput io = new MockIndexOutputWrapper(this, delegate.createOutput(name), name);
|