├── .gitignore ├── .travis.yml ├── CHANGES ├── CONTRIBUTING ├── INSTALL ├── LICENSE ├── NOTICE ├── README ├── STATUS ├── appveyor.yml ├── c ├── .gitignore ├── INSTALL.md ├── cfc_header ├── configure ├── configure.bat ├── sample │ ├── getting_started.c │ ├── indexer.c │ ├── indexer_simple.c │ ├── search.c │ └── search_simple.c ├── src │ └── Lucy │ │ ├── Analysis │ │ └── RegexTokenizer.c │ │ ├── Document │ │ └── Doc.c │ │ └── Index │ │ ├── DocReader.c │ │ └── Inverter.c └── t │ └── test_lucy.c ├── common ├── charmonizer.c ├── charmonizer.main └── sample │ └── us_constitution │ ├── amend1.txt │ ├── amend10.txt │ ├── amend11.txt │ ├── amend12.txt │ ├── amend13.txt │ ├── amend14.txt │ ├── amend15.txt │ ├── amend16.txt │ ├── amend17.txt │ ├── amend18.txt │ ├── amend19.txt │ ├── amend2.txt │ ├── amend20.txt │ ├── amend21.txt │ ├── amend22.txt │ ├── amend23.txt │ ├── amend24.txt │ ├── amend25.txt │ ├── amend26.txt │ ├── amend27.txt │ ├── amend3.txt │ ├── amend4.txt │ ├── amend5.txt │ ├── amend6.txt │ ├── amend7.txt │ ├── amend8.txt │ ├── amend9.txt │ ├── art1sec1.txt │ ├── art1sec10.txt │ ├── art1sec2.txt │ ├── art1sec3.txt │ ├── art1sec4.txt │ ├── art1sec5.txt │ ├── art1sec6.txt │ ├── art1sec7.txt │ ├── art1sec8.txt │ ├── art1sec9.txt │ ├── art2sec1.txt │ ├── art2sec2.txt │ ├── art2sec3.txt │ ├── art2sec4.txt │ ├── art3sec1.txt │ ├── art3sec2.txt │ ├── art3sec3.txt │ ├── art4sec1.txt │ ├── art4sec2.txt │ ├── art4sec3.txt │ ├── art4sec4.txt │ ├── art5.txt │ ├── art6.txt │ ├── art7.txt │ ├── index.html │ ├── preamble.txt │ └── uscon.css ├── core ├── Lucy.c ├── Lucy.cfp ├── Lucy │ ├── Analysis │ │ ├── Analyzer.c │ │ ├── Analyzer.cfh │ │ ├── CaseFolder.c │ │ ├── CaseFolder.cfh │ │ ├── EasyAnalyzer.c │ │ ├── EasyAnalyzer.cfh │ │ ├── Inversion.c │ │ ├── Inversion.cfh │ │ ├── Normalizer.c │ │ ├── Normalizer.cfh │ │ ├── PolyAnalyzer.c │ │ ├── PolyAnalyzer.cfh │ │ ├── RegexTokenizer.c │ │ ├── RegexTokenizer.cfh │ │ ├── SnowballStemmer.c │ │ ├── SnowballStemmer.cfh │ │ ├── SnowballStopFilter.c │ │ ├── SnowballStopFilter.cfh │ │ ├── StandardTokenizer.c │ │ ├── StandardTokenizer.cfh │ │ ├── Token.c │ │ └── Token.cfh │ ├── Docs │ │ ├── Cookbook.md │ │ ├── Cookbook │ │ │ ├── CustomQuery.md │ │ │ ├── CustomQueryParser.md │ │ │ └── FastUpdates.md │ │ ├── DevGuide.md │ │ ├── DocIDs.md │ │ ├── FileFormat.md │ │ ├── FileLocking.md │ │ ├── IRTheory.md │ │ ├── Tutorial.md │ │ └── Tutorial │ │ │ ├── AnalysisTutorial.md │ │ │ ├── BeyondSimpleTutorial.md │ │ │ ├── FieldTypeTutorial.md │ │ │ ├── HighlighterTutorial.md │ │ │ ├── QueryObjectsTutorial.md │ │ │ └── SimpleTutorial.md │ ├── Document │ │ ├── Doc.c │ │ ├── Doc.cfh │ │ ├── HitDoc.c │ │ └── HitDoc.cfh │ ├── Highlight │ │ ├── HeatMap.c │ │ ├── HeatMap.cfh │ │ ├── Highlighter.c │ │ └── Highlighter.cfh │ ├── Index │ │ ├── BackgroundMerger.c │ │ ├── BackgroundMerger.cfh │ │ ├── BitVecDelDocs.c │ │ ├── BitVecDelDocs.cfh │ │ ├── DataReader.c │ │ ├── DataReader.cfh │ │ ├── DataWriter.c │ │ ├── DataWriter.cfh │ │ ├── DeletionsReader.c │ │ ├── DeletionsReader.cfh │ │ ├── DeletionsWriter.c │ │ ├── DeletionsWriter.cfh │ │ ├── DocReader.c │ │ ├── DocReader.cfh │ │ ├── DocVector.c │ │ ├── DocVector.cfh │ │ ├── DocWriter.c │ │ ├── DocWriter.cfh │ │ ├── FilePurger.c │ │ ├── FilePurger.cfh │ │ ├── HighlightReader.c │ │ ├── HighlightReader.cfh │ │ ├── HighlightWriter.c │ │ ├── HighlightWriter.cfh │ │ ├── IndexManager.c │ │ ├── IndexManager.cfh │ │ ├── IndexReader.c │ │ ├── IndexReader.cfh │ │ ├── Indexer.c │ │ ├── Indexer.cfh │ │ ├── Inverter.c │ │ ├── Inverter.cfh │ │ ├── LexIndex.c │ │ ├── LexIndex.cfh │ │ ├── Lexicon.c │ │ ├── Lexicon.cfh │ │ ├── LexiconReader.c │ │ ├── LexiconReader.cfh │ │ ├── LexiconWriter.c │ │ ├── LexiconWriter.cfh │ │ ├── PolyLexicon.c │ │ ├── PolyLexicon.cfh │ │ ├── PolyReader.c │ │ ├── PolyReader.cfh │ │ ├── Posting.c │ │ ├── Posting.cfh │ │ ├── Posting │ │ │ ├── MatchPosting.c │ │ │ ├── MatchPosting.cfh │ │ │ ├── RawPosting.c │ │ │ ├── RawPosting.cfh │ │ │ ├── RichPosting.c │ │ │ ├── RichPosting.cfh │ │ │ ├── ScorePosting.c │ │ │ └── ScorePosting.cfh │ │ ├── PostingList.c │ │ ├── PostingList.cfh │ │ ├── PostingListReader.c │ │ ├── PostingListReader.cfh │ │ ├── PostingListWriter.c │ │ ├── PostingListWriter.cfh │ │ ├── PostingPool.c │ │ ├── PostingPool.cfh │ │ ├── RawLexicon.c │ │ ├── RawLexicon.cfh │ │ ├── RawPostingList.c │ │ ├── RawPostingList.cfh │ │ ├── SegLexicon.c │ │ ├── SegLexicon.cfh │ │ ├── SegPostingList.c │ │ ├── SegPostingList.cfh │ │ ├── SegReader.c │ │ ├── SegReader.cfh │ │ ├── SegWriter.c │ │ ├── SegWriter.cfh │ │ ├── Segment.c │ │ ├── Segment.cfh │ │ ├── Similarity.c │ │ ├── Similarity.cfh │ │ ├── SkipStepper.c │ │ ├── SkipStepper.cfh │ │ ├── Snapshot.c │ │ ├── Snapshot.cfh │ │ ├── SortCache.c │ │ ├── SortCache.cfh │ │ ├── SortCache │ │ │ ├── NumericSortCache.c │ │ │ ├── NumericSortCache.cfh │ │ │ ├── TextSortCache.c │ │ │ └── TextSortCache.cfh │ │ ├── SortFieldWriter.c │ │ ├── SortFieldWriter.cfh │ │ ├── SortReader.c │ │ ├── SortReader.cfh │ │ ├── SortWriter.c │ │ ├── SortWriter.cfh │ │ ├── TermInfo.c │ │ ├── TermInfo.cfh │ │ ├── TermStepper.c │ │ ├── TermStepper.cfh │ │ ├── TermVector.c │ │ └── TermVector.cfh │ ├── Object │ │ ├── BitVector.c │ │ ├── BitVector.cfh │ │ ├── I32Array.c │ │ └── I32Array.cfh │ ├── Plan │ │ ├── Architecture.c │ │ ├── Architecture.cfh │ │ ├── BlobType.c │ │ ├── BlobType.cfh │ │ ├── FieldType.c │ │ ├── FieldType.cfh │ │ ├── FullTextType.c │ │ ├── FullTextType.cfh │ │ ├── NumericType.c │ │ ├── NumericType.cfh │ │ ├── Schema.c │ │ ├── Schema.cfh │ │ ├── StringType.c │ │ ├── StringType.cfh │ │ ├── TextType.c │ │ └── TextType.cfh │ ├── Search │ │ ├── ANDMatcher.c │ │ ├── ANDMatcher.cfh │ │ ├── ANDQuery.c │ │ ├── ANDQuery.cfh │ │ ├── BitVecMatcher.c │ │ ├── BitVecMatcher.cfh │ │ ├── Collector.c │ │ ├── Collector.cfh │ │ ├── Collector │ │ │ ├── SortCollector.c │ │ │ └── SortCollector.cfh │ │ ├── Compiler.c │ │ ├── Compiler.cfh │ │ ├── HitQueue.c │ │ ├── HitQueue.cfh │ │ ├── Hits.c │ │ ├── Hits.cfh │ │ ├── IndexSearcher.c │ │ ├── IndexSearcher.cfh │ │ ├── LeafQuery.c │ │ ├── LeafQuery.cfh │ │ ├── MatchAllMatcher.c │ │ ├── MatchAllMatcher.cfh │ │ ├── MatchAllQuery.c │ │ ├── MatchAllQuery.cfh │ │ ├── MatchDoc.c │ │ ├── MatchDoc.cfh │ │ ├── Matcher.c │ │ ├── Matcher.cfh │ │ ├── NOTMatcher.c │ │ ├── NOTMatcher.cfh │ │ ├── NOTQuery.c │ │ ├── NOTQuery.cfh │ │ ├── NoMatchMatcher.c │ │ ├── NoMatchMatcher.cfh │ │ ├── NoMatchQuery.c │ │ ├── NoMatchQuery.cfh │ │ ├── ORMatcher.c │ │ ├── ORMatcher.cfh │ │ ├── ORQuery.c │ │ ├── ORQuery.cfh │ │ ├── PhraseMatcher.c │ │ ├── PhraseMatcher.cfh │ │ ├── PhraseQuery.c │ │ ├── PhraseQuery.cfh │ │ ├── PolyMatcher.c │ │ ├── PolyMatcher.cfh │ │ ├── PolyQuery.c │ │ ├── PolyQuery.cfh │ │ ├── PolySearcher.c │ │ ├── PolySearcher.cfh │ │ ├── Query.c │ │ ├── Query.cfh │ │ ├── QueryParser.c │ │ ├── QueryParser.cfh │ │ ├── QueryParser │ │ │ ├── ParserElem.c │ │ │ ├── ParserElem.cfh │ │ │ ├── QueryLexer.c │ │ │ └── QueryLexer.cfh │ │ ├── RangeMatcher.c │ │ ├── RangeMatcher.cfh │ │ ├── RangeQuery.c │ │ ├── RangeQuery.cfh │ │ ├── RequiredOptionalMatcher.c │ │ ├── RequiredOptionalMatcher.cfh │ │ ├── RequiredOptionalQuery.c │ │ ├── RequiredOptionalQuery.cfh │ │ ├── Searcher.c │ │ ├── Searcher.cfh │ │ ├── SeriesMatcher.c │ │ ├── SeriesMatcher.cfh │ │ ├── SortRule.c │ │ ├── SortRule.cfh │ │ ├── SortSpec.c │ │ ├── SortSpec.cfh │ │ ├── Span.c │ │ ├── Span.cfh │ │ ├── TermMatcher.c │ │ ├── TermMatcher.cfh │ │ ├── TermQuery.c │ │ ├── TermQuery.cfh │ │ ├── TopDocs.c │ │ └── TopDocs.cfh │ ├── Simple.c │ ├── Simple.cfh │ ├── Store │ │ ├── CompoundFileReader.c │ │ ├── CompoundFileReader.cfh │ │ ├── CompoundFileWriter.c │ │ ├── CompoundFileWriter.cfh │ │ ├── DirHandle.c │ │ ├── DirHandle.cfh │ │ ├── ErrorMessage.c │ │ ├── ErrorMessage.cfh │ │ ├── FSDirHandle.c │ │ ├── FSDirHandle.cfh │ │ ├── FSFileHandle.c │ │ ├── FSFileHandle.cfh │ │ ├── FSFolder.c │ │ ├── FSFolder.cfh │ │ ├── FileHandle.c │ │ ├── FileHandle.cfh │ │ ├── FileWindow.c │ │ ├── FileWindow.cfh │ │ ├── Folder.c │ │ ├── Folder.cfh │ │ ├── InStream.c │ │ ├── InStream.cfh │ │ ├── Lock.c │ │ ├── Lock.cfh │ │ ├── LockFileLock.c │ │ ├── LockFileLock.cfh │ │ ├── OutStream.c │ │ ├── OutStream.cfh │ │ ├── RAMDirHandle.c │ │ ├── RAMDirHandle.cfh │ │ ├── RAMFile.c │ │ ├── RAMFile.cfh │ │ ├── RAMFileHandle.c │ │ ├── RAMFileHandle.cfh │ │ ├── RAMFolder.c │ │ └── RAMFolder.cfh │ └── Util │ │ ├── BlobSortEx.c │ │ ├── BlobSortEx.cfh │ │ ├── Debug.c │ │ ├── Debug.cfh │ │ ├── Freezer.c │ │ ├── Freezer.cfh │ │ ├── IndexFileNames.c │ │ ├── IndexFileNames.cfh │ │ ├── Json.c │ │ ├── Json.cfh │ │ ├── Json │ │ ├── .gitignore │ │ └── JsonParser.y │ │ ├── MemoryPool.c │ │ ├── MemoryPool.cfh │ │ ├── NumberUtils.cfh │ │ ├── PriorityQueue.c │ │ ├── PriorityQueue.cfh │ │ ├── ProcessID.c │ │ ├── ProcessID.cfh │ │ ├── Sleep.c │ │ ├── Sleep.cfh │ │ ├── SortExternal.c │ │ ├── SortExternal.cfh │ │ ├── Stepper.c │ │ ├── Stepper.cfh │ │ ├── StringHelper.c │ │ ├── StringHelper.cfh │ │ └── ToolSet.h └── LucyX │ └── Search │ ├── FilterMatcher.c │ ├── FilterMatcher.cfh │ ├── MockMatcher.c │ ├── MockMatcher.cfh │ ├── ProximityMatcher.c │ ├── ProximityMatcher.cfh │ ├── ProximityQuery.c │ └── ProximityQuery.cfh ├── devel ├── benchmarks │ ├── README.txt │ ├── extract_reuters.plx │ └── indexers │ │ ├── BenchmarkingIndexer.pm │ │ ├── LuceneIndexer.java │ │ └── lucy_indexer.plx ├── bin │ ├── UnicodeTable.pm │ ├── appveyor-build.bat │ ├── format_changes_entry.pl │ ├── gen_word_break_data.pl │ ├── lucytidy.pl │ ├── regen_charmonizer.pl │ ├── release_commands.pl │ ├── setup_clownfish_env.sh │ ├── setup_env.sh │ ├── smoke.pl │ ├── test_all.sh │ ├── travis-test.sh │ ├── update_version │ └── valgrind_triggers.pl └── conf │ ├── astylerc │ ├── clownfish.vim │ ├── lucyperl.supp │ ├── perltidyrc │ └── rat-excludes ├── example-lang ├── README └── src │ └── Lucy │ ├── Analysis │ └── RegexTokenizer.c │ ├── Document │ └── Doc.c │ └── Index │ ├── DocReader.c │ └── Inverter.c ├── go ├── build.go ├── cfext │ └── lucy.c ├── lucy │ ├── analysis.go │ ├── analysis_test.go │ ├── document.go │ ├── document_test.go │ ├── highlight.go │ ├── highlight_test.go │ ├── index.go │ ├── index_test.go │ ├── lucy.go │ ├── lucy_test.go │ ├── object.go │ ├── object_test.go │ ├── plan.go │ ├── plan_test.go │ ├── registry.go │ ├── registry_test.go │ ├── search.go │ ├── search_test.go │ ├── simple.go │ ├── simple_test.go │ ├── store.go │ ├── store_test.go │ ├── test.go │ ├── test_test.go │ ├── util.go │ └── util_test.go └── sample │ └── getting_started.go ├── lemon ├── .gitignore ├── Makefile ├── Makefile.MSVC ├── Makefile.MinGW ├── README ├── lemon.c └── lempar.c ├── modules ├── analysis │ ├── snowstem │ │ ├── devel │ │ │ └── update_snowstem.pl │ │ └── source │ │ │ ├── README │ │ │ ├── include │ │ │ └── libstemmer.h │ │ │ ├── libstemmer │ │ │ ├── libstemmer_utf8.c │ │ │ └── modules_utf8.h │ │ │ ├── runtime │ │ │ ├── api.c │ │ │ ├── api.h │ │ │ ├── header.h │ │ │ └── utilities.c │ │ │ ├── src_c │ │ │ ├── stem_UTF_8_danish.c │ │ │ ├── stem_UTF_8_danish.h │ │ │ ├── stem_UTF_8_dutch.c │ │ │ ├── stem_UTF_8_dutch.h │ │ │ ├── stem_UTF_8_english.c │ │ │ ├── stem_UTF_8_english.h │ │ │ ├── stem_UTF_8_finnish.c │ │ │ ├── stem_UTF_8_finnish.h │ │ │ ├── stem_UTF_8_french.c │ │ │ ├── stem_UTF_8_french.h │ │ │ ├── stem_UTF_8_german.c │ │ │ ├── stem_UTF_8_german.h │ │ │ ├── stem_UTF_8_hungarian.c │ │ │ ├── stem_UTF_8_hungarian.h │ │ │ ├── stem_UTF_8_italian.c │ │ │ ├── stem_UTF_8_italian.h │ │ │ ├── stem_UTF_8_norwegian.c │ │ │ ├── stem_UTF_8_norwegian.h │ │ │ ├── stem_UTF_8_porter.c │ │ │ ├── stem_UTF_8_porter.h │ │ │ ├── stem_UTF_8_portuguese.c │ │ │ ├── stem_UTF_8_portuguese.h │ │ │ ├── stem_UTF_8_romanian.c │ │ │ ├── stem_UTF_8_romanian.h │ │ │ ├── stem_UTF_8_russian.c │ │ │ ├── stem_UTF_8_russian.h │ │ │ ├── stem_UTF_8_spanish.c │ │ │ ├── stem_UTF_8_spanish.h │ │ │ ├── stem_UTF_8_swedish.c │ │ │ ├── stem_UTF_8_swedish.h │ │ │ ├── stem_UTF_8_turkish.c │ │ │ └── stem_UTF_8_turkish.h │ │ │ └── test │ │ │ ├── README │ │ │ └── tests.json │ └── snowstop │ │ ├── devel │ │ └── update_snowstop.pl │ │ └── source │ │ └── snowball_stoplists.c └── unicode │ ├── ucd │ ├── WordBreak.tab │ └── WordBreakTest.json │ └── utf8proc │ ├── tests.json │ ├── utf8proc.c │ ├── utf8proc.h │ └── utf8proc_data.h ├── perl ├── .gitignore ├── Build.PL ├── INSTALL ├── INSTALL.SKIP ├── MANIFEST ├── MANIFEST.SKIP ├── buildlib │ ├── Lucy │ │ ├── Build.pm │ │ ├── Build │ │ │ └── Binding │ │ │ │ ├── Analysis.pm │ │ │ │ ├── Document.pm │ │ │ │ ├── Highlight.pm │ │ │ │ ├── Index.pm │ │ │ │ ├── Misc.pm │ │ │ │ ├── Object.pm │ │ │ │ ├── Plan.pm │ │ │ │ ├── Search.pm │ │ │ │ ├── Store.pm │ │ │ │ └── Util.pm │ │ └── Test │ │ │ └── TestUtils.pm │ └── LucyX │ │ └── Build │ │ └── Binding │ │ └── Search.pm ├── lib │ ├── Lucy.pm │ ├── Lucy.pod │ ├── Lucy │ │ ├── Analysis │ │ │ ├── Analyzer.pm │ │ │ ├── CaseFolder.pm │ │ │ ├── EasyAnalyzer.pm │ │ │ ├── Inversion.pm │ │ │ ├── Normalizer.pm │ │ │ ├── PolyAnalyzer.pm │ │ │ ├── RegexTokenizer.pm │ │ │ ├── SnowballStemmer.pm │ │ │ ├── SnowballStopFilter.pm │ │ │ ├── StandardTokenizer.pm │ │ │ └── Token.pm │ │ ├── Document │ │ │ ├── Doc.pm │ │ │ └── HitDoc.pm │ │ ├── Highlight │ │ │ ├── HeatMap.pm │ │ │ └── Highlighter.pm │ │ ├── Index │ │ │ ├── BackgroundMerger.pm │ │ │ ├── DataReader.pm │ │ │ ├── DataWriter.pm │ │ │ ├── DeletionsReader.pm │ │ │ ├── DeletionsWriter.pm │ │ │ ├── DocReader.pm │ │ │ ├── DocVector.pm │ │ │ ├── DocWriter.pm │ │ │ ├── FilePurger.pm │ │ │ ├── HighlightReader.pm │ │ │ ├── HighlightWriter.pm │ │ │ ├── IndexManager.pm │ │ │ ├── IndexReader.pm │ │ │ ├── Indexer.pm │ │ │ ├── Inverter.pm │ │ │ ├── Lexicon.pm │ │ │ ├── LexiconReader.pm │ │ │ ├── LexiconWriter.pm │ │ │ ├── PolyLexicon.pm │ │ │ ├── PolyReader.pm │ │ │ ├── Posting.pm │ │ │ ├── Posting │ │ │ │ ├── MatchPosting.pm │ │ │ │ ├── RichPosting.pm │ │ │ │ └── ScorePosting.pm │ │ │ ├── PostingList.pm │ │ │ ├── PostingListReader.pm │ │ │ ├── PostingListWriter.pm │ │ │ ├── SegLexicon.pm │ │ │ ├── SegPostingList.pm │ │ │ ├── SegReader.pm │ │ │ ├── SegWriter.pm │ │ │ ├── Segment.pm │ │ │ ├── Similarity.pm │ │ │ ├── Snapshot.pm │ │ │ ├── SortCache.pm │ │ │ ├── SortReader.pm │ │ │ ├── SortWriter.pm │ │ │ ├── TermInfo.pm │ │ │ └── TermVector.pm │ │ ├── Object │ │ │ ├── BitVector.pm │ │ │ ├── I32Array.pm │ │ │ └── Obj.pm │ │ ├── Plan │ │ │ ├── Architecture.pm │ │ │ ├── BlobType.pm │ │ │ ├── FieldType.pm │ │ │ ├── Float32Type.pm │ │ │ ├── Float64Type.pm │ │ │ ├── FullTextType.pm │ │ │ ├── Int32Type.pm │ │ │ ├── Int64Type.pm │ │ │ ├── Schema.pm │ │ │ └── StringType.pm │ │ ├── Search │ │ │ ├── ANDMatcher.pm │ │ │ ├── ANDQuery.pm │ │ │ ├── BitVecMatcher.pm │ │ │ ├── Collector.pm │ │ │ ├── Collector │ │ │ │ ├── BitCollector.pm │ │ │ │ └── SortCollector.pm │ │ │ ├── Compiler.pm │ │ │ ├── HitQueue.pm │ │ │ ├── Hits.pm │ │ │ ├── IndexSearcher.pm │ │ │ ├── LeafQuery.pm │ │ │ ├── MatchAllQuery.pm │ │ │ ├── MatchDoc.pm │ │ │ ├── Matcher.pm │ │ │ ├── NOTMatcher.pm │ │ │ ├── NOTQuery.pm │ │ │ ├── NoMatchQuery.pm │ │ │ ├── ORQuery.pm │ │ │ ├── ORScorer.pm │ │ │ ├── PhraseQuery.pm │ │ │ ├── PolyCompiler.pm │ │ │ ├── PolyQuery.pm │ │ │ ├── PolySearcher.pm │ │ │ ├── Query.pm │ │ │ ├── QueryParser.pm │ │ │ ├── RangeQuery.pm │ │ │ ├── RequiredOptionalMatcher.pm │ │ │ ├── RequiredOptionalQuery.pm │ │ │ ├── Searcher.pm │ │ │ ├── SortRule.pm │ │ │ ├── SortSpec.pm │ │ │ ├── Span.pm │ │ │ ├── TermQuery.pm │ │ │ └── TopDocs.pm │ │ ├── Simple.pm │ │ ├── Store │ │ │ ├── FSFileHandle.pm │ │ │ ├── FSFolder.pm │ │ │ ├── FileHandle.pm │ │ │ ├── Folder.pm │ │ │ ├── InStream.pm │ │ │ ├── LockErr.pm │ │ │ ├── OutStream.pm │ │ │ ├── RAMFile.pm │ │ │ ├── RAMFileHandle.pm │ │ │ └── RAMFolder.pm │ │ ├── Test.pm │ │ └── Util │ │ │ ├── Debug.pm │ │ │ ├── IndexFileNames.pm │ │ │ ├── Json.pm │ │ │ ├── MemoryPool.pm │ │ │ ├── PriorityQueue.pm │ │ │ ├── SortExternal.pm │ │ │ ├── Stepper.pm │ │ │ └── StringHelper.pm │ └── LucyX │ │ ├── Index │ │ ├── ByteBufDocReader.pm │ │ ├── ByteBufDocWriter.pm │ │ ├── LongFieldSim.pm │ │ ├── ZlibDocReader.pm │ │ └── ZlibDocWriter.pm │ │ ├── Remote │ │ ├── ClusterSearcher.pm │ │ ├── SearchClient.pm │ │ └── SearchServer.pm │ │ └── Search │ │ ├── Filter.pm │ │ ├── MockMatcher.pm │ │ └── ProximityQuery.pm ├── sample │ ├── FlatQueryParser.pm │ ├── PrefixQuery.pm │ ├── README.txt │ ├── indexer.pl │ └── search.cgi ├── t │ ├── 002-lucy.t │ ├── 015-sort_external.t │ ├── 023-stepper.t │ ├── 025-debug.t │ ├── 026-serialization.t │ ├── 050-ramfile.t │ ├── 051-fsfile.t │ ├── 102-strings_io.t │ ├── 105-folder.t │ ├── 109-read_locking.t │ ├── 111-index_manager.t │ ├── 152-inversion.t │ ├── 154-regex_tokenizer.t │ ├── 200-doc.t │ ├── 201-hit_doc.t │ ├── 204-doc_reader.t │ ├── 205-seg_reader.t │ ├── 207-seg_lexicon.t │ ├── 209-seg_lexicon_heavy.t │ ├── 210-deldocs.t │ ├── 211-seg_posting_list.t │ ├── 213-segment_merging.t │ ├── 215-term_vectors.t │ ├── 216-schema.t │ ├── 217-poly_lexicon.t │ ├── 218-del_merging.t │ ├── 219-byte_buf_doc.t │ ├── 220-zlib_doc.t │ ├── 224-lex_reader.t │ ├── 233-background_merger.t │ ├── 240-custom-analyzer.t │ ├── 304-verify_utf8.t │ ├── 305-indexer.t │ ├── 306-dynamic_schema.t │ ├── 308-simple.t │ ├── 400-match_posting.t │ ├── 501-termquery.t │ ├── 502-phrasequery.t │ ├── 504-similarity.t │ ├── 505-hit_queue.t │ ├── 506-collector.t │ ├── 507-filter.t │ ├── 508-hits.t │ ├── 509-poly_searcher.t │ ├── 510-remote_search.t │ ├── 513-matcher.t │ ├── 514-and_matcher.t │ ├── 515-range_query.t │ ├── 518-or_scorer.t │ ├── 519-req_opt_matcher.t │ ├── 520-match_doc.t │ ├── 523-and_query.t │ ├── 524-poly_query.t │ ├── 525-match_all_query.t │ ├── 526-not_query.t │ ├── 527-req_opt_query.t │ ├── 528-leaf_query.t │ ├── 529-no_match_query.t │ ├── 532-sort_collector.t │ ├── 550-cluster_searcher.t │ ├── 601-queryparser.t │ ├── 602-boosts.t │ ├── 603-query_boosts.t │ ├── 604-simple_search.t │ ├── 605-store_pos_boost.t │ ├── 607-queryparser_multi_field.t │ ├── 613-proximityquery.t │ ├── 701-uscon.t │ ├── binding │ │ ├── 101-simple_io.t │ │ ├── 150-polyanalyzer.t │ │ ├── 151-analyzer.t │ │ ├── 153-case_folder.t │ │ ├── 155-snowball_stop_filter.t │ │ ├── 156-snowball_stemmer.t │ │ ├── 157-normalizer.t │ │ ├── 158-standard_tokenizer.t │ │ ├── 159-easyanalyzer.t │ │ ├── 206-snapshot.t │ │ ├── 303-highlighter.t │ │ ├── 310-heat_map.t │ │ ├── 506-collector.t │ │ ├── 511-sort_spec.t │ │ ├── 702-sample.t │ │ ├── 800-stack.t │ │ └── 801-pod_checker.t │ └── core │ │ ├── 012-priority_queue.t │ │ ├── 013-bit_vector.t │ │ ├── 015-sort_external.t │ │ ├── 024-memory_pool.t │ │ ├── 030-number_utils.t │ │ ├── 032-string_helper.t │ │ ├── 033-index_file_names.t │ │ ├── 035-json.t │ │ ├── 036-i32_array.t │ │ ├── 037-freezer.t │ │ ├── 050-ram_file_handle.t │ │ ├── 051-fs_file_handle.t │ │ ├── 052-instream.t │ │ ├── 053-file_handle.t │ │ ├── 054-io_primitives.t │ │ ├── 055-io_chunks.t │ │ ├── 061-ram_dir_handle.t │ │ ├── 062-fs_dir_handle.t │ │ ├── 103-fs_folder.t │ │ ├── 104-ram_folder.t │ │ ├── 105-folder.t │ │ ├── 106-lf_lock.t │ │ ├── 111-index_manager.t │ │ ├── 112-cf_writer.t │ │ ├── 113-cf_reader.t │ │ ├── 150-analyzer.t │ │ ├── 150-polyanalyzer.t │ │ ├── 153-case_folder.t │ │ ├── 154-regex_tokenizer.t │ │ ├── 155-snowball_stop_filter.t │ │ ├── 156-snowball_stemmer.t │ │ ├── 157-normalizer.t │ │ ├── 158-standard_tokenizer.t │ │ ├── 206-snapshot.t │ │ ├── 208-terminfo.t │ │ ├── 214-field_misc.t │ │ ├── 216-schema.t │ │ ├── 220-doc_writer.t │ │ ├── 221-highlight_writer.t │ │ ├── 222-posting_list_writer.t │ │ ├── 223-seg_writer.t │ │ ├── 224-sort_writer.t │ │ ├── 225-polyreader.t │ │ ├── 230-full_text_type.t │ │ ├── 231-blob_type.t │ │ ├── 232-numeric_type.t │ │ ├── 233-background_merger.t │ │ ├── 234-field_type.t │ │ ├── 301-segment.t │ │ ├── 303-highlighter.t │ │ ├── 308-simple.t │ │ ├── 309-span.t │ │ ├── 310-heat_map.t │ │ ├── 501-termquery.t │ │ ├── 502-phrasequery.t │ │ ├── 509-poly_searcher.t │ │ ├── 511-sort_spec.t │ │ ├── 515-range_query.t │ │ ├── 523-and_query.t │ │ ├── 525-match_all_query.t │ │ ├── 526-not_query.t │ │ ├── 527-req_opt_query.t │ │ ├── 528-leaf_query.t │ │ ├── 529-no_match_query.t │ │ ├── 530-series_matcher.t │ │ ├── 531-or_query.t │ │ ├── 610-queryparser_logic.t │ │ └── 611-queryparser_syntax.t └── xs │ └── Lucy │ ├── Analysis │ └── RegexTokenizer.c │ ├── Document │ └── Doc.c │ └── Index │ ├── DocReader.c │ └── Inverter.c ├── ruby ├── .gitignore ├── Rakefile ├── apache_lucy.gemspec ├── lib │ └── apache_lucy.rb └── test │ └── test_apache_lucy.rb ├── tcl ├── Makefile └── src │ ├── tcllucy.c │ └── tcllucy.h └── test ├── Lucy ├── Test.c ├── Test.cfh └── Test │ ├── Analysis │ ├── TestAnalyzer.c │ ├── TestAnalyzer.cfh │ ├── TestCaseFolder.c │ ├── TestCaseFolder.cfh │ ├── TestNormalizer.c │ ├── TestNormalizer.cfh │ ├── TestPolyAnalyzer.c │ ├── TestPolyAnalyzer.cfh │ ├── TestRegexTokenizer.c │ ├── TestRegexTokenizer.cfh │ ├── TestSnowballStemmer.c │ ├── TestSnowballStemmer.cfh │ ├── TestSnowballStopFilter.c │ ├── TestSnowballStopFilter.cfh │ ├── TestStandardTokenizer.c │ └── TestStandardTokenizer.cfh │ ├── Highlight │ ├── TestHeatMap.c │ ├── TestHeatMap.cfh │ ├── TestHighlighter.c │ └── TestHighlighter.cfh │ ├── Index │ ├── NoMergeManager.c │ ├── NoMergeManager.cfh │ ├── TestBackgroundMerger.c │ ├── TestBackgroundMerger.cfh │ ├── TestDocWriter.c │ ├── TestDocWriter.cfh │ ├── TestHighlightWriter.c │ ├── TestHighlightWriter.cfh │ ├── TestIndexManager.c │ ├── TestIndexManager.cfh │ ├── TestPolyReader.c │ ├── TestPolyReader.cfh │ ├── TestPostingListWriter.c │ ├── TestPostingListWriter.cfh │ ├── TestSegWriter.c │ ├── TestSegWriter.cfh │ ├── TestSegment.c │ ├── TestSegment.cfh │ ├── TestSnapshot.c │ ├── TestSnapshot.cfh │ ├── TestSortWriter.c │ ├── TestSortWriter.cfh │ ├── TestTermInfo.c │ └── TestTermInfo.cfh │ ├── Object │ ├── TestBitVector.c │ ├── TestBitVector.cfh │ ├── TestI32Array.c │ └── TestI32Array.cfh │ ├── Plan │ ├── TestArchitecture.c │ ├── TestArchitecture.cfh │ ├── TestBlobType.c │ ├── TestBlobType.cfh │ ├── TestFieldMisc.c │ ├── TestFieldMisc.cfh │ ├── TestFieldType.c │ ├── TestFieldType.cfh │ ├── TestFullTextType.c │ ├── TestFullTextType.cfh │ ├── TestNumericType.c │ └── TestNumericType.cfh │ ├── Search │ ├── TestLeafQuery.c │ ├── TestLeafQuery.cfh │ ├── TestMatchAllQuery.c │ ├── TestMatchAllQuery.cfh │ ├── TestNOTQuery.c │ ├── TestNOTQuery.cfh │ ├── TestNoMatchQuery.c │ ├── TestNoMatchQuery.cfh │ ├── TestPhraseQuery.c │ ├── TestPhraseQuery.cfh │ ├── TestPolyQuery.c │ ├── TestPolyQuery.cfh │ ├── TestPolySearcher.c │ ├── TestPolySearcher.cfh │ ├── TestQueryParser.c │ ├── TestQueryParser.cfh │ ├── TestQueryParserLogic.c │ ├── TestQueryParserLogic.cfh │ ├── TestQueryParserSyntax.c │ ├── TestQueryParserSyntax.cfh │ ├── TestRangeQuery.c │ ├── TestRangeQuery.cfh │ ├── TestReqOptQuery.c │ ├── TestReqOptQuery.cfh │ ├── TestSeriesMatcher.c │ ├── TestSeriesMatcher.cfh │ ├── TestSortSpec.c │ ├── TestSortSpec.cfh │ ├── TestSpan.c │ ├── TestSpan.cfh │ ├── TestTermQuery.c │ └── TestTermQuery.cfh │ ├── Store │ ├── MockFileHandle.c │ ├── MockFileHandle.cfh │ ├── TestCompoundFileReader.c │ ├── TestCompoundFileReader.cfh │ ├── TestCompoundFileWriter.c │ ├── TestCompoundFileWriter.cfh │ ├── TestFSDirHandle.c │ ├── TestFSDirHandle.cfh │ ├── TestFSFileHandle.c │ ├── TestFSFileHandle.cfh │ ├── TestFSFolder.c │ ├── TestFSFolder.cfh │ ├── TestFileHandle.c │ ├── TestFileHandle.cfh │ ├── TestFolder.c │ ├── TestFolder.cfh │ ├── TestFolderCommon.c │ ├── TestFolderCommon.cfh │ ├── TestIOChunks.c │ ├── TestIOChunks.cfh │ ├── TestIOPrimitives.c │ ├── TestIOPrimitives.cfh │ ├── TestInStream.c │ ├── TestInStream.cfh │ ├── TestLock.c │ ├── TestLock.cfh │ ├── TestRAMDirHandle.c │ ├── TestRAMDirHandle.cfh │ ├── TestRAMFileHandle.c │ ├── TestRAMFileHandle.cfh │ ├── TestRAMFolder.c │ └── TestRAMFolder.cfh │ ├── TestSchema.c │ ├── TestSchema.cfh │ ├── TestSimple.c │ ├── TestSimple.cfh │ ├── TestUtils.c │ ├── TestUtils.cfh │ └── Util │ ├── TestFreezer.c │ ├── TestFreezer.cfh │ ├── TestIndexFileNames.c │ ├── TestIndexFileNames.cfh │ ├── TestJson.c │ ├── TestJson.cfh │ ├── TestMemoryPool.c │ ├── TestMemoryPool.cfh │ ├── TestNumberUtils.c │ ├── TestNumberUtils.cfh │ ├── TestPriorityQueue.c │ ├── TestPriorityQueue.cfh │ ├── TestSortExternal.c │ ├── TestSortExternal.cfh │ ├── TestStringHelper.c │ └── TestStringHelper.cfh ├── TestLucy.c └── TestLucy.cfp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/CHANGES -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/NOTICE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/README -------------------------------------------------------------------------------- /STATUS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/STATUS -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/appveyor.yml -------------------------------------------------------------------------------- /c/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/c/.gitignore -------------------------------------------------------------------------------- /c/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/c/INSTALL.md -------------------------------------------------------------------------------- /c/cfc_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/c/cfc_header -------------------------------------------------------------------------------- /c/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/c/configure -------------------------------------------------------------------------------- /c/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/c/configure.bat -------------------------------------------------------------------------------- /c/sample/getting_started.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/c/sample/getting_started.c -------------------------------------------------------------------------------- /c/sample/indexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/c/sample/indexer.c -------------------------------------------------------------------------------- /c/sample/indexer_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/c/sample/indexer_simple.c -------------------------------------------------------------------------------- /c/sample/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/c/sample/search.c -------------------------------------------------------------------------------- /c/sample/search_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/c/sample/search_simple.c -------------------------------------------------------------------------------- /c/src/Lucy/Analysis/RegexTokenizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/c/src/Lucy/Analysis/RegexTokenizer.c -------------------------------------------------------------------------------- /c/src/Lucy/Document/Doc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/c/src/Lucy/Document/Doc.c -------------------------------------------------------------------------------- /c/src/Lucy/Index/DocReader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/c/src/Lucy/Index/DocReader.c -------------------------------------------------------------------------------- /c/src/Lucy/Index/Inverter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/c/src/Lucy/Index/Inverter.c -------------------------------------------------------------------------------- /c/t/test_lucy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/c/t/test_lucy.c -------------------------------------------------------------------------------- /common/charmonizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/charmonizer.c -------------------------------------------------------------------------------- /common/charmonizer.main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/charmonizer.main -------------------------------------------------------------------------------- /common/sample/us_constitution/amend1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend1.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/amend10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend10.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/amend11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend11.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/amend12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend12.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/amend13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend13.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/amend14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend14.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/amend15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend15.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/amend16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend16.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/amend17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend17.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/amend18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend18.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/amend19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend19.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/amend2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend2.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/amend20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend20.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/amend21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend21.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/amend22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend22.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/amend23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend23.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/amend24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend24.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/amend25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend25.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/amend26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend26.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/amend27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend27.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/amend3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend3.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/amend4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend4.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/amend5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend5.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/amend6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend6.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/amend7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend7.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/amend8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend8.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/amend9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/amend9.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/art1sec1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/art1sec1.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/art1sec10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/art1sec10.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/art1sec2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/art1sec2.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/art1sec3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/art1sec3.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/art1sec4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/art1sec4.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/art1sec5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/art1sec5.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/art1sec6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/art1sec6.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/art1sec7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/art1sec7.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/art1sec8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/art1sec8.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/art1sec9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/art1sec9.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/art2sec1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/art2sec1.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/art2sec2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/art2sec2.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/art2sec3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/art2sec3.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/art2sec4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/art2sec4.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/art3sec1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/art3sec1.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/art3sec2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/art3sec2.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/art3sec3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/art3sec3.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/art4sec1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/art4sec1.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/art4sec2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/art4sec2.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/art4sec3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/art4sec3.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/art4sec4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/art4sec4.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/art5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/art5.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/art6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/art6.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/art7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/art7.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/index.html -------------------------------------------------------------------------------- /common/sample/us_constitution/preamble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/preamble.txt -------------------------------------------------------------------------------- /common/sample/us_constitution/uscon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/common/sample/us_constitution/uscon.css -------------------------------------------------------------------------------- /core/Lucy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy.c -------------------------------------------------------------------------------- /core/Lucy.cfp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy.cfp -------------------------------------------------------------------------------- /core/Lucy/Analysis/Analyzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Analysis/Analyzer.c -------------------------------------------------------------------------------- /core/Lucy/Analysis/Analyzer.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Analysis/Analyzer.cfh -------------------------------------------------------------------------------- /core/Lucy/Analysis/CaseFolder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Analysis/CaseFolder.c -------------------------------------------------------------------------------- /core/Lucy/Analysis/CaseFolder.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Analysis/CaseFolder.cfh -------------------------------------------------------------------------------- /core/Lucy/Analysis/EasyAnalyzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Analysis/EasyAnalyzer.c -------------------------------------------------------------------------------- /core/Lucy/Analysis/EasyAnalyzer.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Analysis/EasyAnalyzer.cfh -------------------------------------------------------------------------------- /core/Lucy/Analysis/Inversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Analysis/Inversion.c -------------------------------------------------------------------------------- /core/Lucy/Analysis/Inversion.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Analysis/Inversion.cfh -------------------------------------------------------------------------------- /core/Lucy/Analysis/Normalizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Analysis/Normalizer.c -------------------------------------------------------------------------------- /core/Lucy/Analysis/Normalizer.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Analysis/Normalizer.cfh -------------------------------------------------------------------------------- /core/Lucy/Analysis/PolyAnalyzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Analysis/PolyAnalyzer.c -------------------------------------------------------------------------------- /core/Lucy/Analysis/PolyAnalyzer.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Analysis/PolyAnalyzer.cfh -------------------------------------------------------------------------------- /core/Lucy/Analysis/RegexTokenizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Analysis/RegexTokenizer.c -------------------------------------------------------------------------------- /core/Lucy/Analysis/RegexTokenizer.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Analysis/RegexTokenizer.cfh -------------------------------------------------------------------------------- /core/Lucy/Analysis/SnowballStemmer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Analysis/SnowballStemmer.c -------------------------------------------------------------------------------- /core/Lucy/Analysis/SnowballStemmer.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Analysis/SnowballStemmer.cfh -------------------------------------------------------------------------------- /core/Lucy/Analysis/SnowballStopFilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Analysis/SnowballStopFilter.c -------------------------------------------------------------------------------- /core/Lucy/Analysis/SnowballStopFilter.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Analysis/SnowballStopFilter.cfh -------------------------------------------------------------------------------- /core/Lucy/Analysis/StandardTokenizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Analysis/StandardTokenizer.c -------------------------------------------------------------------------------- /core/Lucy/Analysis/StandardTokenizer.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Analysis/StandardTokenizer.cfh -------------------------------------------------------------------------------- /core/Lucy/Analysis/Token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Analysis/Token.c -------------------------------------------------------------------------------- /core/Lucy/Analysis/Token.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Analysis/Token.cfh -------------------------------------------------------------------------------- /core/Lucy/Docs/Cookbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Docs/Cookbook.md -------------------------------------------------------------------------------- /core/Lucy/Docs/Cookbook/CustomQuery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Docs/Cookbook/CustomQuery.md -------------------------------------------------------------------------------- /core/Lucy/Docs/Cookbook/FastUpdates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Docs/Cookbook/FastUpdates.md -------------------------------------------------------------------------------- /core/Lucy/Docs/DevGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Docs/DevGuide.md -------------------------------------------------------------------------------- /core/Lucy/Docs/DocIDs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Docs/DocIDs.md -------------------------------------------------------------------------------- /core/Lucy/Docs/FileFormat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Docs/FileFormat.md -------------------------------------------------------------------------------- /core/Lucy/Docs/FileLocking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Docs/FileLocking.md -------------------------------------------------------------------------------- /core/Lucy/Docs/IRTheory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Docs/IRTheory.md -------------------------------------------------------------------------------- /core/Lucy/Docs/Tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Docs/Tutorial.md -------------------------------------------------------------------------------- /core/Lucy/Docs/Tutorial/AnalysisTutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Docs/Tutorial/AnalysisTutorial.md -------------------------------------------------------------------------------- /core/Lucy/Docs/Tutorial/SimpleTutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Docs/Tutorial/SimpleTutorial.md -------------------------------------------------------------------------------- /core/Lucy/Document/Doc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Document/Doc.c -------------------------------------------------------------------------------- /core/Lucy/Document/Doc.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Document/Doc.cfh -------------------------------------------------------------------------------- /core/Lucy/Document/HitDoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Document/HitDoc.c -------------------------------------------------------------------------------- /core/Lucy/Document/HitDoc.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Document/HitDoc.cfh -------------------------------------------------------------------------------- /core/Lucy/Highlight/HeatMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Highlight/HeatMap.c -------------------------------------------------------------------------------- /core/Lucy/Highlight/HeatMap.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Highlight/HeatMap.cfh -------------------------------------------------------------------------------- /core/Lucy/Highlight/Highlighter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Highlight/Highlighter.c -------------------------------------------------------------------------------- /core/Lucy/Highlight/Highlighter.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Highlight/Highlighter.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/BackgroundMerger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/BackgroundMerger.c -------------------------------------------------------------------------------- /core/Lucy/Index/BackgroundMerger.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/BackgroundMerger.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/BitVecDelDocs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/BitVecDelDocs.c -------------------------------------------------------------------------------- /core/Lucy/Index/BitVecDelDocs.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/BitVecDelDocs.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/DataReader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/DataReader.c -------------------------------------------------------------------------------- /core/Lucy/Index/DataReader.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/DataReader.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/DataWriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/DataWriter.c -------------------------------------------------------------------------------- /core/Lucy/Index/DataWriter.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/DataWriter.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/DeletionsReader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/DeletionsReader.c -------------------------------------------------------------------------------- /core/Lucy/Index/DeletionsReader.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/DeletionsReader.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/DeletionsWriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/DeletionsWriter.c -------------------------------------------------------------------------------- /core/Lucy/Index/DeletionsWriter.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/DeletionsWriter.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/DocReader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/DocReader.c -------------------------------------------------------------------------------- /core/Lucy/Index/DocReader.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/DocReader.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/DocVector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/DocVector.c -------------------------------------------------------------------------------- /core/Lucy/Index/DocVector.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/DocVector.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/DocWriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/DocWriter.c -------------------------------------------------------------------------------- /core/Lucy/Index/DocWriter.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/DocWriter.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/FilePurger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/FilePurger.c -------------------------------------------------------------------------------- /core/Lucy/Index/FilePurger.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/FilePurger.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/HighlightReader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/HighlightReader.c -------------------------------------------------------------------------------- /core/Lucy/Index/HighlightReader.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/HighlightReader.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/HighlightWriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/HighlightWriter.c -------------------------------------------------------------------------------- /core/Lucy/Index/HighlightWriter.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/HighlightWriter.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/IndexManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/IndexManager.c -------------------------------------------------------------------------------- /core/Lucy/Index/IndexManager.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/IndexManager.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/IndexReader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/IndexReader.c -------------------------------------------------------------------------------- /core/Lucy/Index/IndexReader.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/IndexReader.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/Indexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/Indexer.c -------------------------------------------------------------------------------- /core/Lucy/Index/Indexer.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/Indexer.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/Inverter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/Inverter.c -------------------------------------------------------------------------------- /core/Lucy/Index/Inverter.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/Inverter.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/LexIndex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/LexIndex.c -------------------------------------------------------------------------------- /core/Lucy/Index/LexIndex.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/LexIndex.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/Lexicon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/Lexicon.c -------------------------------------------------------------------------------- /core/Lucy/Index/Lexicon.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/Lexicon.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/LexiconReader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/LexiconReader.c -------------------------------------------------------------------------------- /core/Lucy/Index/LexiconReader.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/LexiconReader.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/LexiconWriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/LexiconWriter.c -------------------------------------------------------------------------------- /core/Lucy/Index/LexiconWriter.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/LexiconWriter.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/PolyLexicon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/PolyLexicon.c -------------------------------------------------------------------------------- /core/Lucy/Index/PolyLexicon.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/PolyLexicon.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/PolyReader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/PolyReader.c -------------------------------------------------------------------------------- /core/Lucy/Index/PolyReader.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/PolyReader.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/Posting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/Posting.c -------------------------------------------------------------------------------- /core/Lucy/Index/Posting.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/Posting.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/Posting/MatchPosting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/Posting/MatchPosting.c -------------------------------------------------------------------------------- /core/Lucy/Index/Posting/MatchPosting.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/Posting/MatchPosting.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/Posting/RawPosting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/Posting/RawPosting.c -------------------------------------------------------------------------------- /core/Lucy/Index/Posting/RawPosting.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/Posting/RawPosting.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/Posting/RichPosting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/Posting/RichPosting.c -------------------------------------------------------------------------------- /core/Lucy/Index/Posting/RichPosting.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/Posting/RichPosting.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/Posting/ScorePosting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/Posting/ScorePosting.c -------------------------------------------------------------------------------- /core/Lucy/Index/Posting/ScorePosting.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/Posting/ScorePosting.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/PostingList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/PostingList.c -------------------------------------------------------------------------------- /core/Lucy/Index/PostingList.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/PostingList.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/PostingListReader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/PostingListReader.c -------------------------------------------------------------------------------- /core/Lucy/Index/PostingListReader.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/PostingListReader.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/PostingListWriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/PostingListWriter.c -------------------------------------------------------------------------------- /core/Lucy/Index/PostingListWriter.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/PostingListWriter.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/PostingPool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/PostingPool.c -------------------------------------------------------------------------------- /core/Lucy/Index/PostingPool.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/PostingPool.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/RawLexicon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/RawLexicon.c -------------------------------------------------------------------------------- /core/Lucy/Index/RawLexicon.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/RawLexicon.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/RawPostingList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/RawPostingList.c -------------------------------------------------------------------------------- /core/Lucy/Index/RawPostingList.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/RawPostingList.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/SegLexicon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/SegLexicon.c -------------------------------------------------------------------------------- /core/Lucy/Index/SegLexicon.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/SegLexicon.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/SegPostingList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/SegPostingList.c -------------------------------------------------------------------------------- /core/Lucy/Index/SegPostingList.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/SegPostingList.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/SegReader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/SegReader.c -------------------------------------------------------------------------------- /core/Lucy/Index/SegReader.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/SegReader.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/SegWriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/SegWriter.c -------------------------------------------------------------------------------- /core/Lucy/Index/SegWriter.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/SegWriter.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/Segment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/Segment.c -------------------------------------------------------------------------------- /core/Lucy/Index/Segment.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/Segment.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/Similarity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/Similarity.c -------------------------------------------------------------------------------- /core/Lucy/Index/Similarity.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/Similarity.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/SkipStepper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/SkipStepper.c -------------------------------------------------------------------------------- /core/Lucy/Index/SkipStepper.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/SkipStepper.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/Snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/Snapshot.c -------------------------------------------------------------------------------- /core/Lucy/Index/Snapshot.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/Snapshot.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/SortCache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/SortCache.c -------------------------------------------------------------------------------- /core/Lucy/Index/SortCache.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/SortCache.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/SortCache/TextSortCache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/SortCache/TextSortCache.c -------------------------------------------------------------------------------- /core/Lucy/Index/SortCache/TextSortCache.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/SortCache/TextSortCache.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/SortFieldWriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/SortFieldWriter.c -------------------------------------------------------------------------------- /core/Lucy/Index/SortFieldWriter.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/SortFieldWriter.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/SortReader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/SortReader.c -------------------------------------------------------------------------------- /core/Lucy/Index/SortReader.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/SortReader.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/SortWriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/SortWriter.c -------------------------------------------------------------------------------- /core/Lucy/Index/SortWriter.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/SortWriter.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/TermInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/TermInfo.c -------------------------------------------------------------------------------- /core/Lucy/Index/TermInfo.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/TermInfo.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/TermStepper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/TermStepper.c -------------------------------------------------------------------------------- /core/Lucy/Index/TermStepper.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/TermStepper.cfh -------------------------------------------------------------------------------- /core/Lucy/Index/TermVector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/TermVector.c -------------------------------------------------------------------------------- /core/Lucy/Index/TermVector.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Index/TermVector.cfh -------------------------------------------------------------------------------- /core/Lucy/Object/BitVector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Object/BitVector.c -------------------------------------------------------------------------------- /core/Lucy/Object/BitVector.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Object/BitVector.cfh -------------------------------------------------------------------------------- /core/Lucy/Object/I32Array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Object/I32Array.c -------------------------------------------------------------------------------- /core/Lucy/Object/I32Array.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Object/I32Array.cfh -------------------------------------------------------------------------------- /core/Lucy/Plan/Architecture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Plan/Architecture.c -------------------------------------------------------------------------------- /core/Lucy/Plan/Architecture.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Plan/Architecture.cfh -------------------------------------------------------------------------------- /core/Lucy/Plan/BlobType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Plan/BlobType.c -------------------------------------------------------------------------------- /core/Lucy/Plan/BlobType.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Plan/BlobType.cfh -------------------------------------------------------------------------------- /core/Lucy/Plan/FieldType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Plan/FieldType.c -------------------------------------------------------------------------------- /core/Lucy/Plan/FieldType.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Plan/FieldType.cfh -------------------------------------------------------------------------------- /core/Lucy/Plan/FullTextType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Plan/FullTextType.c -------------------------------------------------------------------------------- /core/Lucy/Plan/FullTextType.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Plan/FullTextType.cfh -------------------------------------------------------------------------------- /core/Lucy/Plan/NumericType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Plan/NumericType.c -------------------------------------------------------------------------------- /core/Lucy/Plan/NumericType.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Plan/NumericType.cfh -------------------------------------------------------------------------------- /core/Lucy/Plan/Schema.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Plan/Schema.c -------------------------------------------------------------------------------- /core/Lucy/Plan/Schema.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Plan/Schema.cfh -------------------------------------------------------------------------------- /core/Lucy/Plan/StringType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Plan/StringType.c -------------------------------------------------------------------------------- /core/Lucy/Plan/StringType.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Plan/StringType.cfh -------------------------------------------------------------------------------- /core/Lucy/Plan/TextType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Plan/TextType.c -------------------------------------------------------------------------------- /core/Lucy/Plan/TextType.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Plan/TextType.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/ANDMatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/ANDMatcher.c -------------------------------------------------------------------------------- /core/Lucy/Search/ANDMatcher.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/ANDMatcher.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/ANDQuery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/ANDQuery.c -------------------------------------------------------------------------------- /core/Lucy/Search/ANDQuery.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/ANDQuery.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/BitVecMatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/BitVecMatcher.c -------------------------------------------------------------------------------- /core/Lucy/Search/BitVecMatcher.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/BitVecMatcher.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/Collector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/Collector.c -------------------------------------------------------------------------------- /core/Lucy/Search/Collector.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/Collector.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/Collector/SortCollector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/Collector/SortCollector.c -------------------------------------------------------------------------------- /core/Lucy/Search/Compiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/Compiler.c -------------------------------------------------------------------------------- /core/Lucy/Search/Compiler.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/Compiler.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/HitQueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/HitQueue.c -------------------------------------------------------------------------------- /core/Lucy/Search/HitQueue.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/HitQueue.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/Hits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/Hits.c -------------------------------------------------------------------------------- /core/Lucy/Search/Hits.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/Hits.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/IndexSearcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/IndexSearcher.c -------------------------------------------------------------------------------- /core/Lucy/Search/IndexSearcher.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/IndexSearcher.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/LeafQuery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/LeafQuery.c -------------------------------------------------------------------------------- /core/Lucy/Search/LeafQuery.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/LeafQuery.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/MatchAllMatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/MatchAllMatcher.c -------------------------------------------------------------------------------- /core/Lucy/Search/MatchAllMatcher.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/MatchAllMatcher.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/MatchAllQuery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/MatchAllQuery.c -------------------------------------------------------------------------------- /core/Lucy/Search/MatchAllQuery.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/MatchAllQuery.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/MatchDoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/MatchDoc.c -------------------------------------------------------------------------------- /core/Lucy/Search/MatchDoc.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/MatchDoc.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/Matcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/Matcher.c -------------------------------------------------------------------------------- /core/Lucy/Search/Matcher.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/Matcher.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/NOTMatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/NOTMatcher.c -------------------------------------------------------------------------------- /core/Lucy/Search/NOTMatcher.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/NOTMatcher.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/NOTQuery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/NOTQuery.c -------------------------------------------------------------------------------- /core/Lucy/Search/NOTQuery.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/NOTQuery.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/NoMatchMatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/NoMatchMatcher.c -------------------------------------------------------------------------------- /core/Lucy/Search/NoMatchMatcher.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/NoMatchMatcher.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/NoMatchQuery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/NoMatchQuery.c -------------------------------------------------------------------------------- /core/Lucy/Search/NoMatchQuery.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/NoMatchQuery.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/ORMatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/ORMatcher.c -------------------------------------------------------------------------------- /core/Lucy/Search/ORMatcher.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/ORMatcher.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/ORQuery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/ORQuery.c -------------------------------------------------------------------------------- /core/Lucy/Search/ORQuery.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/ORQuery.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/PhraseMatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/PhraseMatcher.c -------------------------------------------------------------------------------- /core/Lucy/Search/PhraseMatcher.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/PhraseMatcher.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/PhraseQuery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/PhraseQuery.c -------------------------------------------------------------------------------- /core/Lucy/Search/PhraseQuery.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/PhraseQuery.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/PolyMatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/PolyMatcher.c -------------------------------------------------------------------------------- /core/Lucy/Search/PolyMatcher.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/PolyMatcher.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/PolyQuery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/PolyQuery.c -------------------------------------------------------------------------------- /core/Lucy/Search/PolyQuery.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/PolyQuery.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/PolySearcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/PolySearcher.c -------------------------------------------------------------------------------- /core/Lucy/Search/PolySearcher.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/PolySearcher.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/Query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/Query.c -------------------------------------------------------------------------------- /core/Lucy/Search/Query.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/Query.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/QueryParser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/QueryParser.c -------------------------------------------------------------------------------- /core/Lucy/Search/QueryParser.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/QueryParser.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/QueryParser/ParserElem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/QueryParser/ParserElem.c -------------------------------------------------------------------------------- /core/Lucy/Search/QueryParser/ParserElem.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/QueryParser/ParserElem.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/QueryParser/QueryLexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/QueryParser/QueryLexer.c -------------------------------------------------------------------------------- /core/Lucy/Search/QueryParser/QueryLexer.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/QueryParser/QueryLexer.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/RangeMatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/RangeMatcher.c -------------------------------------------------------------------------------- /core/Lucy/Search/RangeMatcher.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/RangeMatcher.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/RangeQuery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/RangeQuery.c -------------------------------------------------------------------------------- /core/Lucy/Search/RangeQuery.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/RangeQuery.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/RequiredOptionalMatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/RequiredOptionalMatcher.c -------------------------------------------------------------------------------- /core/Lucy/Search/RequiredOptionalQuery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/RequiredOptionalQuery.c -------------------------------------------------------------------------------- /core/Lucy/Search/RequiredOptionalQuery.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/RequiredOptionalQuery.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/Searcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/Searcher.c -------------------------------------------------------------------------------- /core/Lucy/Search/Searcher.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/Searcher.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/SeriesMatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/SeriesMatcher.c -------------------------------------------------------------------------------- /core/Lucy/Search/SeriesMatcher.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/SeriesMatcher.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/SortRule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/SortRule.c -------------------------------------------------------------------------------- /core/Lucy/Search/SortRule.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/SortRule.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/SortSpec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/SortSpec.c -------------------------------------------------------------------------------- /core/Lucy/Search/SortSpec.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/SortSpec.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/Span.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/Span.c -------------------------------------------------------------------------------- /core/Lucy/Search/Span.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/Span.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/TermMatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/TermMatcher.c -------------------------------------------------------------------------------- /core/Lucy/Search/TermMatcher.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/TermMatcher.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/TermQuery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/TermQuery.c -------------------------------------------------------------------------------- /core/Lucy/Search/TermQuery.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/TermQuery.cfh -------------------------------------------------------------------------------- /core/Lucy/Search/TopDocs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/TopDocs.c -------------------------------------------------------------------------------- /core/Lucy/Search/TopDocs.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Search/TopDocs.cfh -------------------------------------------------------------------------------- /core/Lucy/Simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Simple.c -------------------------------------------------------------------------------- /core/Lucy/Simple.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Simple.cfh -------------------------------------------------------------------------------- /core/Lucy/Store/CompoundFileReader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/CompoundFileReader.c -------------------------------------------------------------------------------- /core/Lucy/Store/CompoundFileReader.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/CompoundFileReader.cfh -------------------------------------------------------------------------------- /core/Lucy/Store/CompoundFileWriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/CompoundFileWriter.c -------------------------------------------------------------------------------- /core/Lucy/Store/CompoundFileWriter.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/CompoundFileWriter.cfh -------------------------------------------------------------------------------- /core/Lucy/Store/DirHandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/DirHandle.c -------------------------------------------------------------------------------- /core/Lucy/Store/DirHandle.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/DirHandle.cfh -------------------------------------------------------------------------------- /core/Lucy/Store/ErrorMessage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/ErrorMessage.c -------------------------------------------------------------------------------- /core/Lucy/Store/ErrorMessage.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/ErrorMessage.cfh -------------------------------------------------------------------------------- /core/Lucy/Store/FSDirHandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/FSDirHandle.c -------------------------------------------------------------------------------- /core/Lucy/Store/FSDirHandle.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/FSDirHandle.cfh -------------------------------------------------------------------------------- /core/Lucy/Store/FSFileHandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/FSFileHandle.c -------------------------------------------------------------------------------- /core/Lucy/Store/FSFileHandle.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/FSFileHandle.cfh -------------------------------------------------------------------------------- /core/Lucy/Store/FSFolder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/FSFolder.c -------------------------------------------------------------------------------- /core/Lucy/Store/FSFolder.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/FSFolder.cfh -------------------------------------------------------------------------------- /core/Lucy/Store/FileHandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/FileHandle.c -------------------------------------------------------------------------------- /core/Lucy/Store/FileHandle.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/FileHandle.cfh -------------------------------------------------------------------------------- /core/Lucy/Store/FileWindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/FileWindow.c -------------------------------------------------------------------------------- /core/Lucy/Store/FileWindow.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/FileWindow.cfh -------------------------------------------------------------------------------- /core/Lucy/Store/Folder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/Folder.c -------------------------------------------------------------------------------- /core/Lucy/Store/Folder.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/Folder.cfh -------------------------------------------------------------------------------- /core/Lucy/Store/InStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/InStream.c -------------------------------------------------------------------------------- /core/Lucy/Store/InStream.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/InStream.cfh -------------------------------------------------------------------------------- /core/Lucy/Store/Lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/Lock.c -------------------------------------------------------------------------------- /core/Lucy/Store/Lock.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/Lock.cfh -------------------------------------------------------------------------------- /core/Lucy/Store/LockFileLock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/LockFileLock.c -------------------------------------------------------------------------------- /core/Lucy/Store/LockFileLock.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/LockFileLock.cfh -------------------------------------------------------------------------------- /core/Lucy/Store/OutStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/OutStream.c -------------------------------------------------------------------------------- /core/Lucy/Store/OutStream.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/OutStream.cfh -------------------------------------------------------------------------------- /core/Lucy/Store/RAMDirHandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/RAMDirHandle.c -------------------------------------------------------------------------------- /core/Lucy/Store/RAMDirHandle.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/RAMDirHandle.cfh -------------------------------------------------------------------------------- /core/Lucy/Store/RAMFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/RAMFile.c -------------------------------------------------------------------------------- /core/Lucy/Store/RAMFile.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/RAMFile.cfh -------------------------------------------------------------------------------- /core/Lucy/Store/RAMFileHandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/RAMFileHandle.c -------------------------------------------------------------------------------- /core/Lucy/Store/RAMFileHandle.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/RAMFileHandle.cfh -------------------------------------------------------------------------------- /core/Lucy/Store/RAMFolder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/RAMFolder.c -------------------------------------------------------------------------------- /core/Lucy/Store/RAMFolder.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Store/RAMFolder.cfh -------------------------------------------------------------------------------- /core/Lucy/Util/BlobSortEx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/BlobSortEx.c -------------------------------------------------------------------------------- /core/Lucy/Util/BlobSortEx.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/BlobSortEx.cfh -------------------------------------------------------------------------------- /core/Lucy/Util/Debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/Debug.c -------------------------------------------------------------------------------- /core/Lucy/Util/Debug.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/Debug.cfh -------------------------------------------------------------------------------- /core/Lucy/Util/Freezer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/Freezer.c -------------------------------------------------------------------------------- /core/Lucy/Util/Freezer.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/Freezer.cfh -------------------------------------------------------------------------------- /core/Lucy/Util/IndexFileNames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/IndexFileNames.c -------------------------------------------------------------------------------- /core/Lucy/Util/IndexFileNames.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/IndexFileNames.cfh -------------------------------------------------------------------------------- /core/Lucy/Util/Json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/Json.c -------------------------------------------------------------------------------- /core/Lucy/Util/Json.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/Json.cfh -------------------------------------------------------------------------------- /core/Lucy/Util/Json/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/Json/.gitignore -------------------------------------------------------------------------------- /core/Lucy/Util/Json/JsonParser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/Json/JsonParser.y -------------------------------------------------------------------------------- /core/Lucy/Util/MemoryPool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/MemoryPool.c -------------------------------------------------------------------------------- /core/Lucy/Util/MemoryPool.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/MemoryPool.cfh -------------------------------------------------------------------------------- /core/Lucy/Util/NumberUtils.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/NumberUtils.cfh -------------------------------------------------------------------------------- /core/Lucy/Util/PriorityQueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/PriorityQueue.c -------------------------------------------------------------------------------- /core/Lucy/Util/PriorityQueue.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/PriorityQueue.cfh -------------------------------------------------------------------------------- /core/Lucy/Util/ProcessID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/ProcessID.c -------------------------------------------------------------------------------- /core/Lucy/Util/ProcessID.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/ProcessID.cfh -------------------------------------------------------------------------------- /core/Lucy/Util/Sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/Sleep.c -------------------------------------------------------------------------------- /core/Lucy/Util/Sleep.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/Sleep.cfh -------------------------------------------------------------------------------- /core/Lucy/Util/SortExternal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/SortExternal.c -------------------------------------------------------------------------------- /core/Lucy/Util/SortExternal.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/SortExternal.cfh -------------------------------------------------------------------------------- /core/Lucy/Util/Stepper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/Stepper.c -------------------------------------------------------------------------------- /core/Lucy/Util/Stepper.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/Stepper.cfh -------------------------------------------------------------------------------- /core/Lucy/Util/StringHelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/StringHelper.c -------------------------------------------------------------------------------- /core/Lucy/Util/StringHelper.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/StringHelper.cfh -------------------------------------------------------------------------------- /core/Lucy/Util/ToolSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/Lucy/Util/ToolSet.h -------------------------------------------------------------------------------- /core/LucyX/Search/FilterMatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/LucyX/Search/FilterMatcher.c -------------------------------------------------------------------------------- /core/LucyX/Search/FilterMatcher.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/LucyX/Search/FilterMatcher.cfh -------------------------------------------------------------------------------- /core/LucyX/Search/MockMatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/LucyX/Search/MockMatcher.c -------------------------------------------------------------------------------- /core/LucyX/Search/MockMatcher.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/LucyX/Search/MockMatcher.cfh -------------------------------------------------------------------------------- /core/LucyX/Search/ProximityMatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/LucyX/Search/ProximityMatcher.c -------------------------------------------------------------------------------- /core/LucyX/Search/ProximityMatcher.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/LucyX/Search/ProximityMatcher.cfh -------------------------------------------------------------------------------- /core/LucyX/Search/ProximityQuery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/LucyX/Search/ProximityQuery.c -------------------------------------------------------------------------------- /core/LucyX/Search/ProximityQuery.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/core/LucyX/Search/ProximityQuery.cfh -------------------------------------------------------------------------------- /devel/benchmarks/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/devel/benchmarks/README.txt -------------------------------------------------------------------------------- /devel/benchmarks/extract_reuters.plx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/devel/benchmarks/extract_reuters.plx -------------------------------------------------------------------------------- /devel/benchmarks/indexers/lucy_indexer.plx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/devel/benchmarks/indexers/lucy_indexer.plx -------------------------------------------------------------------------------- /devel/bin/UnicodeTable.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/devel/bin/UnicodeTable.pm -------------------------------------------------------------------------------- /devel/bin/appveyor-build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/devel/bin/appveyor-build.bat -------------------------------------------------------------------------------- /devel/bin/format_changes_entry.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/devel/bin/format_changes_entry.pl -------------------------------------------------------------------------------- /devel/bin/gen_word_break_data.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/devel/bin/gen_word_break_data.pl -------------------------------------------------------------------------------- /devel/bin/lucytidy.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/devel/bin/lucytidy.pl -------------------------------------------------------------------------------- /devel/bin/regen_charmonizer.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/devel/bin/regen_charmonizer.pl -------------------------------------------------------------------------------- /devel/bin/release_commands.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/devel/bin/release_commands.pl -------------------------------------------------------------------------------- /devel/bin/setup_clownfish_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/devel/bin/setup_clownfish_env.sh -------------------------------------------------------------------------------- /devel/bin/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/devel/bin/setup_env.sh -------------------------------------------------------------------------------- /devel/bin/smoke.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/devel/bin/smoke.pl -------------------------------------------------------------------------------- /devel/bin/test_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/devel/bin/test_all.sh -------------------------------------------------------------------------------- /devel/bin/travis-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/devel/bin/travis-test.sh -------------------------------------------------------------------------------- /devel/bin/update_version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/devel/bin/update_version -------------------------------------------------------------------------------- /devel/bin/valgrind_triggers.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/devel/bin/valgrind_triggers.pl -------------------------------------------------------------------------------- /devel/conf/astylerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/devel/conf/astylerc -------------------------------------------------------------------------------- /devel/conf/clownfish.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/devel/conf/clownfish.vim -------------------------------------------------------------------------------- /devel/conf/lucyperl.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/devel/conf/lucyperl.supp -------------------------------------------------------------------------------- /devel/conf/perltidyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/devel/conf/perltidyrc -------------------------------------------------------------------------------- /devel/conf/rat-excludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/devel/conf/rat-excludes -------------------------------------------------------------------------------- /example-lang/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/example-lang/README -------------------------------------------------------------------------------- /example-lang/src/Lucy/Document/Doc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/example-lang/src/Lucy/Document/Doc.c -------------------------------------------------------------------------------- /example-lang/src/Lucy/Index/DocReader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/example-lang/src/Lucy/Index/DocReader.c -------------------------------------------------------------------------------- /example-lang/src/Lucy/Index/Inverter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/example-lang/src/Lucy/Index/Inverter.c -------------------------------------------------------------------------------- /go/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/build.go -------------------------------------------------------------------------------- /go/cfext/lucy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/cfext/lucy.c -------------------------------------------------------------------------------- /go/lucy/analysis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/lucy/analysis.go -------------------------------------------------------------------------------- /go/lucy/analysis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/lucy/analysis_test.go -------------------------------------------------------------------------------- /go/lucy/document.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/lucy/document.go -------------------------------------------------------------------------------- /go/lucy/document_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/lucy/document_test.go -------------------------------------------------------------------------------- /go/lucy/highlight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/lucy/highlight.go -------------------------------------------------------------------------------- /go/lucy/highlight_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/lucy/highlight_test.go -------------------------------------------------------------------------------- /go/lucy/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/lucy/index.go -------------------------------------------------------------------------------- /go/lucy/index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/lucy/index_test.go -------------------------------------------------------------------------------- /go/lucy/lucy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/lucy/lucy.go -------------------------------------------------------------------------------- /go/lucy/lucy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/lucy/lucy_test.go -------------------------------------------------------------------------------- /go/lucy/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/lucy/object.go -------------------------------------------------------------------------------- /go/lucy/object_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/lucy/object_test.go -------------------------------------------------------------------------------- /go/lucy/plan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/lucy/plan.go -------------------------------------------------------------------------------- /go/lucy/plan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/lucy/plan_test.go -------------------------------------------------------------------------------- /go/lucy/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/lucy/registry.go -------------------------------------------------------------------------------- /go/lucy/registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/lucy/registry_test.go -------------------------------------------------------------------------------- /go/lucy/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/lucy/search.go -------------------------------------------------------------------------------- /go/lucy/search_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/lucy/search_test.go -------------------------------------------------------------------------------- /go/lucy/simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/lucy/simple.go -------------------------------------------------------------------------------- /go/lucy/simple_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/lucy/simple_test.go -------------------------------------------------------------------------------- /go/lucy/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/lucy/store.go -------------------------------------------------------------------------------- /go/lucy/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/lucy/store_test.go -------------------------------------------------------------------------------- /go/lucy/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/lucy/test.go -------------------------------------------------------------------------------- /go/lucy/test_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/lucy/test_test.go -------------------------------------------------------------------------------- /go/lucy/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/lucy/util.go -------------------------------------------------------------------------------- /go/lucy/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/lucy/util_test.go -------------------------------------------------------------------------------- /go/sample/getting_started.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/go/sample/getting_started.go -------------------------------------------------------------------------------- /lemon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/lemon/.gitignore -------------------------------------------------------------------------------- /lemon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/lemon/Makefile -------------------------------------------------------------------------------- /lemon/Makefile.MSVC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/lemon/Makefile.MSVC -------------------------------------------------------------------------------- /lemon/Makefile.MinGW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/lemon/Makefile.MinGW -------------------------------------------------------------------------------- /lemon/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/lemon/README -------------------------------------------------------------------------------- /lemon/lemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/lemon/lemon.c -------------------------------------------------------------------------------- /lemon/lempar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/lemon/lempar.c -------------------------------------------------------------------------------- /modules/analysis/snowstem/source/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/modules/analysis/snowstem/source/README -------------------------------------------------------------------------------- /modules/unicode/ucd/WordBreak.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/modules/unicode/ucd/WordBreak.tab -------------------------------------------------------------------------------- /modules/unicode/ucd/WordBreakTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/modules/unicode/ucd/WordBreakTest.json -------------------------------------------------------------------------------- /modules/unicode/utf8proc/tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/modules/unicode/utf8proc/tests.json -------------------------------------------------------------------------------- /modules/unicode/utf8proc/utf8proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/modules/unicode/utf8proc/utf8proc.c -------------------------------------------------------------------------------- /modules/unicode/utf8proc/utf8proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/modules/unicode/utf8proc/utf8proc.h -------------------------------------------------------------------------------- /modules/unicode/utf8proc/utf8proc_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/modules/unicode/utf8proc/utf8proc_data.h -------------------------------------------------------------------------------- /perl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/.gitignore -------------------------------------------------------------------------------- /perl/Build.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/Build.PL -------------------------------------------------------------------------------- /perl/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/INSTALL -------------------------------------------------------------------------------- /perl/INSTALL.SKIP: -------------------------------------------------------------------------------- 1 | \bLucy/Test\b 2 | -------------------------------------------------------------------------------- /perl/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/MANIFEST -------------------------------------------------------------------------------- /perl/MANIFEST.SKIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/MANIFEST.SKIP -------------------------------------------------------------------------------- /perl/buildlib/Lucy/Build.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/buildlib/Lucy/Build.pm -------------------------------------------------------------------------------- /perl/buildlib/Lucy/Build/Binding/Index.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/buildlib/Lucy/Build/Binding/Index.pm -------------------------------------------------------------------------------- /perl/buildlib/Lucy/Build/Binding/Misc.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/buildlib/Lucy/Build/Binding/Misc.pm -------------------------------------------------------------------------------- /perl/buildlib/Lucy/Build/Binding/Object.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/buildlib/Lucy/Build/Binding/Object.pm -------------------------------------------------------------------------------- /perl/buildlib/Lucy/Build/Binding/Plan.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/buildlib/Lucy/Build/Binding/Plan.pm -------------------------------------------------------------------------------- /perl/buildlib/Lucy/Build/Binding/Search.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/buildlib/Lucy/Build/Binding/Search.pm -------------------------------------------------------------------------------- /perl/buildlib/Lucy/Build/Binding/Store.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/buildlib/Lucy/Build/Binding/Store.pm -------------------------------------------------------------------------------- /perl/buildlib/Lucy/Build/Binding/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/buildlib/Lucy/Build/Binding/Util.pm -------------------------------------------------------------------------------- /perl/buildlib/Lucy/Test/TestUtils.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/buildlib/Lucy/Test/TestUtils.pm -------------------------------------------------------------------------------- /perl/buildlib/LucyX/Build/Binding/Search.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/buildlib/LucyX/Build/Binding/Search.pm -------------------------------------------------------------------------------- /perl/lib/Lucy.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy.pm -------------------------------------------------------------------------------- /perl/lib/Lucy.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy.pod -------------------------------------------------------------------------------- /perl/lib/Lucy/Analysis/Analyzer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Analysis/Analyzer.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Analysis/CaseFolder.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Analysis/CaseFolder.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Analysis/EasyAnalyzer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Analysis/EasyAnalyzer.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Analysis/Inversion.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Analysis/Inversion.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Analysis/Normalizer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Analysis/Normalizer.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Analysis/PolyAnalyzer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Analysis/PolyAnalyzer.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Analysis/RegexTokenizer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Analysis/RegexTokenizer.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Analysis/SnowballStemmer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Analysis/SnowballStemmer.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Analysis/StandardTokenizer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Analysis/StandardTokenizer.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Analysis/Token.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Analysis/Token.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Document/Doc.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Document/Doc.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Document/HitDoc.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Document/HitDoc.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Highlight/HeatMap.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Highlight/HeatMap.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Highlight/Highlighter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Highlight/Highlighter.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/BackgroundMerger.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/BackgroundMerger.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/DataReader.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/DataReader.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/DataWriter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/DataWriter.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/DeletionsReader.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/DeletionsReader.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/DeletionsWriter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/DeletionsWriter.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/DocReader.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/DocReader.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/DocVector.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/DocVector.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/DocWriter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/DocWriter.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/FilePurger.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/FilePurger.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/HighlightReader.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/HighlightReader.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/HighlightWriter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/HighlightWriter.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/IndexManager.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/IndexManager.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/IndexReader.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/IndexReader.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/Indexer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/Indexer.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/Inverter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/Inverter.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/Lexicon.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/Lexicon.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/LexiconReader.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/LexiconReader.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/LexiconWriter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/LexiconWriter.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/PolyLexicon.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/PolyLexicon.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/PolyReader.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/PolyReader.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/Posting.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/Posting.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/Posting/MatchPosting.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/Posting/MatchPosting.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/Posting/RichPosting.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/Posting/RichPosting.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/Posting/ScorePosting.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/Posting/ScorePosting.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/PostingList.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/PostingList.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/PostingListReader.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/PostingListReader.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/PostingListWriter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/PostingListWriter.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/SegLexicon.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/SegLexicon.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/SegPostingList.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/SegPostingList.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/SegReader.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/SegReader.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/SegWriter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/SegWriter.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/Segment.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/Segment.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/Similarity.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/Similarity.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/Snapshot.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/Snapshot.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/SortCache.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/SortCache.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/SortReader.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/SortReader.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/SortWriter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/SortWriter.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/TermInfo.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/TermInfo.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Index/TermVector.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Index/TermVector.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Object/BitVector.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Object/BitVector.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Object/I32Array.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Object/I32Array.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Object/Obj.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Object/Obj.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Plan/Architecture.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Plan/Architecture.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Plan/BlobType.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Plan/BlobType.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Plan/FieldType.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Plan/FieldType.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Plan/Float32Type.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Plan/Float32Type.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Plan/Float64Type.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Plan/Float64Type.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Plan/FullTextType.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Plan/FullTextType.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Plan/Int32Type.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Plan/Int32Type.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Plan/Int64Type.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Plan/Int64Type.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Plan/Schema.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Plan/Schema.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Plan/StringType.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Plan/StringType.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/ANDMatcher.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/ANDMatcher.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/ANDQuery.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/ANDQuery.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/BitVecMatcher.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/BitVecMatcher.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/Collector.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/Collector.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/Compiler.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/Compiler.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/HitQueue.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/HitQueue.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/Hits.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/Hits.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/IndexSearcher.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/IndexSearcher.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/LeafQuery.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/LeafQuery.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/MatchAllQuery.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/MatchAllQuery.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/MatchDoc.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/MatchDoc.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/Matcher.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/Matcher.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/NOTMatcher.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/NOTMatcher.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/NOTQuery.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/NOTQuery.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/NoMatchQuery.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/NoMatchQuery.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/ORQuery.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/ORQuery.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/ORScorer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/ORScorer.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/PhraseQuery.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/PhraseQuery.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/PolyCompiler.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/PolyCompiler.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/PolyQuery.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/PolyQuery.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/PolySearcher.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/PolySearcher.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/Query.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/Query.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/QueryParser.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/QueryParser.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/RangeQuery.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/RangeQuery.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/Searcher.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/Searcher.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/SortRule.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/SortRule.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/SortSpec.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/SortSpec.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/Span.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/Span.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/TermQuery.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/TermQuery.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Search/TopDocs.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Search/TopDocs.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Simple.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Simple.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Store/FSFileHandle.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Store/FSFileHandle.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Store/FSFolder.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Store/FSFolder.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Store/FileHandle.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Store/FileHandle.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Store/Folder.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Store/Folder.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Store/InStream.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Store/InStream.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Store/LockErr.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Store/LockErr.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Store/OutStream.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Store/OutStream.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Store/RAMFile.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Store/RAMFile.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Store/RAMFileHandle.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Store/RAMFileHandle.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Store/RAMFolder.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Store/RAMFolder.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Test.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Test.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Util/Debug.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Util/Debug.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Util/IndexFileNames.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Util/IndexFileNames.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Util/Json.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Util/Json.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Util/MemoryPool.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Util/MemoryPool.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Util/PriorityQueue.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Util/PriorityQueue.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Util/SortExternal.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Util/SortExternal.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Util/Stepper.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Util/Stepper.pm -------------------------------------------------------------------------------- /perl/lib/Lucy/Util/StringHelper.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/Lucy/Util/StringHelper.pm -------------------------------------------------------------------------------- /perl/lib/LucyX/Index/ByteBufDocReader.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/LucyX/Index/ByteBufDocReader.pm -------------------------------------------------------------------------------- /perl/lib/LucyX/Index/ByteBufDocWriter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/LucyX/Index/ByteBufDocWriter.pm -------------------------------------------------------------------------------- /perl/lib/LucyX/Index/LongFieldSim.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/LucyX/Index/LongFieldSim.pm -------------------------------------------------------------------------------- /perl/lib/LucyX/Index/ZlibDocReader.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/LucyX/Index/ZlibDocReader.pm -------------------------------------------------------------------------------- /perl/lib/LucyX/Index/ZlibDocWriter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/LucyX/Index/ZlibDocWriter.pm -------------------------------------------------------------------------------- /perl/lib/LucyX/Remote/ClusterSearcher.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/LucyX/Remote/ClusterSearcher.pm -------------------------------------------------------------------------------- /perl/lib/LucyX/Remote/SearchClient.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/LucyX/Remote/SearchClient.pm -------------------------------------------------------------------------------- /perl/lib/LucyX/Remote/SearchServer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/LucyX/Remote/SearchServer.pm -------------------------------------------------------------------------------- /perl/lib/LucyX/Search/Filter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/LucyX/Search/Filter.pm -------------------------------------------------------------------------------- /perl/lib/LucyX/Search/MockMatcher.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/LucyX/Search/MockMatcher.pm -------------------------------------------------------------------------------- /perl/lib/LucyX/Search/ProximityQuery.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/lib/LucyX/Search/ProximityQuery.pm -------------------------------------------------------------------------------- /perl/sample/FlatQueryParser.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/sample/FlatQueryParser.pm -------------------------------------------------------------------------------- /perl/sample/PrefixQuery.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/sample/PrefixQuery.pm -------------------------------------------------------------------------------- /perl/sample/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/sample/README.txt -------------------------------------------------------------------------------- /perl/sample/indexer.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/sample/indexer.pl -------------------------------------------------------------------------------- /perl/sample/search.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/sample/search.cgi -------------------------------------------------------------------------------- /perl/t/002-lucy.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/002-lucy.t -------------------------------------------------------------------------------- /perl/t/015-sort_external.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/015-sort_external.t -------------------------------------------------------------------------------- /perl/t/023-stepper.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/023-stepper.t -------------------------------------------------------------------------------- /perl/t/025-debug.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/025-debug.t -------------------------------------------------------------------------------- /perl/t/026-serialization.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/026-serialization.t -------------------------------------------------------------------------------- /perl/t/050-ramfile.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/050-ramfile.t -------------------------------------------------------------------------------- /perl/t/051-fsfile.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/051-fsfile.t -------------------------------------------------------------------------------- /perl/t/102-strings_io.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/102-strings_io.t -------------------------------------------------------------------------------- /perl/t/105-folder.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/105-folder.t -------------------------------------------------------------------------------- /perl/t/109-read_locking.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/109-read_locking.t -------------------------------------------------------------------------------- /perl/t/111-index_manager.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/111-index_manager.t -------------------------------------------------------------------------------- /perl/t/152-inversion.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/152-inversion.t -------------------------------------------------------------------------------- /perl/t/154-regex_tokenizer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/154-regex_tokenizer.t -------------------------------------------------------------------------------- /perl/t/200-doc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/200-doc.t -------------------------------------------------------------------------------- /perl/t/201-hit_doc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/201-hit_doc.t -------------------------------------------------------------------------------- /perl/t/204-doc_reader.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/204-doc_reader.t -------------------------------------------------------------------------------- /perl/t/205-seg_reader.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/205-seg_reader.t -------------------------------------------------------------------------------- /perl/t/207-seg_lexicon.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/207-seg_lexicon.t -------------------------------------------------------------------------------- /perl/t/209-seg_lexicon_heavy.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/209-seg_lexicon_heavy.t -------------------------------------------------------------------------------- /perl/t/210-deldocs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/210-deldocs.t -------------------------------------------------------------------------------- /perl/t/211-seg_posting_list.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/211-seg_posting_list.t -------------------------------------------------------------------------------- /perl/t/213-segment_merging.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/213-segment_merging.t -------------------------------------------------------------------------------- /perl/t/215-term_vectors.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/215-term_vectors.t -------------------------------------------------------------------------------- /perl/t/216-schema.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/216-schema.t -------------------------------------------------------------------------------- /perl/t/217-poly_lexicon.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/217-poly_lexicon.t -------------------------------------------------------------------------------- /perl/t/218-del_merging.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/218-del_merging.t -------------------------------------------------------------------------------- /perl/t/219-byte_buf_doc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/219-byte_buf_doc.t -------------------------------------------------------------------------------- /perl/t/220-zlib_doc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/220-zlib_doc.t -------------------------------------------------------------------------------- /perl/t/224-lex_reader.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/224-lex_reader.t -------------------------------------------------------------------------------- /perl/t/233-background_merger.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/233-background_merger.t -------------------------------------------------------------------------------- /perl/t/240-custom-analyzer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/240-custom-analyzer.t -------------------------------------------------------------------------------- /perl/t/304-verify_utf8.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/304-verify_utf8.t -------------------------------------------------------------------------------- /perl/t/305-indexer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/305-indexer.t -------------------------------------------------------------------------------- /perl/t/306-dynamic_schema.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/306-dynamic_schema.t -------------------------------------------------------------------------------- /perl/t/308-simple.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/308-simple.t -------------------------------------------------------------------------------- /perl/t/400-match_posting.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/400-match_posting.t -------------------------------------------------------------------------------- /perl/t/501-termquery.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/501-termquery.t -------------------------------------------------------------------------------- /perl/t/502-phrasequery.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/502-phrasequery.t -------------------------------------------------------------------------------- /perl/t/504-similarity.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/504-similarity.t -------------------------------------------------------------------------------- /perl/t/505-hit_queue.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/505-hit_queue.t -------------------------------------------------------------------------------- /perl/t/506-collector.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/506-collector.t -------------------------------------------------------------------------------- /perl/t/507-filter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/507-filter.t -------------------------------------------------------------------------------- /perl/t/508-hits.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/508-hits.t -------------------------------------------------------------------------------- /perl/t/509-poly_searcher.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/509-poly_searcher.t -------------------------------------------------------------------------------- /perl/t/510-remote_search.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/510-remote_search.t -------------------------------------------------------------------------------- /perl/t/513-matcher.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/513-matcher.t -------------------------------------------------------------------------------- /perl/t/514-and_matcher.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/514-and_matcher.t -------------------------------------------------------------------------------- /perl/t/515-range_query.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/515-range_query.t -------------------------------------------------------------------------------- /perl/t/518-or_scorer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/518-or_scorer.t -------------------------------------------------------------------------------- /perl/t/519-req_opt_matcher.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/519-req_opt_matcher.t -------------------------------------------------------------------------------- /perl/t/520-match_doc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/520-match_doc.t -------------------------------------------------------------------------------- /perl/t/523-and_query.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/523-and_query.t -------------------------------------------------------------------------------- /perl/t/524-poly_query.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/524-poly_query.t -------------------------------------------------------------------------------- /perl/t/525-match_all_query.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/525-match_all_query.t -------------------------------------------------------------------------------- /perl/t/526-not_query.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/526-not_query.t -------------------------------------------------------------------------------- /perl/t/527-req_opt_query.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/527-req_opt_query.t -------------------------------------------------------------------------------- /perl/t/528-leaf_query.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/528-leaf_query.t -------------------------------------------------------------------------------- /perl/t/529-no_match_query.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/529-no_match_query.t -------------------------------------------------------------------------------- /perl/t/532-sort_collector.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/532-sort_collector.t -------------------------------------------------------------------------------- /perl/t/550-cluster_searcher.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/550-cluster_searcher.t -------------------------------------------------------------------------------- /perl/t/601-queryparser.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/601-queryparser.t -------------------------------------------------------------------------------- /perl/t/602-boosts.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/602-boosts.t -------------------------------------------------------------------------------- /perl/t/603-query_boosts.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/603-query_boosts.t -------------------------------------------------------------------------------- /perl/t/604-simple_search.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/604-simple_search.t -------------------------------------------------------------------------------- /perl/t/605-store_pos_boost.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/605-store_pos_boost.t -------------------------------------------------------------------------------- /perl/t/607-queryparser_multi_field.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/607-queryparser_multi_field.t -------------------------------------------------------------------------------- /perl/t/613-proximityquery.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/613-proximityquery.t -------------------------------------------------------------------------------- /perl/t/701-uscon.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/701-uscon.t -------------------------------------------------------------------------------- /perl/t/binding/101-simple_io.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/binding/101-simple_io.t -------------------------------------------------------------------------------- /perl/t/binding/150-polyanalyzer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/binding/150-polyanalyzer.t -------------------------------------------------------------------------------- /perl/t/binding/151-analyzer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/binding/151-analyzer.t -------------------------------------------------------------------------------- /perl/t/binding/153-case_folder.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/binding/153-case_folder.t -------------------------------------------------------------------------------- /perl/t/binding/155-snowball_stop_filter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/binding/155-snowball_stop_filter.t -------------------------------------------------------------------------------- /perl/t/binding/156-snowball_stemmer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/binding/156-snowball_stemmer.t -------------------------------------------------------------------------------- /perl/t/binding/157-normalizer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/binding/157-normalizer.t -------------------------------------------------------------------------------- /perl/t/binding/158-standard_tokenizer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/binding/158-standard_tokenizer.t -------------------------------------------------------------------------------- /perl/t/binding/159-easyanalyzer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/binding/159-easyanalyzer.t -------------------------------------------------------------------------------- /perl/t/binding/206-snapshot.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/binding/206-snapshot.t -------------------------------------------------------------------------------- /perl/t/binding/303-highlighter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/binding/303-highlighter.t -------------------------------------------------------------------------------- /perl/t/binding/310-heat_map.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/binding/310-heat_map.t -------------------------------------------------------------------------------- /perl/t/binding/506-collector.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/binding/506-collector.t -------------------------------------------------------------------------------- /perl/t/binding/511-sort_spec.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/binding/511-sort_spec.t -------------------------------------------------------------------------------- /perl/t/binding/702-sample.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/binding/702-sample.t -------------------------------------------------------------------------------- /perl/t/binding/800-stack.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/binding/800-stack.t -------------------------------------------------------------------------------- /perl/t/binding/801-pod_checker.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/binding/801-pod_checker.t -------------------------------------------------------------------------------- /perl/t/core/012-priority_queue.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/012-priority_queue.t -------------------------------------------------------------------------------- /perl/t/core/013-bit_vector.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/013-bit_vector.t -------------------------------------------------------------------------------- /perl/t/core/015-sort_external.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/015-sort_external.t -------------------------------------------------------------------------------- /perl/t/core/024-memory_pool.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/024-memory_pool.t -------------------------------------------------------------------------------- /perl/t/core/030-number_utils.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/030-number_utils.t -------------------------------------------------------------------------------- /perl/t/core/032-string_helper.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/032-string_helper.t -------------------------------------------------------------------------------- /perl/t/core/033-index_file_names.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/033-index_file_names.t -------------------------------------------------------------------------------- /perl/t/core/035-json.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/035-json.t -------------------------------------------------------------------------------- /perl/t/core/036-i32_array.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/036-i32_array.t -------------------------------------------------------------------------------- /perl/t/core/037-freezer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/037-freezer.t -------------------------------------------------------------------------------- /perl/t/core/050-ram_file_handle.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/050-ram_file_handle.t -------------------------------------------------------------------------------- /perl/t/core/051-fs_file_handle.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/051-fs_file_handle.t -------------------------------------------------------------------------------- /perl/t/core/052-instream.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/052-instream.t -------------------------------------------------------------------------------- /perl/t/core/053-file_handle.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/053-file_handle.t -------------------------------------------------------------------------------- /perl/t/core/054-io_primitives.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/054-io_primitives.t -------------------------------------------------------------------------------- /perl/t/core/055-io_chunks.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/055-io_chunks.t -------------------------------------------------------------------------------- /perl/t/core/061-ram_dir_handle.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/061-ram_dir_handle.t -------------------------------------------------------------------------------- /perl/t/core/062-fs_dir_handle.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/062-fs_dir_handle.t -------------------------------------------------------------------------------- /perl/t/core/103-fs_folder.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/103-fs_folder.t -------------------------------------------------------------------------------- /perl/t/core/104-ram_folder.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/104-ram_folder.t -------------------------------------------------------------------------------- /perl/t/core/105-folder.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/105-folder.t -------------------------------------------------------------------------------- /perl/t/core/106-lf_lock.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/106-lf_lock.t -------------------------------------------------------------------------------- /perl/t/core/111-index_manager.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/111-index_manager.t -------------------------------------------------------------------------------- /perl/t/core/112-cf_writer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/112-cf_writer.t -------------------------------------------------------------------------------- /perl/t/core/113-cf_reader.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/113-cf_reader.t -------------------------------------------------------------------------------- /perl/t/core/150-analyzer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/150-analyzer.t -------------------------------------------------------------------------------- /perl/t/core/150-polyanalyzer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/150-polyanalyzer.t -------------------------------------------------------------------------------- /perl/t/core/153-case_folder.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/153-case_folder.t -------------------------------------------------------------------------------- /perl/t/core/154-regex_tokenizer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/154-regex_tokenizer.t -------------------------------------------------------------------------------- /perl/t/core/155-snowball_stop_filter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/155-snowball_stop_filter.t -------------------------------------------------------------------------------- /perl/t/core/156-snowball_stemmer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/156-snowball_stemmer.t -------------------------------------------------------------------------------- /perl/t/core/157-normalizer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/157-normalizer.t -------------------------------------------------------------------------------- /perl/t/core/158-standard_tokenizer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/158-standard_tokenizer.t -------------------------------------------------------------------------------- /perl/t/core/206-snapshot.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/206-snapshot.t -------------------------------------------------------------------------------- /perl/t/core/208-terminfo.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/208-terminfo.t -------------------------------------------------------------------------------- /perl/t/core/214-field_misc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/214-field_misc.t -------------------------------------------------------------------------------- /perl/t/core/216-schema.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/216-schema.t -------------------------------------------------------------------------------- /perl/t/core/220-doc_writer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/220-doc_writer.t -------------------------------------------------------------------------------- /perl/t/core/221-highlight_writer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/221-highlight_writer.t -------------------------------------------------------------------------------- /perl/t/core/222-posting_list_writer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/222-posting_list_writer.t -------------------------------------------------------------------------------- /perl/t/core/223-seg_writer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/223-seg_writer.t -------------------------------------------------------------------------------- /perl/t/core/224-sort_writer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/224-sort_writer.t -------------------------------------------------------------------------------- /perl/t/core/225-polyreader.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/225-polyreader.t -------------------------------------------------------------------------------- /perl/t/core/230-full_text_type.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/230-full_text_type.t -------------------------------------------------------------------------------- /perl/t/core/231-blob_type.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/231-blob_type.t -------------------------------------------------------------------------------- /perl/t/core/232-numeric_type.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/232-numeric_type.t -------------------------------------------------------------------------------- /perl/t/core/233-background_merger.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/233-background_merger.t -------------------------------------------------------------------------------- /perl/t/core/234-field_type.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/234-field_type.t -------------------------------------------------------------------------------- /perl/t/core/301-segment.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/301-segment.t -------------------------------------------------------------------------------- /perl/t/core/303-highlighter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/303-highlighter.t -------------------------------------------------------------------------------- /perl/t/core/308-simple.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/308-simple.t -------------------------------------------------------------------------------- /perl/t/core/309-span.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/309-span.t -------------------------------------------------------------------------------- /perl/t/core/310-heat_map.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/310-heat_map.t -------------------------------------------------------------------------------- /perl/t/core/501-termquery.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/501-termquery.t -------------------------------------------------------------------------------- /perl/t/core/502-phrasequery.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/502-phrasequery.t -------------------------------------------------------------------------------- /perl/t/core/509-poly_searcher.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/509-poly_searcher.t -------------------------------------------------------------------------------- /perl/t/core/511-sort_spec.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/511-sort_spec.t -------------------------------------------------------------------------------- /perl/t/core/515-range_query.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/515-range_query.t -------------------------------------------------------------------------------- /perl/t/core/523-and_query.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/523-and_query.t -------------------------------------------------------------------------------- /perl/t/core/525-match_all_query.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/525-match_all_query.t -------------------------------------------------------------------------------- /perl/t/core/526-not_query.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/526-not_query.t -------------------------------------------------------------------------------- /perl/t/core/527-req_opt_query.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/527-req_opt_query.t -------------------------------------------------------------------------------- /perl/t/core/528-leaf_query.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/528-leaf_query.t -------------------------------------------------------------------------------- /perl/t/core/529-no_match_query.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/529-no_match_query.t -------------------------------------------------------------------------------- /perl/t/core/530-series_matcher.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/530-series_matcher.t -------------------------------------------------------------------------------- /perl/t/core/531-or_query.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/531-or_query.t -------------------------------------------------------------------------------- /perl/t/core/610-queryparser_logic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/610-queryparser_logic.t -------------------------------------------------------------------------------- /perl/t/core/611-queryparser_syntax.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/t/core/611-queryparser_syntax.t -------------------------------------------------------------------------------- /perl/xs/Lucy/Analysis/RegexTokenizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/xs/Lucy/Analysis/RegexTokenizer.c -------------------------------------------------------------------------------- /perl/xs/Lucy/Document/Doc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/xs/Lucy/Document/Doc.c -------------------------------------------------------------------------------- /perl/xs/Lucy/Index/DocReader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/xs/Lucy/Index/DocReader.c -------------------------------------------------------------------------------- /perl/xs/Lucy/Index/Inverter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/perl/xs/Lucy/Index/Inverter.c -------------------------------------------------------------------------------- /ruby/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/ruby/.gitignore -------------------------------------------------------------------------------- /ruby/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/ruby/Rakefile -------------------------------------------------------------------------------- /ruby/apache_lucy.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/ruby/apache_lucy.gemspec -------------------------------------------------------------------------------- /ruby/lib/apache_lucy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/ruby/lib/apache_lucy.rb -------------------------------------------------------------------------------- /ruby/test/test_apache_lucy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/ruby/test/test_apache_lucy.rb -------------------------------------------------------------------------------- /tcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/tcl/Makefile -------------------------------------------------------------------------------- /tcl/src/tcllucy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/tcl/src/tcllucy.c -------------------------------------------------------------------------------- /tcl/src/tcllucy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/tcl/src/tcllucy.h -------------------------------------------------------------------------------- /test/Lucy/Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test.c -------------------------------------------------------------------------------- /test/Lucy/Test.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Analysis/TestAnalyzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Analysis/TestAnalyzer.c -------------------------------------------------------------------------------- /test/Lucy/Test/Analysis/TestAnalyzer.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Analysis/TestAnalyzer.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Analysis/TestCaseFolder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Analysis/TestCaseFolder.c -------------------------------------------------------------------------------- /test/Lucy/Test/Analysis/TestCaseFolder.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Analysis/TestCaseFolder.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Analysis/TestNormalizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Analysis/TestNormalizer.c -------------------------------------------------------------------------------- /test/Lucy/Test/Analysis/TestNormalizer.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Analysis/TestNormalizer.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Highlight/TestHeatMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Highlight/TestHeatMap.c -------------------------------------------------------------------------------- /test/Lucy/Test/Highlight/TestHeatMap.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Highlight/TestHeatMap.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Index/NoMergeManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Index/NoMergeManager.c -------------------------------------------------------------------------------- /test/Lucy/Test/Index/NoMergeManager.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Index/NoMergeManager.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Index/TestDocWriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Index/TestDocWriter.c -------------------------------------------------------------------------------- /test/Lucy/Test/Index/TestDocWriter.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Index/TestDocWriter.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Index/TestIndexManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Index/TestIndexManager.c -------------------------------------------------------------------------------- /test/Lucy/Test/Index/TestPolyReader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Index/TestPolyReader.c -------------------------------------------------------------------------------- /test/Lucy/Test/Index/TestPolyReader.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Index/TestPolyReader.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Index/TestSegWriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Index/TestSegWriter.c -------------------------------------------------------------------------------- /test/Lucy/Test/Index/TestSegWriter.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Index/TestSegWriter.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Index/TestSegment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Index/TestSegment.c -------------------------------------------------------------------------------- /test/Lucy/Test/Index/TestSegment.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Index/TestSegment.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Index/TestSnapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Index/TestSnapshot.c -------------------------------------------------------------------------------- /test/Lucy/Test/Index/TestSnapshot.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Index/TestSnapshot.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Index/TestSortWriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Index/TestSortWriter.c -------------------------------------------------------------------------------- /test/Lucy/Test/Index/TestSortWriter.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Index/TestSortWriter.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Index/TestTermInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Index/TestTermInfo.c -------------------------------------------------------------------------------- /test/Lucy/Test/Index/TestTermInfo.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Index/TestTermInfo.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Object/TestBitVector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Object/TestBitVector.c -------------------------------------------------------------------------------- /test/Lucy/Test/Object/TestBitVector.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Object/TestBitVector.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Object/TestI32Array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Object/TestI32Array.c -------------------------------------------------------------------------------- /test/Lucy/Test/Object/TestI32Array.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Object/TestI32Array.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Plan/TestArchitecture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Plan/TestArchitecture.c -------------------------------------------------------------------------------- /test/Lucy/Test/Plan/TestArchitecture.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Plan/TestArchitecture.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Plan/TestBlobType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Plan/TestBlobType.c -------------------------------------------------------------------------------- /test/Lucy/Test/Plan/TestBlobType.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Plan/TestBlobType.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Plan/TestFieldMisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Plan/TestFieldMisc.c -------------------------------------------------------------------------------- /test/Lucy/Test/Plan/TestFieldMisc.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Plan/TestFieldMisc.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Plan/TestFieldType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Plan/TestFieldType.c -------------------------------------------------------------------------------- /test/Lucy/Test/Plan/TestFieldType.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Plan/TestFieldType.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Plan/TestFullTextType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Plan/TestFullTextType.c -------------------------------------------------------------------------------- /test/Lucy/Test/Plan/TestFullTextType.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Plan/TestFullTextType.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Plan/TestNumericType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Plan/TestNumericType.c -------------------------------------------------------------------------------- /test/Lucy/Test/Plan/TestNumericType.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Plan/TestNumericType.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Search/TestLeafQuery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Search/TestLeafQuery.c -------------------------------------------------------------------------------- /test/Lucy/Test/Search/TestLeafQuery.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Search/TestLeafQuery.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Search/TestNOTQuery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Search/TestNOTQuery.c -------------------------------------------------------------------------------- /test/Lucy/Test/Search/TestNOTQuery.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Search/TestNOTQuery.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Search/TestNoMatchQuery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Search/TestNoMatchQuery.c -------------------------------------------------------------------------------- /test/Lucy/Test/Search/TestPhraseQuery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Search/TestPhraseQuery.c -------------------------------------------------------------------------------- /test/Lucy/Test/Search/TestPolyQuery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Search/TestPolyQuery.c -------------------------------------------------------------------------------- /test/Lucy/Test/Search/TestPolyQuery.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Search/TestPolyQuery.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Search/TestPolySearcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Search/TestPolySearcher.c -------------------------------------------------------------------------------- /test/Lucy/Test/Search/TestQueryParser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Search/TestQueryParser.c -------------------------------------------------------------------------------- /test/Lucy/Test/Search/TestRangeQuery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Search/TestRangeQuery.c -------------------------------------------------------------------------------- /test/Lucy/Test/Search/TestRangeQuery.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Search/TestRangeQuery.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Search/TestReqOptQuery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Search/TestReqOptQuery.c -------------------------------------------------------------------------------- /test/Lucy/Test/Search/TestSortSpec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Search/TestSortSpec.c -------------------------------------------------------------------------------- /test/Lucy/Test/Search/TestSortSpec.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Search/TestSortSpec.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Search/TestSpan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Search/TestSpan.c -------------------------------------------------------------------------------- /test/Lucy/Test/Search/TestSpan.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Search/TestSpan.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Search/TestTermQuery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Search/TestTermQuery.c -------------------------------------------------------------------------------- /test/Lucy/Test/Search/TestTermQuery.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Search/TestTermQuery.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Store/MockFileHandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Store/MockFileHandle.c -------------------------------------------------------------------------------- /test/Lucy/Test/Store/MockFileHandle.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Store/MockFileHandle.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Store/TestFSDirHandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Store/TestFSDirHandle.c -------------------------------------------------------------------------------- /test/Lucy/Test/Store/TestFSDirHandle.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Store/TestFSDirHandle.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Store/TestFSFileHandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Store/TestFSFileHandle.c -------------------------------------------------------------------------------- /test/Lucy/Test/Store/TestFSFolder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Store/TestFSFolder.c -------------------------------------------------------------------------------- /test/Lucy/Test/Store/TestFSFolder.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Store/TestFSFolder.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Store/TestFileHandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Store/TestFileHandle.c -------------------------------------------------------------------------------- /test/Lucy/Test/Store/TestFileHandle.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Store/TestFileHandle.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Store/TestFolder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Store/TestFolder.c -------------------------------------------------------------------------------- /test/Lucy/Test/Store/TestFolder.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Store/TestFolder.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Store/TestFolderCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Store/TestFolderCommon.c -------------------------------------------------------------------------------- /test/Lucy/Test/Store/TestIOChunks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Store/TestIOChunks.c -------------------------------------------------------------------------------- /test/Lucy/Test/Store/TestIOChunks.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Store/TestIOChunks.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Store/TestIOPrimitives.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Store/TestIOPrimitives.c -------------------------------------------------------------------------------- /test/Lucy/Test/Store/TestInStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Store/TestInStream.c -------------------------------------------------------------------------------- /test/Lucy/Test/Store/TestInStream.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Store/TestInStream.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Store/TestLock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Store/TestLock.c -------------------------------------------------------------------------------- /test/Lucy/Test/Store/TestLock.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Store/TestLock.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Store/TestRAMDirHandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Store/TestRAMDirHandle.c -------------------------------------------------------------------------------- /test/Lucy/Test/Store/TestRAMFileHandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Store/TestRAMFileHandle.c -------------------------------------------------------------------------------- /test/Lucy/Test/Store/TestRAMFolder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Store/TestRAMFolder.c -------------------------------------------------------------------------------- /test/Lucy/Test/Store/TestRAMFolder.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Store/TestRAMFolder.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/TestSchema.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/TestSchema.c -------------------------------------------------------------------------------- /test/Lucy/Test/TestSchema.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/TestSchema.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/TestSimple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/TestSimple.c -------------------------------------------------------------------------------- /test/Lucy/Test/TestSimple.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/TestSimple.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/TestUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/TestUtils.c -------------------------------------------------------------------------------- /test/Lucy/Test/TestUtils.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/TestUtils.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Util/TestFreezer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Util/TestFreezer.c -------------------------------------------------------------------------------- /test/Lucy/Test/Util/TestFreezer.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Util/TestFreezer.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Util/TestIndexFileNames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Util/TestIndexFileNames.c -------------------------------------------------------------------------------- /test/Lucy/Test/Util/TestJson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Util/TestJson.c -------------------------------------------------------------------------------- /test/Lucy/Test/Util/TestJson.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Util/TestJson.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Util/TestMemoryPool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Util/TestMemoryPool.c -------------------------------------------------------------------------------- /test/Lucy/Test/Util/TestMemoryPool.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Util/TestMemoryPool.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Util/TestNumberUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Util/TestNumberUtils.c -------------------------------------------------------------------------------- /test/Lucy/Test/Util/TestNumberUtils.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Util/TestNumberUtils.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Util/TestPriorityQueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Util/TestPriorityQueue.c -------------------------------------------------------------------------------- /test/Lucy/Test/Util/TestSortExternal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Util/TestSortExternal.c -------------------------------------------------------------------------------- /test/Lucy/Test/Util/TestSortExternal.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Util/TestSortExternal.cfh -------------------------------------------------------------------------------- /test/Lucy/Test/Util/TestStringHelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Util/TestStringHelper.c -------------------------------------------------------------------------------- /test/Lucy/Test/Util/TestStringHelper.cfh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/Lucy/Test/Util/TestStringHelper.cfh -------------------------------------------------------------------------------- /test/TestLucy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/TestLucy.c -------------------------------------------------------------------------------- /test/TestLucy.cfp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/lucy/HEAD/test/TestLucy.cfp --------------------------------------------------------------------------------