73
I Use This!
Activity Not Available

Commits : Listings

Analyzed about 1 year ago. based on code collected about 1 year ago.
Jan 17, 2023 — Jan 17, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Lucene.Net.Index.TestIndexWriterOnJRECrash::TestNRTThreads_Mem(): Added [AwaitsFix] attribute because this test fails intermittently (see #894). More... about 1 year ago
.build/dependencies.props: Upgraded TimeZoneConverter to 6.1.0. This is only used in tests. More... about 1 year ago
Added GitHub Issue and PR templates to improve usability and automatically tag issues appropriately (#885) More... over 1 year ago
Lucene.Net.Store.LockStessTest: Suppressed SonarCloud S2245 because the Random class is only used to generate a timeout (#882) More... over 1 year ago
Lucene.Net.Util.Events.TestPubSubEvent::CanAddSubscriptionWhileEventIsFiring(): Ignored. This test has failed since #875 was submitted. Unfortunately, we had no way of knowing that this test was flakey until we inherited it. (#884) More... over 1 year ago
Lucene.Net.Support.RectangularArrays: Fixed encoding issue that was preventing SonarCloud from analyzing the file (#880) More... over 1 year ago
TagSoup.Parser: Suppressed SonarCloud S5332 because the URLs are only used for naming purposes (#881) More... over 1 year ago
.github/workflows/sonar.yml: Updated sonar cache location according to https://community.sonarsource.com/t/set-cache-location-for-sonar-scanner/14451 More... over 1 year ago
.github/workflows/sonar.yml: Restore caches for packages and scanner More... over 1 year ago
.github/workflows/sonar.yml: Update from sonar.login to sonar.token More... over 1 year ago
.github/workflows/sonar.yml: Use latest version of the scanner More... over 1 year ago
.github/workflows/sonar.yml: Disable caching (for now) and only create directory if it doesn't already exist (#879) More... over 1 year ago
.github/workflows/sonar.yml: Reverted to using dotnet-sonarscanner 5.8.0 to see whether we still get a non zero exit code (#878) More... over 1 year ago
Lucene.Net.Util.OfflineSorter::DEFAULT_TEMP_DIR: Added suppression of SonarCloud S5443 because we are not writing predictable temp file names and allow using a different directory. (#877) More... over 1 year ago
Lucene.Net.Util.PriorityQueue: Removed [Serializable] attribute. Binary serialization is obsolete in .NET 6+, and serialization didn't technically support extension anyway because it was missing the virtual GetObjectData and OnDeserialization methods and deserialization constructor. (#876) More... over 1 year ago
Removed dependency on Prism.Core (Fixes #872) (#875) More... over 1 year ago
Update tutorial.md More... over 1 year ago
Update introduction.md More... over 1 year ago
ci: Update `sonar.login` to `sonar.token` More... over 1 year ago
ci: Update action versions More... over 1 year ago
Fix two typos in quick-start introduction.md More... over 1 year ago
Update index.md More... over 1 year ago
Lucene.Net.Store (BaseDirectory + BaseDirectoryWrapper): Fixed XML comments so they don't produce warnings More... over 1 year ago
Lucene.Net.Store.OutputStreamDataOutput: Allow double-dispose calls and guard against usage after Dispose(). See #265. More... over 1 year ago
Lucene.Net.Store.InputStreamDataInput: Allow double-dispose calls and guard against usage after Dispose(). See #265. More... over 1 year ago
Lucene.Net.Store.RateLimitedIndexOutput: Allow double-dispose calls and guard against usage after Dispose(). See #265. More... over 1 year ago
Lucene.Net.Store.BufferedIndexOutput: Allow double-dispose calls and guard against usage after Dispose(). See #265. More... over 1 year ago
Lucene.Net.Codecs.MultiLevelSkipListReader: Allow double-dispose calls and guard against usage after Dispose(). See #265. More... over 1 year ago
Lucene.Net.Store (Directory + MMapDirectory + NIOFSDirectory + SimpleFSDirectory): Upgraded all FSDirectories to allow multiple Dispose() calls on IndexInputSlicer and BufferedIndexInput subclasses. See #265. More... over 1 year ago
BUG: Lucene.Net.Store.NRTCachingDirectory: Don't throw exceptions when Dispose() is called multiple times. Also added checks to ensure an ObjectDisposedException is thrown by any method call after Dispose() is called. Fixed all other directory implementations and made the check atomic so only the first call to Dispose() is run. Fixes #841. Related to #265. More... over 1 year ago