You are viewing a plain text version of this content. The canonical link for it is here.
- [lucenenet] branch master updated: PERFORMANCE: Lucene.Net.Tartarus.Snowball: Refactored to use Func instead of a Reflection call to execute stemmer code as in the original C# port: https://github.com/snowballstem/snowball - posted by ni...@apache.org on 2021/04/04 20:53:18 UTC, 0 replies.
- [lucenenet] branch master updated (94b0e3c -> ffaf565) - posted by ni...@apache.org on 2021/04/05 20:00:59 UTC, 0 replies.
- [lucenenet] 01/06: Fixed casting bug in grouping search - posted by ni...@apache.org on 2021/04/05 20:01:00 UTC, 0 replies.
- [lucenenet] 02/06: Added Additional GroupingSearch tests to demonstrate usage. - posted by ni...@apache.org on 2021/04/05 20:01:01 UTC, 0 replies.
- [lucenenet] 03/06: Made minor changes to comments related to Grouping Search - posted by ni...@apache.org on 2021/04/05 20:01:02 UTC, 0 replies.
- [lucenenet] 04/06: Added missing [Test] tag to a recently added Grouping test - posted by ni...@apache.org on 2021/04/05 20:01:03 UTC, 0 replies.
- [lucenenet] 05/06: Fixed issue with newly added Grouping Tests not passing in Unix. - posted by ni...@apache.org on 2021/04/05 20:01:04 UTC, 0 replies.
- [lucenenet] 06/06: Improved approach of fixing bug in newly added Grouping unit tests on unix. - posted by ni...@apache.org on 2021/04/05 20:01:05 UTC, 0 replies.
- [lucenenet] branch master updated (ffaf565 -> 2b9716f) - posted by ni...@apache.org on 2021/04/05 20:02:27 UTC, 0 replies.
- [lucenenet] 01/08: lucene-cli: Added appsettings.json file with the default settings. (See #453) - posted by ni...@apache.org on 2021/04/05 20:02:28 UTC, 0 replies.
- [lucenenet] 02/08: lucene-cli: Made appsettings.json file optional (See #453) - posted by ni...@apache.org on 2021/04/05 20:02:29 UTC, 0 replies.
- [lucenenet] 03/08: Lucene.Net.Cli.Configuration.TestConfigurationSettings: Added [LuceneNetSpecifc] attribute - posted by ni...@apache.org on 2021/04/05 20:02:30 UTC, 0 replies.
- [lucenenet] 04/08: Lucene.Net.Tests.Cli.Configuration.TestConfigurationSettings: Renamed ConfigurationSettingsTest to follow naming conventions of this project. - posted by ni...@apache.org on 2021/04/05 20:02:31 UTC, 0 replies.
- [lucenenet] 05/08: BUG: Lucene.Net.Tests.Cli.EnvironmentTest: Subclass LuceneTestCase or NUnit won't locate our tests - posted by ni...@apache.org on 2021/04/05 20:02:32 UTC, 0 replies.
- [lucenenet] 06/08: BREAKING: Changed exit codes to well-defined constants to make testing simpler - posted by ni...@apache.org on 2021/04/05 20:02:33 UTC, 0 replies.
- [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) - posted by ni...@apache.org on 2021/04/05 20:02:34 UTC, 0 replies.
- [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) - posted by ni...@apache.org on 2021/04/05 20:02:35 UTC, 0 replies.
- [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. - posted by ni...@apache.org on 2021/04/05 20:13:50 UTC, 0 replies.
- [lucenenet] branch master updated: BUG: Lucene.Net.Codecs.SimpleText (SimpleTextStoredFieldsWriter + SimpleTextTermVectorsWriter): Fixed Abort() methods to correctly swallow any exceptions thrown by Dispose(). - posted by ni...@apache.org on 2021/04/07 15:15:15 UTC, 0 replies.
- [lucenenet] branch master updated: PERFORMANCE: Lucene.Net.IndexWriter.ReaderPool: Swapped in ConcurrentDictionary instead of Dictionary 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. - posted by ni...@apache.org on 2021/04/08 11:53:36 UTC, 0 replies.
- [lucenenet] branch master updated: .editorconfig: Fixed single line blocks (such as auto-implemented properties) so they stay on a single line - posted by ni...@apache.org on 2021/04/12 23:49:16 UTC, 0 replies.
- [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). - posted by ni...@apache.org on 2021/04/15 02:40:44 UTC, 0 replies.
- [lucenenet] branch master updated (29952dd -> 6a833fd) - posted by ni...@apache.org on 2021/04/15 02:40:49 UTC, 0 replies.
- [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). - posted by ni...@apache.org on 2021/04/15 02:40:50 UTC, 0 replies.
- [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) - posted by ni...@apache.org on 2021/04/15 02:40:51 UTC, 0 replies.
- [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. - posted by ni...@apache.org on 2021/04/16 06:21:01 UTC, 0 replies.
- [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) - posted by ni...@apache.org on 2021/04/16 15:30:28 UTC, 0 replies.
- [lucenenet-site] branch asf-site updated: Updated API docs for 4.8.0-beta00014 with changes from apache/lucenenet#469 - posted by ni...@apache.org on 2021/04/17 06:19:58 UTC, 0 replies.
- [lucenenet] branch master updated (f44e3b9 -> d228ad2) - posted by ni...@apache.org on 2021/04/17 21:34:23 UTC, 0 replies.
- [lucenenet] 01/02: `FieldType.cs` comments correction/improvement - posted by ni...@apache.org on 2021/04/17 21:34:24 UTC, 0 replies.
- [lucenenet] 02/02: Lucene.Net.Document.FieldType: Upadated doc comments - posted by ni...@apache.org on 2021/04/17 21:34:25 UTC, 0 replies.
- [lucenenet-site] branch asf-site updated: Updated API docs for 4.8.0-beta00014 with changes from apache/lucenenet#471 - posted by ni...@apache.org on 2021/04/17 23:06:30 UTC, 0 replies.
- [lucenenet] branch docs/4.8.0-beta00014 updated (299f014 -> de8efb2) - posted by ni...@apache.org on 2021/04/17 23:06:49 UTC, 0 replies.
- [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) - posted by ni...@apache.org on 2021/04/17 23:06:50 UTC, 0 replies.
- [lucenenet] 02/03: `FieldType.cs` comments correction/improvement - posted by ni...@apache.org on 2021/04/17 23:06:51 UTC, 0 replies.
- [lucenenet] 03/03: Lucene.Net.Document.FieldType: Upadated doc comments - posted by ni...@apache.org on 2021/04/17 23:06:52 UTC, 0 replies.
- [lucenenet-site] branch task/website-build-c3d2713dee94a16734aa612a58a36afeed598adf created (now b1b49e7) - posted by sh...@apache.org on 2021/04/19 02:32:26 UTC, 0 replies.
- [lucenenet] branch master updated (d228ad2 -> e3e16d5) - posted by sh...@apache.org on 2021/04/19 02:34:17 UTC, 0 replies.
- [lucenenet] branch master updated: Updates apidocs release docs - posted by sh...@apache.org on 2021/04/19 02:54:16 UTC, 0 replies.
- [lucenenet-site] branch task/website-build-4b728a5f929e2aa15b7ed9744859b99c7cf013b9 created (now 7c5003f) - posted by sh...@apache.org on 2021/04/19 03:10:29 UTC, 0 replies.
- [lucenenet-site] branch asf-site updated (f9bdae4 -> 82ae7c4) - posted by sh...@apache.org on 2021/04/19 03:12:13 UTC, 0 replies.
- [lucenenet-site] 01/01: Merge pull request #18 from apache/task/website-build-4b728a5f929e2aa15b7ed9744859b99c7cf013b9 - posted by sh...@apache.org on 2021/04/19 03:12:14 UTC, 0 replies.
- [lucenenet] branch master updated: Moved "benchmark" tests that cannot fail (see #349) to the nightly build to reduce testing time - posted by ni...@apache.org on 2021/04/20 06:16:35 UTC, 0 replies.
- [lucenenet] branch benchmarkdotnet updated (69ce2a1 -> 9cd3408) - posted by ni...@apache.org on 2021/04/21 08:35:37 UTC, 0 replies.
- [lucenenet] 01/11: Adds simple benchmark between nuget versions - posted by ni...@apache.org on 2021/04/21 08:35:38 UTC, 0 replies.
- [lucenenet] 02/11: Lucene.Net.Tests.BenchmarkDotNet: Updated HomePageScripBenchmarks to include beta 5, beta 6, and beta 10 - posted by ni...@apache.org on 2021/04/21 08:35:39 UTC, 0 replies.
- [lucenenet] 03/11: Lucene.Net.Tests.BenchmarkDotNet: Added benchmarks for IndexFiles and SearchFiles - posted by ni...@apache.org on 2021/04/21 08:35:40 UTC, 0 replies.
- [lucenenet] 04/11: Lucene.Net.Tests.BenchmarkDotNet: Added jobs for 4.8.0-beta00011 - posted by ni...@apache.org on 2021/04/21 08:35:41 UTC, 0 replies.
- [lucenenet] 05/11: Added benchmarks for facet operations using Lucene.Net.Demo.Facet classes as a basis - posted by ni...@apache.org on 2021/04/21 08:35:42 UTC, 0 replies.
- [lucenenet] 06/11: Lucene.Net.Tests.BenchmarkDotNet: Added benchmarks for 4.8.0-beta00012 - posted by ni...@apache.org on 2021/04/21 08:35:43 UTC, 0 replies.
- [lucenenet] 07/11: Lucene.Net.Tests.BenchmarkDotNet.SearchFilesBenchmarks: Increased number of iterations from 1000 to 2000 for better accuracy - posted by ni...@apache.org on 2021/04/21 08:35:44 UTC, 0 replies.
- [lucenenet] 08/11: Added benchmarks for 4.8.0-beta00013 - posted by ni...@apache.org on 2021/04/21 08:35:45 UTC, 0 replies.
- [lucenenet] 09/11: Added benchmarks for 4.8.0-beta00014 - posted by ni...@apache.org on 2021/04/21 08:35:46 UTC, 0 replies.
- [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. - posted by ni...@apache.org on 2021/04/21 08:35:47 UTC, 0 replies.
- [lucenenet] 11/11: BenchmarkDotNet: added NamespacePatch.cs file to define namespaces that didn't exist in old versions of Lucene.NET - posted by ni...@apache.org on 2021/04/21 08:35:48 UTC, 0 replies.
- [lucenenet] branch master updated (fce576a -> 4156f7a) - posted by ni...@apache.org on 2021/04/21 11:59:03 UTC, 0 replies.
- [lucenenet] 01/06: Dependencies.props: Updated J2N to 2.0.0-beta-0013 and RandomizedTesting.Generators to 2.7.8-beta-0001 - posted by ni...@apache.org on 2021/04/21 11:59:04 UTC, 0 replies.
- [lucenenet] 02/06: Lucene.Net.TestFramework: Removed random generation code from TestUtil in favor of using RandomizedTesting.Generators - posted by ni...@apache.org on 2021/04/21 11:59:05 UTC, 0 replies.
- [lucenenet] 03/06: Lucene.Net.TestFramework: Removed RandomizedTest stub class and move the methods into LuceneTestCase - posted by ni...@apache.org on 2021/04/21 11:59:06 UTC, 0 replies.
- [lucenenet] 04/06: Lucene.Net.TestFramework: Removed FEATURE_RANDOMIZEDCONTEXT and deleted all files related to randomizedtesting - posted by ni...@apache.org on 2021/04/21 11:59:07 UTC, 0 replies.
- [lucenenet] 05/06: Lucene.Net.TestFramework.Util.TestUtil: Renamed random method parameters, added aggressive inlining, added documentation - posted by ni...@apache.org on 2021/04/21 11:59:08 UTC, 0 replies.
- [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. - posted by ni...@apache.org on 2021/04/21 11:59:09 UTC, 0 replies.
- [lucenenet] branch master updated (4156f7a -> 7d83836) - posted by ni...@apache.org on 2021/04/22 03:37:55 UTC, 0 replies.
- [lucenenet] 01/03: .github/workflows/Lucene-Net-Website.yml: Don't run action when adding/updating this YAML file - posted by ni...@apache.org on 2021/04/22 03:37:56 UTC, 0 replies.
- [lucenenet] 02/03: .github/workflows/Lucene-Net-Website.yml: Run action whenever any nested file below websites/site is added/edited - posted by ni...@apache.org on 2021/04/22 03:37:57 UTC, 0 replies.
- [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. - posted by ni...@apache.org on 2021/04/22 03:37:58 UTC, 0 replies.
- [lucenenet] branch master updated (7d83836 -> 29381d5) - posted by ni...@apache.org on 2021/04/26 09:24:49 UTC, 0 replies.