Свойство | Тип | Описание | |
---|---|---|---|
DEFAULT_LINE_DOCS_FILE | string | ||
INFOSTREAM | bool | ||
JENKINS_LARGE_LINE_DOCS_FILE | string | ||
LEAVE_TEMPORARY | bool | ||
RANDOM_MULTIPLIER | int | ||
SuiteFailureMarker | bool | ||
TEMP_DIR | |||
TEST_AWAITSFIX | bool | ||
TEST_CODEC | string | ||
TEST_DIRECTORY | string | ||
TEST_DOCVALUESFORMAT | string | ||
TEST_LINE_DOCS_FILE | string | ||
TEST_NIGHTLY | bool | ||
TEST_POSTINGSFORMAT | string | ||
TEST_SLOW | bool | ||
TEST_THROTTLING | MockDirectoryWrapper.Throttling_e | ||
TEST_VERSION_CURRENT | LuceneVersion | ||
TEST_WEEKLY | bool | ||
VERBOSE | bool |
Свойство | Тип | Описание | |
---|---|---|---|
DoesntSupportOffsets | HashSet |
Свойство | Тип | Описание | |
---|---|---|---|
AssertTermsSeekingEquals | void | ||
CleanupTemporaryFiles | void | ||
ConfigureRandom | void | ||
GetDVFields | ISet |
||
GetFullMethodName | string | ||
NewDirectoryImpl | Directory | ||
NewFSDirectory | BaseDirectoryWrapper | ||
NewFSDirectoryImpl | Directory | ||
RegisterToRemoveAfterSuite | void | ||
SetUp | void | ||
TearDown | void | ||
WrapDirectory | BaseDirectoryWrapper |
Метод | Описание | |
---|---|---|
AsSet ( ) : ISet |
Return
|
|
AssertDeletedDocsEquals ( string info, |
||
AssertDocValuesEquals ( string info, |
checks that docvalues across all fields are equivalent
|
|
AssertDocValuesEquals ( string info, int num, Lucene.Net.Index.NumericDocValues leftDocValues, Lucene.Net.Index.NumericDocValues rightDocValues ) : void | ||
AssertDocsAndPositionsEnumEquals ( string info, Lucene.Net.Index.DocsAndPositionsEnum leftDocs, Lucene.Net.Index.DocsAndPositionsEnum rightDocs ) : void |
checks docs + freqs + positions + payloads, sequentially
|
|
AssertDocsEnumEquals ( string info, Lucene.Net.Index.DocsEnum leftDocs, Lucene.Net.Index.DocsEnum rightDocs, bool hasFreqs ) : void |
checks docs + freqs, sequentially
|
|
AssertDocsSkippingEquals ( string info, |
checks advancing docs
|
|
AssertFieldInfosEquals ( string info, |
||
AssertFieldStatisticsEquals ( string info, Fields leftFields, Fields rightFields ) : void |
checks that top-level statistics on Fields are the same
|
|
AssertFieldsEquals ( string info, |
Fields api equivalency
|
|
AssertNormsEquals ( string info, |
checks that norms are the same across all fields
|
|
AssertPositionsSkippingEquals ( string info, |
checks advancing docs + positions
|
|
AssertReaderEquals ( string info, |
||
AssertReaderStatisticsEquals ( string info, |
checks that reader-level statistics are the same
|
|
AssertStoredFieldEquals ( string info, IndexableField leftField, IndexableField rightField ) : void |
checks that two stored fields are equivalent
|
|
AssertStoredFieldsEquals ( string info, |
checks that stored fields of all documents are the same
|
|
AssertTermStatsEquals ( string info, Lucene.Net.Index.TermsEnum leftTermsEnum, Lucene.Net.Index.TermsEnum rightTermsEnum ) : void |
checks term-level statistics
|
|
AssertTermVectorsEquals ( string info, |
checks that term vectors across all fields are equivalent
|
|
AssertTermsEnumEquals ( string info, |
checks the terms enum sequentially if deep is false, it does a 'shallow' test that doesnt go down to the docsenums
|
|
AssertTermsEquals ( string info, |
Terms api equivalency
|
|
AssertTermsStatisticsEquals ( string info, Lucene.Net.Index.Terms leftTerms, Lucene.Net.Index.Terms rightTerms ) : void |
checks collection-level statistics on Terms
|
|
AssumeFalse ( string msg, bool condition ) : void | ||
AssumeNoException ( string msg, |
||
AssumeTrue ( string msg, bool condition ) : void | ||
AtLeast ( |
Returns a number of at least The actual number returned will be influenced by whether #TEST_NIGHTLY is active and #RANDOM_MULTIPLIER, but also with some random fudge.
|
|
AtLeast ( int i ) : int | ||
CreateTempDir ( ) : |
Creates an empty, temporary folder (when the name of the folder is of no importance).
|
|
CreateTempDir ( string prefix ) : |
Creates an empty, temporary folder with the given name prefix under the test class's #getBaseTempDirForTestClass(). The folder will be automatically removed after the test class completes successfully. The test should close any file handles that would prevent the folder from being removed.
|
|
CreateTempFile ( ) : |
Creates an empty temporary file.
|
|
CreateTempFile ( string prefix, string suffix ) : |
Creates an empty file with the given prefix and suffix under the test class's #getBaseTempDirForTestClass(). The file will be automatically removed after the test class completes successfully. The test should close any file handles that would prevent the folder from being removed.
|
|
DefaultCodecSupportsDocValues ( ) : bool |
Return a random Locale from the available locales on the system. Return a random TimeZone from the available timezones on the system return a Locale object equivalent to its programmatic name
|
|
DefaultCodecSupportsDocsWithField ( ) : bool |
Returns true if the codec "supports" docsWithField (other codecs return MatchAllBits, because you couldnt write missing values before)
|
|
DefaultCodecSupportsFieldUpdates ( ) : bool |
Returns true if the codec "supports" field updates.
|
|
DefaultCodecSupportsMissingDocValues ( ) : bool |
Returns true if the default codec supports single valued docvalues with missing values
|
|
DefaultCodecSupportsSortedSet ( ) : bool |
Returns true if the default codec supports SORTED_SET docvalues
|
|
DumpArray ( string label, Object objs, |
Convenience method for logging an array. Wraps the array in an iterator and delegates
|
|
DumpIterator ( string label, System iter, |
Convenience method for logging an iterator.
|
|
GetOnlySegmentReader ( |
Some tests expect the directory to contain a single segment, and want to do tests on that segment's reader. this is an utility method to help them.
|
|
LuceneTestCase ( ) : System.Collections.Concurrent | ||
MaybeWrapReader ( |
Sometimes wrap the IndexReader as slow, parallel or filter reader (or combinations of that)
|
|
NewAlcoholicMergePolicy ( ) : Lucene.Net.Index.AlcoholicMergePolicy | ||
NewAlcoholicMergePolicy ( Random r, TimeZone tz ) : AlcoholicMergePolicy | ||
NewDirectory ( ) : BaseDirectoryWrapper |
Returns a new Directory instance. Use this when the test does not care about the specific Directory implementation (most tests). The Directory is wrapped with BaseDirectoryWrapper. this means usually it will be picky, such as ensuring that you properly close it and all open files in your test. It will emulate some features of Windows, such as not allowing open files to be overwritten.
|
|
NewDirectory ( Directory d ) : BaseDirectoryWrapper |
Returns a new Directory instance, with contents copied from the provided directory. See #newDirectory() for more information.
|
|
NewDirectory ( Random r ) : BaseDirectoryWrapper |
Returns a new Directory instance, using the specified random. See #newDirectory() for more information.
|
|
NewDirectory ( Random r, Directory d ) : BaseDirectoryWrapper |
Returns a new Directory instance, using the specified random with contents copied from the provided directory. See #newDirectory() for more information.
|
|
NewFSDirectory ( DirectoryInfo d ) : BaseDirectoryWrapper |
Returns a new FSDirectory instance over the given file, which must be a folder.
|
|
NewFSDirectory ( DirectoryInfo d, LockFactory lf ) : BaseDirectoryWrapper |
Returns a new FSDirectory instance over the given file, which must be a folder.
|
|
NewField ( Random random, string name, string value, FieldType type ) : Field |
LUCENENET specific Is non-static because OLD_FORMAT_IMPERSONATION_IS_ACTIVE is now non-static.
|
|
NewField ( string name, string value, FieldType type ) : Field |
LUCENENET specific Is non-static because OLD_FORMAT_IMPERSONATION_IS_ACTIVE is now non-static.
|
|
NewIOContext ( Random random ) : IOContext |
TODO: javadoc
|
|
NewIOContext ( Random random, IOContext oldContext ) : IOContext |
TODO: javadoc
|
|
NewIndexWriterConfig ( LuceneVersion v, Analyzer a ) : IndexWriterConfig |
create a new index writer config with random defaults LUCENENET specific Non-static so that we do not depend on any hidden static dependencies
|
|
NewIndexWriterConfig ( Random r, LuceneVersion v, Analyzer a ) : IndexWriterConfig |
LUCENENET specific Non-static so that we do not depend on any hidden static dependencies
|
|
NewIndexWriterConfig ( Random r, LuceneVersion v, Analyzer a, Similarity similarity, TimeZone timezone ) : IndexWriterConfig |
create a new index writer config with random defaults using the specified random LUCENENET specific This is the only static ctor for IndexWriterConfig because it removes the dependency on ClassEnvRule by using parameters Similarity and TimeZone.
|
|
NewLogMergePolicy ( ) : LogMergePolicy | ||
NewLogMergePolicy ( Random r ) : LogMergePolicy | ||
NewLogMergePolicy ( bool useCFS ) : MergePolicy | ||
NewLogMergePolicy ( bool useCFS, int mergeFactor ) : MergePolicy | ||
NewLogMergePolicy ( int mergeFactor ) : MergePolicy | ||
NewMergePolicy ( Random r, TimeZone timezone ) : MergePolicy | ||
NewMergePolicy ( TimeZone timezone ) : MergePolicy | ||
NewMockDirectory ( ) : MockDirectoryWrapper | ||
NewMockDirectory ( Random r ) : MockDirectoryWrapper | ||
NewMockFSDirectory ( DirectoryInfo d ) : MockDirectoryWrapper | ||
NewSearcher ( IndexReader r ) : IndexSearcher |
Create a new searcher over the reader. this searcher might randomly use threads. LUCENENET specific Is non-static because ClassEnvRule is now non-static.
|
|
NewSearcher ( IndexReader r, Similarity similarity ) : IndexSearcher | ||
NewSearcher ( IndexReader r, bool maybeWrap ) : IndexSearcher |
Create a new searcher over the reader. This searcher might randomly use threads.
|
|
NewSearcher ( IndexReader r, bool maybeWrap, Similarity similarity ) : IndexSearcher |
Create a new searcher over the reader. this searcher might randomly use threads.
|
|
NewSearcher ( IndexReader r, bool maybeWrap, bool wrapWithAssertions ) : IndexSearcher | ||
NewSearcher ( IndexReader r, bool maybeWrap, bool wrapWithAssertions, Similarity similarity ) : IndexSearcher |
Create a new searcher over the reader. this searcher might randomly use threads. if
|
|
NewStringField ( Random random, string name, string value, Field stored ) : Field |
LUCENENET specific Is non-static because OLD_FORMAT_IMPERSONATION_IS_ACTIVE is now non-static.
|
|
NewStringField ( string name, string value, Field stored ) : Field |
LUCENENET specific Is non-static because OLD_FORMAT_IMPERSONATION_IS_ACTIVE is now non-static.
|
|
NewTextField ( Random random, string name, string value, Field stored ) : Field |
LUCENENET specific Is non-static because OLD_FORMAT_IMPERSONATION_IS_ACTIVE is also non-static to reduce hidden dependencies on this variable.
|
|
NewTextField ( string name, string value, Field stored ) : Field |
LUCENENET specific Is non-static because OLD_FORMAT_IMPERSONATION_IS_ACTIVE is now non-static.
|
|
NewTieredMergePolicy ( ) : TieredMergePolicy | ||
NewTieredMergePolicy ( Random r ) : TieredMergePolicy | ||
Random ( ) : Random |
Access to the current RandomizedContext's Random instance. It is safe to use this method from multiple threads, etc., but it should be called while within a runner's scope (so no static initializers). The returned Random instance will be different when this method is called inside a BeforeClass hook (static suite scope) and within Before/ After hooks or test methods. The returned instance must not be shared with other threads or cross a single scope's boundary. For example, a Random acquired within a test method shouldn't be reused for another test case. There is an overhead connected with getting the Random for a particular context and thread. It is better to cache the Random locally if tight loops with multiple invocations are present or create a derivative local Random for millions of calls like this: Random random = new Random(random().nextLong()); // tight loop with many invocations.
|
|
Rarely ( ) : bool | ||
Rarely ( Random random ) : bool |
Returns true if something should happen rarely, The actual number returned will be influenced by whether #TEST_NIGHTLY is active and #RANDOM_MULTIPLIER.
|
|
SlowFileExists ( Directory dir, string fileName ) : bool |
Returns true if the file exists (can be opened), false if it cannot be opened, and (unlike Java's File.exists) if there's some unexpected error.
|
|
TestThread ( ) : bool |
Returns true if and only if the calling thread is the primary thread executing the test case.
|
|
Usually ( ) : bool | ||
Usually ( Random random ) : bool |
Метод | Описание | |
---|---|---|
AssertSaneFieldCaches ( string msg ) : void |
Asserts that FieldCacheSanityChecker does not detect any problems with FieldCache.DEFAULT. If any problems are found, they are logged to System.err (allong with the msg) when the Assertion is thrown. this method is called by tearDown after every test method, however IndexReaders scoped inside test methods may be garbage collected prior to this method being called, causing errors to be overlooked. Tests are encouraged to keep their IndexReaders scoped at the class level, or to explicitly call this method directly in the same scope as the IndexReader.
|
|
GetDataFile ( string name ) : Stream |
Gets a resource from the classpath as File. this method should only be used, if a real file is needed. To get a stream, code should prefer Class#getResourceAsStream using {@code this.getClass()}.
|
|
randon ( ) : Random |
Метод | Описание | |
---|---|---|
AssertTermsSeekingEquals ( string info, Lucene.Net.Index.Terms leftTerms, Lucene.Net.Index.Terms rightTerms ) : void | ||
CleanupTemporaryFiles ( ) : void | ||
ConfigureRandom ( |
||
GetDVFields ( |
||
GetFullMethodName ( ) : string | ||
NewDirectoryImpl ( Random random, string clazzName ) : Directory | ||
NewFSDirectory ( DirectoryInfo d, LockFactory lf, bool bare ) : BaseDirectoryWrapper | ||
NewFSDirectoryImpl ( Type clazz, DirectoryInfo file ) : Directory | ||
RegisterToRemoveAfterSuite ( FileSystemInfo f ) : void |
Register temporary folder for removal after the suite completes.
|
|
SetUp ( ) : void | ||
TearDown ( ) : void | ||
WrapDirectory ( Random random, Directory directory, bool bare ) : BaseDirectoryWrapper |
public AssertDeletedDocsEquals ( string info, |
||
info | string | |
leftReader | ||
rightReader | ||
Результат | void |
public AssertDocValuesEquals ( string info, |
||
info | string | |
leftReader | ||
rightReader | ||
Результат | void |
public AssertDocValuesEquals ( string info, int num, Lucene.Net.Index.NumericDocValues leftDocValues, Lucene.Net.Index.NumericDocValues rightDocValues ) : void | ||
info | string | |
num | int | |
leftDocValues | Lucene.Net.Index.NumericDocValues | |
rightDocValues | Lucene.Net.Index.NumericDocValues | |
Результат | void |
public AssertDocsAndPositionsEnumEquals ( string info, Lucene.Net.Index.DocsAndPositionsEnum leftDocs, Lucene.Net.Index.DocsAndPositionsEnum rightDocs ) : void | ||
info | string | |
leftDocs | Lucene.Net.Index.DocsAndPositionsEnum | |
rightDocs | Lucene.Net.Index.DocsAndPositionsEnum | |
Результат | void |
public AssertDocsEnumEquals ( string info, Lucene.Net.Index.DocsEnum leftDocs, Lucene.Net.Index.DocsEnum rightDocs, bool hasFreqs ) : void | ||
info | string | |
leftDocs | Lucene.Net.Index.DocsEnum | |
rightDocs | Lucene.Net.Index.DocsEnum | |
hasFreqs | bool | |
Результат | void |
public AssertDocsSkippingEquals ( string info, |
||
info | string | |
leftReader | ||
docFreq | int | |
leftDocs | Lucene.Net.Index.DocsEnum | |
rightDocs | Lucene.Net.Index.DocsEnum | |
hasFreqs | bool | |
Результат | void |
public AssertFieldInfosEquals ( string info, |
||
info | string | |
leftReader | ||
rightReader | ||
Результат | void |
public AssertFieldStatisticsEquals ( string info, Fields leftFields, Fields rightFields ) : void | ||
info | string | |
leftFields | Fields | |
rightFields | Fields | |
Результат | void |
public AssertFieldsEquals ( string info, |
||
info | string | |
leftReader | ||
leftFields | Fields | |
rightFields | Fields | |
deep | bool | |
Результат | void |
public AssertNormsEquals ( string info, |
||
info | string | |
leftReader | ||
rightReader | ||
Результат | void |
public AssertPositionsSkippingEquals ( string info, |
||
info | string | |
leftReader | ||
docFreq | int | |
leftDocs | Lucene.Net.Index.DocsAndPositionsEnum | |
rightDocs | Lucene.Net.Index.DocsAndPositionsEnum | |
Результат | void |
public AssertReaderEquals ( string info, |
||
info | string | |
leftReader | ||
rightReader | ||
Результат | void |
public AssertReaderStatisticsEquals ( string info, |
||
info | string | |
leftReader | ||
rightReader | ||
Результат | void |
protected static AssertSaneFieldCaches ( string msg ) : void | ||
msg | string | |
Результат | void |
public AssertStoredFieldEquals ( string info, IndexableField leftField, IndexableField rightField ) : void | ||
info | string | |
leftField | IndexableField | |
rightField | IndexableField | |
Результат | void |
public AssertStoredFieldsEquals ( string info, |
||
info | string | |
leftReader | ||
rightReader | ||
Результат | void |
public AssertTermStatsEquals ( string info, Lucene.Net.Index.TermsEnum leftTermsEnum, Lucene.Net.Index.TermsEnum rightTermsEnum ) : void | ||
info | string | |
leftTermsEnum | Lucene.Net.Index.TermsEnum | |
rightTermsEnum | Lucene.Net.Index.TermsEnum | |
Результат | void |
public AssertTermVectorsEquals ( string info, |
||
info | string | |
leftReader | ||
rightReader | ||
Результат | void |
public AssertTermsEnumEquals ( string info, |
||
info | string | |
leftReader | ||
leftTermsEnum | Lucene.Net.Index.TermsEnum | |
rightTermsEnum | Lucene.Net.Index.TermsEnum | |
deep | bool | |
Результат | void |
public AssertTermsEquals ( string info, |
||
info | string | |
leftReader | ||
leftTerms | Lucene.Net.Index.Terms | |
rightTerms | Lucene.Net.Index.Terms | |
deep | bool | |
Результат | void |
public AssertTermsStatisticsEquals ( string info, Lucene.Net.Index.Terms leftTerms, Lucene.Net.Index.Terms rightTerms ) : void | ||
info | string | |
leftTerms | Lucene.Net.Index.Terms | |
rightTerms | Lucene.Net.Index.Terms | |
Результат | void |
public static AssumeFalse ( string msg, bool condition ) : void | ||
msg | string | |
condition | bool | |
Результат | void |
public static AssumeNoException ( string msg, |
||
msg | string | |
e | ||
Результат | void |
public static AssumeTrue ( string msg, bool condition ) : void | ||
msg | string | |
condition | bool | |
Результат | void |
public static AtLeast ( |
||
random | ||
i | int | |
Результат | int |
public static CreateTempDir ( ) : |
||
Результат |
public static CreateTempDir ( string prefix ) : |
||
prefix | string | |
Результат |
public static CreateTempFile ( ) : |
||
Результат |
public static CreateTempFile ( string prefix, string suffix ) : |
||
prefix | string | |
suffix | string | |
Результат |
public static DefaultCodecSupportsDocValues ( ) : bool | ||
Результат | bool |
public static DefaultCodecSupportsDocsWithField ( ) : bool | ||
Результат | bool |
public static DefaultCodecSupportsFieldUpdates ( ) : bool | ||
Результат | bool |
public static DefaultCodecSupportsMissingDocValues ( ) : bool | ||
Результат | bool |
public static DefaultCodecSupportsSortedSet ( ) : bool | ||
Результат | bool |
public static DumpArray ( string label, Object objs, |
||
label | string | |
objs | Object | |
stream | ||
Результат | void |
public static DumpIterator ( string label, System iter, |
||
label | string | String logged before/after the items in the iterator |
iter | System | Each next() is toString()ed and logged on it's own line. If iter is null this is logged differnetly then an empty iterator. |
stream | Stream to log messages to. | |
Результат | void |
protected GetDataFile ( string name ) : Stream | ||
name | string | |
Результат | Stream |
public static GetOnlySegmentReader ( |
||
reader | ||
Результат | Lucene.Net.Index.SegmentReader |
public LuceneTestCase ( ) : System.Collections.Concurrent | ||
Результат | System.Collections.Concurrent |
public static MaybeWrapReader ( |
||
r | ||
Результат |
public NewAlcoholicMergePolicy ( ) : Lucene.Net.Index.AlcoholicMergePolicy | ||
Результат | Lucene.Net.Index.AlcoholicMergePolicy |
public static NewAlcoholicMergePolicy ( Random r, TimeZone tz ) : AlcoholicMergePolicy | ||
r | Random | |
tz | TimeZone | |
Результат | AlcoholicMergePolicy |
public static NewDirectory ( ) : BaseDirectoryWrapper | ||
Результат | BaseDirectoryWrapper |
public static NewDirectory ( Directory d ) : BaseDirectoryWrapper | ||
d | Directory | |
Результат | BaseDirectoryWrapper |
public static NewDirectory ( Random r ) : BaseDirectoryWrapper | ||
r | Random | |
Результат | BaseDirectoryWrapper |
public static NewDirectory ( Random r, Directory d ) : BaseDirectoryWrapper | ||
r | Random | |
d | Directory | |
Результат | BaseDirectoryWrapper |
public static NewFSDirectory ( DirectoryInfo d ) : BaseDirectoryWrapper | ||
d | DirectoryInfo | |
Результат | BaseDirectoryWrapper |
public static NewFSDirectory ( DirectoryInfo d, LockFactory lf ) : BaseDirectoryWrapper | ||
d | DirectoryInfo | |
lf | LockFactory | |
Результат | BaseDirectoryWrapper |
public NewField ( Random random, string name, string value, FieldType type ) : Field | ||
random | Random | |
name | string | |
value | string | |
type | FieldType | |
Результат | Field |
public NewField ( string name, string value, FieldType type ) : Field | ||
name | string | |
value | string | |
type | FieldType | |
Результат | Field |
public static NewIOContext ( Random random ) : IOContext | ||
random | Random | |
Результат | IOContext |
public static NewIOContext ( Random random, IOContext oldContext ) : IOContext | ||
random | Random | |
oldContext | IOContext | |
Результат | IOContext |
public NewIndexWriterConfig ( LuceneVersion v, Analyzer a ) : IndexWriterConfig | ||
v | LuceneVersion | |
a | Analyzer | |
Результат | IndexWriterConfig |
public NewIndexWriterConfig ( Random r, LuceneVersion v, Analyzer a ) : IndexWriterConfig | ||
r | Random | |
v | LuceneVersion | |
a | Analyzer | |
Результат | IndexWriterConfig |
public static NewIndexWriterConfig ( Random r, LuceneVersion v, Analyzer a, Similarity similarity, TimeZone timezone ) : IndexWriterConfig | ||
r | Random | |
v | LuceneVersion | |
a | Analyzer | |
similarity | Similarity | |
timezone | TimeZone | |
Результат | IndexWriterConfig |
public static NewLogMergePolicy ( ) : LogMergePolicy | ||
Результат | LogMergePolicy |
public static NewLogMergePolicy ( Random r ) : LogMergePolicy | ||
r | Random | |
Результат | LogMergePolicy |
public static NewLogMergePolicy ( bool useCFS ) : MergePolicy | ||
useCFS | bool | |
Результат | MergePolicy |
public static NewLogMergePolicy ( bool useCFS, int mergeFactor ) : MergePolicy | ||
useCFS | bool | |
mergeFactor | int | |
Результат | MergePolicy |
public static NewLogMergePolicy ( int mergeFactor ) : MergePolicy | ||
mergeFactor | int | |
Результат | MergePolicy |
public static NewMergePolicy ( Random r, TimeZone timezone ) : MergePolicy | ||
r | Random | |
timezone | TimeZone |
/// LUCENENET specific
/// Timezone added to remove dependency on the then-static |
Результат | MergePolicy |
public static NewMergePolicy ( TimeZone timezone ) : MergePolicy | ||
timezone | TimeZone |
/// LUCENENET specific
/// Timezone added to remove dependency on the then-static |
Результат | MergePolicy |
public static NewMockDirectory ( ) : MockDirectoryWrapper | ||
Результат | MockDirectoryWrapper |
public static NewMockDirectory ( Random r ) : MockDirectoryWrapper | ||
r | Random | |
Результат | MockDirectoryWrapper |
public static NewMockFSDirectory ( DirectoryInfo d ) : MockDirectoryWrapper | ||
d | DirectoryInfo | |
Результат | MockDirectoryWrapper |
public NewSearcher ( IndexReader r ) : IndexSearcher | ||
r | IndexReader | |
Результат | IndexSearcher |
public static NewSearcher ( IndexReader r, Similarity similarity ) : IndexSearcher | ||
r | IndexReader | |
similarity | Similarity |
/// LUCENENET specific
/// Removes dependency on |
Результат | IndexSearcher |
public NewSearcher ( IndexReader r, bool maybeWrap ) : IndexSearcher | ||
r | IndexReader | |
maybeWrap | bool | |
Результат | IndexSearcher |
public static NewSearcher ( IndexReader r, bool maybeWrap, Similarity similarity ) : IndexSearcher | ||
r | IndexReader | |
maybeWrap | bool | |
similarity | Similarity |
/// LUCENENET specific
/// Removes dependency on |
Результат | IndexSearcher |
public NewSearcher ( IndexReader r, bool maybeWrap, bool wrapWithAssertions ) : IndexSearcher | ||
r | IndexReader | |
maybeWrap | bool | |
wrapWithAssertions | bool | |
Результат | IndexSearcher |
public static NewSearcher ( IndexReader r, bool maybeWrap, bool wrapWithAssertions, Similarity similarity ) : IndexSearcher | ||
r | IndexReader | |
maybeWrap | bool | |
wrapWithAssertions | bool | |
similarity | Similarity |
/// LUCENENET specific
/// Removes dependency on |
Результат | IndexSearcher |
public NewStringField ( Random random, string name, string value, Field stored ) : Field | ||
random | Random | |
name | string | |
value | string | |
stored | Field | |
Результат | Field |
public NewStringField ( string name, string value, Field stored ) : Field | ||
name | string | |
value | string | |
stored | Field | |
Результат | Field |
public NewTextField ( Random random, string name, string value, Field stored ) : Field | ||
random | Random | |
name | string | |
value | string | |
stored | Field | |
Результат | Field |
public NewTextField ( string name, string value, Field stored ) : Field | ||
name | string | |
value | string | |
stored | Field | |
Результат | Field |
public static NewTieredMergePolicy ( ) : TieredMergePolicy | ||
Результат | TieredMergePolicy |
public static NewTieredMergePolicy ( Random r ) : TieredMergePolicy | ||
r | Random | |
Результат | TieredMergePolicy |
public static Rarely ( Random random ) : bool | ||
random | Random | |
Результат | bool |
public static SlowFileExists ( Directory dir, string fileName ) : bool | ||
dir | Directory | |
fileName | string | |
Результат | bool |
public static Usually ( Random random ) : bool | ||
random | Random | |
Результат | bool |
public static string DEFAULT_LINE_DOCS_FILE | ||
Результат | string |
protected static HashSet |
||
Результат | HashSet |
public static string JENKINS_LARGE_LINE_DOCS_FILE | ||
Результат | string |
public static bool SuiteFailureMarker | ||
Результат | bool |
public static FileInfo,System.IO TEMP_DIR | ||
Результат |
public static string TEST_DOCVALUESFORMAT | ||
Результат | string |
public static string TEST_LINE_DOCS_FILE | ||
Результат | string |
public static string TEST_POSTINGSFORMAT | ||
Результат | string |
public static MockDirectoryWrapper.Throttling_e TEST_THROTTLING | ||
Результат | MockDirectoryWrapper.Throttling_e |
public static LuceneVersion TEST_VERSION_CURRENT | ||
Результат | LuceneVersion |