Messages by Date
-
2021/10/23
[lucenenet] 05/09: Lucene.Net.Sandbox.Queries.FuzzyLikeThisQuery: Compare using NumericUtils.SingleToSortableInt32() to prevent test failures on x86 .NET Framework. See #269.
nightowl888
-
2021/10/23
[lucenenet] 04/09: BUG: Lucene.Net.Sandbox.Queries.SlowFuzzyTermsEnum::Accept(): Compare using Lucene.Net.Util.NumericUtils.SingleToSortableInt32() to prevent test failures on x86 .NET Framework. This fixes Lucene.Net.Sandbox.Queries.TestSlowFuzzyQuery.TestTokenLengthOpt(). See #269.
nightowl888
-
2021/10/23
[lucenenet] 03/09: BUG: Lucene.Net.Search.TopScoreDocCollector: Compare using Lucene.Net.Util.NumericUtils.SingleToSortableInt32() to prevent test failures on x86 .NET Framework. This fixes Lucene.Net.Search.TestTopDocsMerge::TestSort_1(), Lucene.Net.Search.TestTopDocsMerge::TestSort_2(), and Lucene.Net.Search.TestSearchAfter.TestQueries(). See #269.
nightowl888
-
2021/10/23
[lucenenet] 02/09: BUG: Lucene.Net.Search.FuzzyTermsEnum: Compare using Lucene.Net.Util.NumericUtils.SingleToSortableInt32() to prevent test failures on x86 .NET Framework. This fixes Lucene.Net.Search.TestBooleanQuery.TestBS2DisjunctionNextVsAdvance(), Lucene.Net.Search.TestFuzzyQuery.TestTieBreaker(), and Lucene.Net.Sandbox.Queries.TestSlowFuzzyQuery.TestTieBreaker(). See #269.
nightowl888
-
2021/10/19
[lucenenet] 03/06: BREAKING: Lucene.Net.Search.DisjunctionMaxQuery: Changed protected m_weights field from List<Weight> to IList<Weight>
nightowl888
-
2021/10/19
[lucenenet] 06/06: BUG: Lucene.Net.Tests.Suggest.Suggest.Analyzing.TestFreeTextSuggester::TestRandom(): LookupResult calculation in the test was using different order of parentheses than the production code. This bug existed in Java, but apparently the order makes no difference on that platform. This test was getting a false positive because it was using List<T>.ToString() to make the result comparison, which J2N's List<T> corrects.
nightowl888
-
2021/10/19
[lucenenet] 01/06: BREAKING: Lucene.Net.Analysis.Stempel.Egothor.Stemmer.MultiTrie: Changed protected m_tries field from List<Trie> to IList<Trie>
nightowl888
-
2021/10/19
[lucenenet] 02/06: BREAKING: Lucene.Net.Search.BooleanQuery: Changed protected m_weights field from List<Weight> to IList<Weight>
nightowl888
-
2021/10/19
[lucenenet] branch master updated (3dcffb2 -> dd7ed62)
nightowl888
-
2021/10/19
[lucenenet] 05/06: Lucene.Net.Util.ListExtensions: Added optimized path for J2N.Collections.Generic.List<T> in AddRange and Sort methods
nightowl888
-
2021/10/17
[lucenenet] 08/08: Lucene.Net.Tests.Index.TestIndexWriter: Removed [AwaitsFix] attribute from TestThreadInterruptDeadlock() and TestTwoThreadsInterruptDeadlock(), since they now are passing
nightowl888
-
2021/10/17
[lucenenet] 05/08: SWEEP: Lucene.Net.TestFramework: Changed all lock statements to UninterruptableMonitor.Enter and UninterruptableMonitor.Exit to prevent ThreadInterruptedException from occurring when entering a lock.
nightowl888
-
2021/10/17
[lucenenet] 03/08: Lucene.Net.Support.Threading: Created UninterruptableMonitor class to handle entering locks without throwing System.Threading.ThreadInterruptedException (which is what happens in Java)
nightowl888
-
2021/10/17
[lucenenet] 02/08: SWEEP: Added Lucene.Net.Util.ThreadInterruptedException and re-throw it in all of the places that Lucene does.
nightowl888
-
2021/10/17
[lucenenet] branch master updated (d7a68e4 -> 3dcffb2)
nightowl888
-
2021/10/17
[lucenenet] 01/08: Removed [Deadlock] attribute from tests that were deadlocking due to extra Thread.Sleep(0) call in IndexWriter.Dispose().
nightowl888
-
2021/10/17
[lucenenet] 07/08: Lucene.Net.Index.DocumentsWriter::UnlockAllAfterAbortAll() Added missing when clause on catch block
nightowl888
-
2021/10/11
[lucenenet] branch master updated: Lucene.Net.Index.IndexWriter: Removed call to ThreadJob.Interrupted() which internally calls Thread.Sleep(0) which was causing performance issues and deadlocks during IndexWriter.Dispose()
nightowl888
-
2021/09/26
[lucenenet] branch master updated: Removed .NET Standard 1.x Features (#523)
nightowl888
-
2021/09/26
[lucenenet] branch master updated: Lucene.Net.Tests.Index.TestAddIndexes: Updated NullReferenceException error checking to use IsNullPointerException() instead (which covers the expected ArgumentNullException case)
nightowl888
-
2021/09/26
[lucenenet] branch master updated (89bad64 -> ecbe437)
nightowl888
-
2021/09/26
[lucenenet] 01/03: SWEEP: Added tests for net6.0
nightowl888
-
2021/09/26
[lucenenet] 02/03: SWEEP: Added target for net6.0
nightowl888
-
2021/09/26
[lucenenet] 03/03: README.md, websites/site/index.md: Updated docs to include .NET 6.0
nightowl888
-
2021/09/16
[lucenenet] branch master updated (70cd8b8 -> 89bad64)
nightowl888
-
2021/09/16
[lucenenet] 01/03: Lucene.Net.Support.WeakDictionary: Changed WeakKey to use WeakReference<T> instead of WeakReference to avoid problems with garbage collection (see #506).
nightowl888
-
2021/09/16
[lucenenet] 03/03: BUG: Lucene.Net.Index.IndexReader: Use ConditionalWeakTable/WeakDictionary to ensure dead elements are pruned and garbage collected (fixes #506).
nightowl888
-
2021/09/16
[lucenenet] 02/03: Lucene.Net.Support.WeakDictionary: Changed backing collection from J2N.Collections.Generic.Dictionary<TKey, TValue> to ConcurrentDictionary<TKey, TValue> to allow reap to function while doing a forward iteration through the collection.
nightowl888
-
2021/09/15
[lucenenet] 03/06: SWEEP: Removed FEATURE_THREAD_PRIORITY, since it only applied to .NET Standard 1.x
nightowl888
-
2021/09/15
[lucenenet] 01/06: BUG: Lucnene.Net.Tests.Index.TestDocumentsWriterStallControl: Changed to use Thread.Yield() instead of Thread.Sleep(0) to match Lucene. This was a workaround for .NET Standard 1.x that is no longer applicable.
nightowl888
-
2021/09/15
[lucenenet] 05/06: Lucene.Net.Tests.Index.TestAddIndexes: Updated error handling to use our extension methods and use printStackTrace() to log errors
nightowl888
-
2021/09/15
[lucenenet] 06/06: Lucene.Net.Tests.Index.TestIndexWriter: Added Timeout and Deadlock attributes to TestThreadInterruptDeadlock() and TestTwoThreadsInterruptDeadlock(), since they sometimes hang
nightowl888
-
2021/09/15
[lucenenet] 04/06: BUG: Lucene.Net.Tests.Index.TestIndexWriterWithThreads::TestRollbackAndCommitWithThreads(): Restored original NullReferenceException catch blocks that were in Lucene due to random test failures.
nightowl888
-
2021/09/15
[lucenenet] 02/06: SWEEP: Removed FEATURE_THREAD_YIELD and changed all calls to use Thread.Yield() instead of Thread.Sleep(0)
nightowl888
-
2021/09/15
[lucenenet] branch master updated (0d223f2 -> 70cd8b8)
nightowl888
-
2021/08/20
[lucenenet] branch master updated: Revert "Bug Fix: Re-ported ControlledRealTimeReopenThread and added 2 new tests"
nightowl888
-
2021/08/20
[lucenenet] 01/01: Revert "Bug Fix: Re-ported ControlledRealTimeReopenThread and added 2 new tests"
nightowl888
-
2021/08/20
[lucenenet] branch revert-513-ControlledRealTimeReopenThread_Work created (now 60aef3a)
nightowl888
-
2021/08/20
[lucenenet] branch master updated: Revert "Lucene.Net.Tests.Search.TestControlledRealTimeReopenThread: Added Ignore and AwaitsFix attributes to TestStraightForwardDemonstration() and TestMultithreadedWaitForGeneration(), since they are failing on macOS"
nightowl888
-
2021/08/19
[lucenenet] branch master updated: Lucene.Net.Tests.Search.TestControlledRealTimeReopenThread: Added Ignore and AwaitsFix attributes to TestStraightForwardDemonstration() and TestMultithreadedWaitForGeneration(), since they are failing on macOS
nightowl888
-
2021/08/18
[lucenenet] 01/02: SWEEP: Optimized embedded resource references using glob patterns
nightowl888
-
2021/08/18
[lucenenet] 02/02: .github/workflows/Generate-TestWorkflows.ps1: Fixed trigger for GitHub Action paths to include all externally referenced CS and embedded resource files
nightowl888
-
2021/08/18
[lucenenet] branch master updated (1cd3943 -> 265ab1b)
nightowl888
-
2021/08/18
[lucenenet] branch master updated: BUG: README.md - fixed broken example Fixed an example that perviously worked but no longer does. The improved example works without error.
rclabo
-
2021/08/18
[lucenenet] branch master updated (c2898ca -> 4457227)
rclabo
-
2021/08/17
[lucenenet] branch docs/bugfix/testing-website-build updated: use newer docfx - will trigger file changes so we can see if the PR push works.
shazwazza
-
2021/08/17
[lucenenet] 01/01: Update website build script based on my fork tests and to see if the PAT from infra is working or not.
shazwazza
-
2021/08/17
[lucenenet] branch docs/bugfix/testing-website-build created (now a9ad666)
shazwazza
-
2021/08/14
[lucenenet] branch master updated: Upgraded all build scripts (Azure DevOps, GitHub Actions, local) to use .NET 5.0 SDK 5.0.400, .NET 3.1 SDK 3.1.412 and .NET 2.1 SDK 2.1.817
nightowl888
-
2021/08/13
[lucenenet] branch master updated: build.ps1: Added --blame-hang-timeout of 15 minutes to help detect deadlocks
nightowl888
-
2021/08/12
[lucenenet] branch master updated: azure-pipelines.yml: Updated to use latest version of macOS and Linux for tests
nightowl888
-
2021/08/12
[lucenenet] branch master updated: Addeded additional "Building and Testing" info to the repo's readme file.
rclabo
-
2021/08/12
[lucenenet] branch master updated: BUG: Fixed several tests that were still using Environment.TickCount. TestSearcherManager was using it in combination with Time.NanoTime() / Time.MillisecondsPerNanosecond which caused the test to run forever.
nightowl888
-
2021/07/25
[lucenenet] branch master updated: BUG: Lucene.Net.Tests.Search.TestMultiThreadTermVectors: Removed stray [Test] attribute that was causing extra overhead with no benefit
nightowl888
-
2021/07/24
[lucenenet] branch master updated: PERFORMANCE: Lucene.Net.Util.UnicodeUtil::ToString(): Updated to cascade the call to Character.ToString()
nightowl888
-
2021/07/24
[lucenenet] 01/02: BREAKING: Lucene.Net.QueryParser.Flexible.Core.Nodes.IQueryNode: Added RemoveChildren() method from Lucene 8.8.1 to fix broken RemoveFromParent() method behavior (applies patch LUCENE-5805).
nightowl888
-
2021/07/24
[lucenenet] branch master updated (d58ed59 -> 15549f8)
nightowl888
-
2021/07/24
[lucenenet] 02/02: BREAKING: Lucene.Net.QueryParser.Flexible.Core.Nodes.IQueryNode: Added TryGetTag() method to simplify looking up a tag by name.
nightowl888
-
2021/07/24
[lucenenet] branch master updated: Lucene.Net.Support.ListExtensions::SubList(): Factored out in favor of J2N's GetView() method
nightowl888
-
2021/07/24
[lucenenet] 01/03: Lucene.Net.Analysis.Phonetic, Lucene.Net.TestFramework: Reduced dependency on Lucene.Net.Support.CollectionExtensions by calling ExceptWith instead of CollectionExtensions.RemoveAll()
nightowl888
-
2021/07/24
[lucenenet] branch master updated (c73ffd1 -> a147f67)
nightowl888
-
2021/07/24
[lucenenet] 03/03: Lucene.Net.Benchmark: Use RetainAll() for better efficiency
nightowl888
-
2021/07/24
[lucenenet] 02/03: Lucene.Net.Support.CollectionExtensions: Made more efficient RemoveAll() method and added RetainAll() for use in rare circumstances when we want to do set actions on ICollection<T>
nightowl888
-
2021/07/24
[lucenenet] branch master updated: PERFORMANCE: SWEEP: Replaced Substring method where appropriate with the overloads of number class Parse/TryParse that accept startIndex and length
nightowl888
-
2021/07/24
[lucenenet] branch master updated: SWEEP: Factored out Lucene.Net.Support.Time in favor of J2N.Time. Replaced all calls (except Lucene.Net.Tests.Search.TestDateFilter) to Environment.TickCount and Time.CurrentTimeMilliseconds() to use Time.NanoTime() / Time.MillisecondsPerNanosecond for more accurate results. (fixes #492)
nightowl888
-
2021/07/24
[lucenenet] 01/04: Lucene.Net.Support: Factored out Number class in favor of using J2N's parsers and formatters
nightowl888
-
2021/07/24
[lucenenet] 02/04: Lucene.Net.Highlighter: Implemented IFormattable and added culture-aware ToString() overload to WeightedPhraseInfo and WeightedFragInfo
nightowl888
-
2021/07/24
[lucenenet] 03/04: BREAKING: Lucene.Net.Highlighter.VectorHiglight.ScoreOrderFragmentsBuilder.ScoreComparer: Implemented singleton pattern so the class can only be used via the Default property.
nightowl888
-
2021/07/24
[lucenenet] branch master updated (ddddf53 -> a130105)
nightowl888
-
2021/07/24
[lucenenet] 04/04: PERFORMANCE: Lucene.Net.Highlighter: Use RemoveAll() extension method rather than allocating separate collections to track which enumerated items to remove.
nightowl888
-
2021/07/24
[lucenenet] branch master updated (b03b936 -> ddddf53)
nightowl888
-
2021/07/24
[lucenenet] 02/02: Lucene.Net.Highligher.VectorHighlight.FieldPharseList: Fixed ambiguous Number reference.
nightowl888
-
2021/07/24
[lucenenet] 01/02: build/Dependencies.props: Upgraded J2N package dependency to 2.0.0-beta-0016
nightowl888
-
2021/07/08
[lucenenet-site] branch master updated: Updated README.md, replaced placeholder text with info about the repo. (#22)
rclabo
-
2021/07/08
[lucenenet-site] branch asf-site updated: Updated README.md, replaced placeholder text with info about the repo. (#22)
rclabo
-
2021/06/21
[lucenenet-site] branch asf-site updated: Added and images folder to house images used in static file content. (#20)
rclabo
-
2021/06/02
[lucenenet-site] 01/01: Merge remote-tracking branch 'lucenenet/master' into asf-site
shazwazza
-
2021/06/02
[lucenenet-site] branch asf-site updated (82ae7c4 -> b7932ca)
shazwazza
-
2021/06/02
[lucenenet-site] 01/01: Merge pull request #19 from apache/Shazwazza-patch-1
shazwazza
-
2021/06/02
[lucenenet-site] branch master updated (894c802 -> d0021d4)
shazwazza
-
2021/05/31
[lucenenet-site] branch Shazwazza-patch-1 created (now 4b8b84f)
shazwazza
-
2021/05/28
[lucenenet] 02/02: Lucene.Net.Grouping: Added comments to change !Any() to .Count when IEnumerable<T> is factored out
nightowl888
-
2021/05/28
[lucenenet] 01/02: Fix SonarQube's "Any() should be used to test for emptiness" / Code Smell
nightowl888
-
2021/05/28
[lucenenet] branch master updated (67c0c6b -> b03b936)
nightowl888
-
2021/05/28
[lucenenet] branch master updated (07f9e29 -> 67c0c6b)
nightowl888
-
2021/05/08
[lucenenet] branch master updated: BUG: Changed all references that were float.MinValue and double.MinValue to float.Epsilon and double.Epsilon because those are the .NET equivalent constants to Float.MIN_VALUE and Double.MIN_VALUE in Java
nightowl888
-
2021/05/04
[lucenenet] branch master updated (fb04740 -> c15328f)
nightowl888
-
2021/05/04
[lucenenet] 04/04: Lucene.Net.QueryParsers.Flexible.Core.Messages: Redesigned QueryParserMessages.cs so that it is just a facade around a IResourceProvider implementation that provides the actual fallback logic. Added a QueryParserResourceProvider implementation that can be passed zero to many ResourceProvider instances to override and optionally localize the default resource messages.
nightowl888
-
2021/05/04
[lucenenet] 01/04: BREAKING: Lucene.Net.QueryParser: Factored out NLS/IMessage/Message support and changed exceptions to use string messages so end users can elect whether to use .NET localization or not
nightowl888
-
2021/05/04
[lucenenet] 02/04: BREAKING: Lucene.Net.QueryParsers.Flexible.Messages: Removed entire namespace, as we have refactored to use .NET localization rather than NLS
nightowl888
-
2021/05/04
[lucenenet] 03/04: BREAKING: Lucene.Net.Util: Removed BundleResourceManagerFactory and IResourceManagerFactory, as these were only to support NLS
nightowl888
-
2021/05/03
[lucenenet] 01/02: Lucene.Net.Index.ReadersAndUpdates: Changed to use BinaryDocValuesField.TYPE instead of BinaryDocValuesField.fType.
nightowl888
-
2021/05/03
[lucenenet] branch master updated (ad573c6 -> fb04740)
nightowl888
-
2021/05/02
[lucenenet] branch master updated: Lucene.Net.Documents.FieldType::Freeze(): Changed from void return to return this FieldType. Chained the Freeze() method in all static field initializers of Field subclasses to eliminate extra helper load methods. Marked BinaryDocValuesField.fType static field obsolete and added TYPE static field as it was in Lucene.
nightowl888
-
2021/05/02
[lucenenet] branch master updated: BREAKING: Lucene.Net.Index.Term: Changed Text() method into Text property. Added an obsolete Text() extension method to Lucene.Net.Index for backward compatibility.
nightowl888
-
2021/05/02
[lucenenet] branch master updated (807ce0b -> 221fa4a)
nightowl888
-
2021/05/02
[lucenenet] 01/02: BREAKING: Changed all Cardinality() methods into properties named Cardinality. Types affected: FixedBitSet, Int64BitSet, OpenBitSet, PForDeltaDocIdSet, RandomAccessOrds, WAH8DocIdSet. Added obsolete extension methods for each type in the same namespace as each type, but do note this only works if the namespace is imported at the top of the file.
nightowl888
-
2021/05/02
[lucenenet] branch master updated (da70e1e -> 807ce0b)
nightowl888
-
2021/05/02
[lucenenet] 02/02: Lucene.Net.Support: Factored out BitArrayExtensions and replaced all occurrences of BitArray with BitSet. Removed FEATURE_BITARRAY_COPYTO.
nightowl888
-
2021/05/02
[lucenenet] branch master updated: Lucene.Net.Join: Moved entire namespace to Lucene.Net.Search.Join to match Lucene. Added duplicates of the public types in Lucene.Net.Join and marked them Obsolete and hidden from Intellisense so this is not a breaking change.
nightowl888
-
2021/04/26
[lucenenet] branch master updated (7d83836 -> 29381d5)
nightowl888
-
2021/04/21
[lucenenet] 02/03: .github/workflows/Lucene-Net-Website.yml: Run action whenever any nested file below websites/site is added/edited
nightowl888
-
2021/04/21
[lucenenet] 03/03: .github/workflows/Lucene-Net-Website.yml: Run job only if we are pushing to the main fork. All other forks will ignore this action.
nightowl888
-
2021/04/21
[lucenenet] branch master updated (4156f7a -> 7d83836)
nightowl888
-
2021/04/21
[lucenenet] 01/03: .github/workflows/Lucene-Net-Website.yml: Don't run action when adding/updating this YAML file
nightowl888
-
2021/04/21
[lucenenet] 06/06: Lucene.Net.TestFramework: Changed references of RandomGaussian() to use RandomizedTesting.Generators. Also changed incorrect references to NextDouble() to use NextGaussian() where appropriate.
nightowl888
-
2021/04/21
[lucenenet] 02/06: Lucene.Net.TestFramework: Removed random generation code from TestUtil in favor of using RandomizedTesting.Generators
nightowl888
-
2021/04/21
[lucenenet] 04/06: Lucene.Net.TestFramework: Removed FEATURE_RANDOMIZEDCONTEXT and deleted all files related to randomizedtesting
nightowl888
-
2021/04/21
[lucenenet] 03/06: Lucene.Net.TestFramework: Removed RandomizedTest stub class and move the methods into LuceneTestCase
nightowl888
-
2021/04/21
[lucenenet] branch master updated (fce576a -> 4156f7a)
nightowl888
-
2021/04/21
[lucenenet] 01/06: Dependencies.props: Updated J2N to 2.0.0-beta-0013 and RandomizedTesting.Generators to 2.7.8-beta-0001
nightowl888
-
2021/04/21
[lucenenet] 05/06: Lucene.Net.TestFramework.Util.TestUtil: Renamed random method parameters, added aggressive inlining, added documentation
nightowl888
-
2021/04/21
[lucenenet] 09/11: Added benchmarks for 4.8.0-beta00014
nightowl888
-
2021/04/21
[lucenenet] 04/11: Lucene.Net.Tests.BenchmarkDotNet: Added jobs for 4.8.0-beta00011
nightowl888
-
2021/04/21
[lucenenet] 03/11: Lucene.Net.Tests.BenchmarkDotNet: Added benchmarks for IndexFiles and SearchFiles
nightowl888
-
2021/04/21
[lucenenet] 06/11: Lucene.Net.Tests.BenchmarkDotNet: Added benchmarks for 4.8.0-beta00012
nightowl888
-
2021/04/21
[lucenenet] 10/11: BenchmarkDotNet: Centralized build configuration logic so we can add a new version in just one place. Also, include a LocalBuild in the benchmarks so we can compare to the current source code.
nightowl888
-
2021/04/21
[lucenenet] 05/11: Added benchmarks for facet operations using Lucene.Net.Demo.Facet classes as a basis
nightowl888
-
2021/04/21
[lucenenet] 07/11: Lucene.Net.Tests.BenchmarkDotNet.SearchFilesBenchmarks: Increased number of iterations from 1000 to 2000 for better accuracy
nightowl888
-
2021/04/21
[lucenenet] 02/11: Lucene.Net.Tests.BenchmarkDotNet: Updated HomePageScripBenchmarks to include beta 5, beta 6, and beta 10
nightowl888
-
2021/04/21
[lucenenet] 01/11: Adds simple benchmark between nuget versions
nightowl888
-
2021/04/21
[lucenenet] 11/11: BenchmarkDotNet: added NamespacePatch.cs file to define namespaces that didn't exist in old versions of Lucene.NET
nightowl888
-
2021/04/21
[lucenenet] 08/11: Added benchmarks for 4.8.0-beta00013
nightowl888
-
2021/04/19
[lucenenet] branch master updated: Moved "benchmark" tests that cannot fail (see #349) to the nightly build to reduce testing time
nightowl888
-
2021/04/18
[lucenenet-site] 01/01: Merge pull request #18 from apache/task/website-build-4b728a5f929e2aa15b7ed9744859b99c7cf013b9
shazwazza
-
2021/04/18
[lucenenet-site] branch asf-site updated (f9bdae4 -> 82ae7c4)
shazwazza
-
2021/04/18
[lucenenet-site] branch task/website-build-4b728a5f929e2aa15b7ed9744859b99c7cf013b9 created (now 7c5003f)
shazwazza
-
2021/04/18
[lucenenet] branch master updated: Updates apidocs release docs
shazwazza
-
2021/04/18
[lucenenet] branch master updated (d228ad2 -> e3e16d5)
shazwazza
-
2021/04/18
[lucenenet-site] branch task/website-build-c3d2713dee94a16734aa612a58a36afeed598adf created (now b1b49e7)
shazwazza
-
2021/04/17
[lucenenet] branch docs/4.8.0-beta00014 updated (299f014 -> de8efb2)
nightowl888
-
2021/04/17
[lucenenet] 02/03: `FieldType.cs` comments correction/improvement
nightowl888
-
2021/04/17
[lucenenet] 03/03: Lucene.Net.Document.FieldType: Upadated doc comments
nightowl888
-
2021/04/17
[lucenenet] 01/03: docs: Lucene.Net.QueryParser + Lucene.Net.Replicator: Fixed formatting and code snippets so they are readable, fixed many broken links (see #284, #300)
nightowl888
-
2021/04/17
[lucenenet] 01/02: `FieldType.cs` comments correction/improvement
nightowl888
-
2021/04/17
[lucenenet] 02/02: Lucene.Net.Document.FieldType: Upadated doc comments
nightowl888
-
2021/04/17
[lucenenet] branch master updated (f44e3b9 -> d228ad2)
nightowl888
-
2021/04/16
[lucenenet] branch master updated: docs: Lucene.Net.QueryParser + Lucene.Net.Replicator: Fixed formatting and code snippets so they are readable, fixed many broken links (see #284, #300)
nightowl888
-
2021/04/15
[lucenenet] branch master updated: BREAKING: Moved all Document extensions to the Lucene.Net.Documents.Extensions namespace. Added tests for DocumentExtensions in Lucene.Net.Tests._J-S, Lucene.Net.Tests.ICU and Lucene.Net.Tests.Facet. Added guard clauses and updated documentation of Document extension methods and some related fields. Closes #407.
nightowl888
-
2021/04/14
[lucenenet] branch master updated (29952dd -> 6a833fd)
nightowl888
-
2021/04/14
[lucenenet] branch master updated: PERFORMANCE: Lucene.Net.Queries.Mlt.MoreLikeThis: Fixed boxing issues with RetrieveTerms() and RetrieveInterestingTerms() methods by changing object[] to a class named ScoreTerm (same refactoring as Lucene 8.2.0).
nightowl888
-
2021/04/14
[lucenenet] 01/02: Lucene.Net.CodeAnalysis: Added Version.props file to make it possible to manually bump the assembly number by one revision on any code change (VS requires this, see: https://github.com/dotnet/roslyn/issues/4381#issuecomment-342867710).
nightowl888
-
2021/04/14
[lucenenet] 02/02: Lucene.Net.CodeAnalysis: Downgraded from .NET Standard 2.0 to .NET Standard 1.3 to support VS2017. Added missing dependencies on Microsoft.CodeAnalysis.CSharp and Microsoft.CodeAnalysis.VisualBasic and adjusted version numbers using this reference: https://roslyn-analyzers.readthedocs.io/en/latest/how-to-start.html. (fixes #394)
nightowl888
-
2021/04/12
[lucenenet] branch master updated: .editorconfig: Fixed single line blocks (such as auto-implemented properties) so they stay on a single line
nightowl888
-
2021/04/08
[lucenenet] branch master updated: PERFORMANCE: Lucene.Net.IndexWriter.ReaderPool: Swapped in ConcurrentDictionary<TKey, TValue> instead of Dictionary<TKey, TValue> to take advantage of the fact ConcurrentDictionary supports deleting while iterating. Also added conditional support to use a non-concurrent Dictionary if/when we add a target for .NET Core/.NET 5/.NET 6.
nightowl888
-
2021/04/07
[lucenenet] branch master updated: BUG: Lucene.Net.Codecs.SimpleText (SimpleTextStoredFieldsWriter + SimpleTextTermVectorsWriter): Fixed Abort() methods to correctly swallow any exceptions thrown by Dispose().
nightowl888
-
2021/04/05
[lucenenet] branch master updated: Lucene.Net.Analysis.OpenNLP: Upgraded NuGet package dependency to OpenNLP.NET 1.9.1.1 and updated the projects to sign the Lucene.Net.Analysis.OpenNLP and Lucene.Net.Analysis.Tests.OpenNLP assemblies.
nightowl888
-
2021/04/05
[lucenenet] 07/08: Lucene.Net.Tests.Cli: Added InstallationTest to install lucene-cli and run it to ensure it can be installed and has basic functionality. (See #453)
nightowl888
-
2021/04/05
[lucenenet] 06/08: BREAKING: Changed exit codes to well-defined constants to make testing simpler
nightowl888
-
2021/04/05
[lucenenet] 04/08: Lucene.Net.Tests.Cli.Configuration.TestConfigurationSettings: Renamed ConfigurationSettingsTest to follow naming conventions of this project.
nightowl888
-
2021/04/05
[lucenenet] 08/08: run-tests-on-os.yml: Download the lucene-cli NuGet package on the test server, since it is required by installation tests (See #453)
nightowl888
-
2021/04/05
[lucenenet] 03/08: Lucene.Net.Cli.Configuration.TestConfigurationSettings: Added [LuceneNetSpecifc] attribute
nightowl888
-
2021/04/05
[lucenenet] 02/08: lucene-cli: Made appsettings.json file optional (See #453)
nightowl888
-
2021/04/05
[lucenenet] 05/08: BUG: Lucene.Net.Tests.Cli.EnvironmentTest: Subclass LuceneTestCase or NUnit won't locate our tests
nightowl888
-
2021/04/05
[lucenenet] branch master updated (ffaf565 -> 2b9716f)
nightowl888
-
2021/04/05
[lucenenet] 01/08: lucene-cli: Added appsettings.json file with the default settings. (See #453)
nightowl888
-
2021/04/05
[lucenenet] 06/06: Improved approach of fixing bug in newly added Grouping unit tests on unix.
nightowl888
-
2021/04/05
[lucenenet] 04/06: Added missing [Test] tag to a recently added Grouping test
nightowl888
-
2021/04/05
[lucenenet] 05/06: Fixed issue with newly added Grouping Tests not passing in Unix.
nightowl888
-
2021/04/05
[lucenenet] branch master updated (94b0e3c -> ffaf565)
nightowl888
-
2021/04/05
[lucenenet] 02/06: Added Additional GroupingSearch tests to demonstrate usage.
nightowl888
-
2021/04/05
[lucenenet] 01/06: Fixed casting bug in grouping search
nightowl888
-
2021/04/05
[lucenenet] 03/06: Made minor changes to comments related to Grouping Search
nightowl888
-
2021/03/30
[lucenenet] branch docs/4.8.0-beta00014 updated (98dd151 -> 299f014)
nightowl888
-
2021/03/30
[lucenenet] 12/15: docs: Lucene.Net.Spatial: Fixed broken formatting and links (see #284, #300)
nightowl888
-
2021/03/30
[lucenenet] 11/15: docs: Lucene.Net.QueryParser: Fixed broken formatting and links (see #284, #300)
nightowl888
-
2021/03/30
[lucenenet] 07/15: docs: Lucene.Net.Grouping: Fixed broken formatting and links (see #284, #300)
nightowl888
-
2021/03/30
[lucenenet] 10/15: docs: Lucene.Net.Misc: Fixed broken formatting and links (see #284, #300)
nightowl888
-
2021/03/30
[lucenenet] 08/15: docs: Lucene.Net.Highlighter: Fixed broken formatting and links (see #284, #300)
nightowl888
-
2021/03/30
[lucenenet] 01/15: docs: lucene-cli: Fixed command formatting and warnings to use DocFx formatting
nightowl888
-
2021/03/30
[lucenenet] 09/15: docs: Lucene.Net.Join: Fixed broken formatting and links (see #284, #300)
nightowl888
-
2021/03/30
[lucenenet] 15/15: docs: websites/apidocs/index.md: Updated links to OpenNLP and Highlighter projects, commented TODO work
nightowl888
-
2021/03/30
[lucenenet] 03/15: docs: Lucene.Net.Analysis.Common/Collation/TokeAttributes/package.md: Fixed broken link (see #300)
nightowl888
-
2021/03/30
[lucenenet] 04/15: docs: Lucene.Net.Analysis (submodules): Fixed broken formatting and links (see #284, #300)
nightowl888
-
2021/03/30
[lucenenet] 14/15: docs: Lucene.Net/overview.md: Changed fenced code block to console style
nightowl888
-
2021/03/30
[lucenenet] 05/15: docs: Lucene.Net.Expressions: Fixed broken formatting and links (see #284, #300)
nightowl888
-
2021/03/30
[lucenenet] 13/15: docs: Lucene.Net.TestFramework: Fixed broken formatting and links (see #284, #300)
nightowl888
-
2021/03/30
[lucenenet] 06/15: docs: Lucene.Net.Facet: Fixed broken formatting and links (see #284, #300)
nightowl888
-
2021/03/30
[lucenenet] 02/15: docs: migration-guide.md: Fixed formatting so code examples are inside of lists and lists continue after the code
nightowl888
-
2021/03/30
[lucenenet] branch master updated (7f40e2f -> 299f014)
nightowl888
-
2021/03/29
[lucenenet-site] branch asf-site updated: New website version built
nightowl888
-
2021/03/29
[lucenenet-site] branch task/website-build-0b9fb20d55c2989fda5a8b77be726e32b3321e6f created (now ffdf6b1)
shazwazza
-
2021/03/29
[lucenenet] 01/01: README.md, index.md: Updated to 4.8.0-beta00014, fixed minor branding issues
nightowl888
-
2021/03/29
[lucenenet] branch master updated (adc0e6a -> 7f40e2f)
nightowl888
-
2021/03/28
[lucenenet-site] branch asf-site updated: New website version built
nightowl888
-
2021/03/28
[lucenenet-site] branch task/website-build-ba2a0dd93d3b2a568e161558db387c498db8bf91 created (now 72ee481)
shazwazza
-
2021/03/28
[lucenenet] 01/02: website: Updated copyright date on footer
nightowl888
-
2021/03/28
[lucenenet] 02/02: website: Added link for 4.8.0-beta00014 API docs
nightowl888
-
2021/03/28
[lucenenet] branch docs/4.8.0-beta00014 updated (2f2f11b -> 98dd151)
nightowl888
-
2021/03/28
[lucenenet] branch docs/4.8.0-beta00014 updated (0042f57 -> 2f2f11b)
nightowl888
-
2021/03/28
[lucenenet] 02/02: docs: Built for 4.8.0-beta00014 release with post-release updates
nightowl888
-
2021/03/28
[lucenenet] 01/02: Merge branch 'master' into docs/4.8.0-beta00014
nightowl888
-
2021/03/28
[lucenenet] 06/06: docs: Changed breadcrumb link to "_api" so we can update it without also updating "_rel", which all of the styles and js links use.
nightowl888
-
2021/03/28
[lucenenet] 01/06: docs: Lucene.Net/Index/package.md: Fixed broken formatting and links (see #284, #300)
nightowl888
-
2021/03/28
[lucenenet] 03/06: docs: Lucene.Net.Analysis.Common: Fixed broken formatting and links (see #284, #300)
nightowl888
-
2021/03/28
[lucenenet] branch master updated (eff154a -> adc0e6a)
nightowl888
-
2021/03/28
[lucenenet] 02/06: docs: Lucene.Net: Fixed remaining broken formatting and links (see #284, #300)
nightowl888
-
2021/03/28
[lucenenet] 05/06: docs.ps1: Update the version in toc/toc.yml on build
nightowl888
-
2021/03/28
[lucenenet] 04/06: docs: Lucene.Net.ICU: Restructured documentation and fixed broken formatting and links (see #284, #300)
nightowl888
-
2021/03/28
[lucenenet] 03/04: GitHub home page messaging to communicate the strength and stability of the beta.
nightowl888