You are viewing a plain text version of this content. The canonical link for it is here.
Posted to builds@lucenenet.apache.org by Azure DevOps <az...@microsoft.com.INVALID> on 2021/03/14 18:40:47 UTC

[Build failed] Lucene.NET-Nightly - apache/lucenenet:master - Lucene.NET - ec65e26c

[Build failed] Lucene.NET-Nightly - apache/lucenenet:master - Lucene.NET -
ec65e26c

|  |  |  |
![Microsoft](https://cdn.vsassets.io/content/notifications/v3/microsoft.png) |
Azure DevOps  
---|---  
|  |  |  | ![](https://cdn.vsassets.io/content/notifications/icon-
failure-20.png) | Build #4.8.0-nightly0000001419 failed  
---|---  
Lucene.NET-Nightly  
      
    
    Ran for 100 minutes  
  
|  |  [ View results ](https://dev.azure.com/lucene-
net/web/build.aspx?pcguid=4b707bf5-2753-424a-a77b-44992ecbed30&builduri=vstfs%3a%2f%2f%2fBuild%2fBuild%2f195&tracking_data=eyJTb3VyY2UiOiJFbWFpbCIsIlR5cGUiOiJOb3RpZmljYXRpb24iLCJTSUQiOiIyMjA0NTAiLCJTVHlwZSI6IkdSUCIsIlJlY2lwIjoxLCJfeGNpIjp7Ik5JRCI6Mzk1MzExOTksIk1SZWNpcCI6Im0wPTEgIiwiQWN0IjoiNTkwZTQ2YmEtMzE4OS00ZTQwLWJiM2QtZjU3Mzk0YzQ2NTY4In0sIkVsZW1lbnQiOiJoZXJvL2N0YSJ9)  
---  
|  |  |  |  Summary  
---  
| Build pipeline | Lucene.NET-Nightly  
---|---  
Finished | Sun, Mar 14 2021 18:40:30 GMT+00:00  
Reason | Schedule  
|  |  Details  
---  
| Publish_Azure_Artifacts  
---  
| 0 error(s), 0 warning(s)  
---  
Build Release Artifacts for [VOTE]  
| 0 error(s), 0 warning(s)  
---  
Docs  
| 0 error(s), 0 warning(s)  
---  
Website  
| 0 error(s), 0 warning(s)  
---  
Build  
| 0 error(s), 0 warning(s)  
---  
Test net5.0,x64 on  
| 0 error(s), 0 warning(s)  
---  
Test net48,x86 on Windows  
| 0 error(s), 0 warning(s)  
---  
Test net5.0,x86 on  
| 0 error(s), 0 warning(s)  
---  
Test netcoreapp3.1,x64 on  
| 0 error(s), 0 warning(s)  
---  
Test net48,x64 on Windows  
| 0 error(s), 0 warning(s)  
---  
Test netcoreapp2.1,x86 on  
| 0 error(s), 0 warning(s)  
---  
Test netcoreapp3.1,x86 on  
| 1 error(s), 0 warning(s)  
---  
![](https://cdn.vsassets.io/content/notifications/icon-failure.png) |  Test
host process(es) crashed: Lucene.Net.Tests._E-I.  
Test netcoreapp2.1,x64 on  
| 0 error(s), 0 warning(s)  
---  
|  |  Test results  
---  
| Failed | 21  
---|---  
Passed | 139926  
Others | 1920  
Total tests | 141867  
Total run duration | 88 minutes  
|  |  Commits  
---  
|
[ec65e26c](https://github.com/apache/lucenenet/commit/ec65e26c1c89c80b7194860bf5d1b7eafbee757e)
|  PERFORMANCE: Lucene.Net.Search.Suggest.SortedInputEnumerator: Removed
unnecessary call to Reverse() and allocation of HashSet<T> that had been added
due to the fact our testing methodology didn't resp  |  NightOwl888  
---|---|---  
[1fa93124](https://github.com/apache/lucenenet/commit/1fa93124ee701ed41b699b9717a420061725ee76)
|  PERFORMANCE: Lucene.Net.Search.Suggest.Fst.FSTCompletion: Use Stack<T>
rather than List<T>.Reverse(). Also, removed unnecessary lock in
CheckExistingAndReorder(), as it is only used in a single thread  |
NightOwl888  
[11f1106d](https://github.com/apache/lucenenet/commit/11f1106d58d5a9a48d6d91cfeef4c743723a94ec)
|  Directory.Build.Targets: Added
FEATURE_DICTIONARY_REMOVE_CONTINUEENUMERATION so we can support this feature
in .NET 5.x + when we add a target.  |  NightOwl888  
[91732bc0](https://github.com/apache/lucenenet/commit/91732bc0fc97814d5f4606c0c74ff5833f6f0199)
|  Lucene.Net.Search.SearcherLifetimeManager: Added comment to indicate the
reason we use Lazy<T> is to make the create operation atomic. See #417.  |
NightOwl888  
[1ebfcadb](https://github.com/apache/lucenenet/commit/1ebfcadba68dd79c76ab0339950212c9782016b4)
|  Lucene.Net.TestFramework.Search.ShardSearchingTestBase: Display the
contents of the collection to the console using Collections.ToString().  |
NightOwl888  
[3aa91659](https://github.com/apache/lucenenet/commit/3aa916595c8164bbb4b13cba740c09c1ae079e6a)
|  Lucene.Net.Tests.Suggest.Spell.TestSpellChecker: Replaced ConcurrentBag<T>
with ConcurrentQueue<T> because we need to be sure the underlying
implementation guarantees order and the extra call to Rever  |  NightOwl888  
[8034e767](https://github.com/apache/lucenenet/commit/8034e76706e4bae87484d600c77311c98a5ee692)
|  Lucene.Net.Join.ToParentBlockJoinCollector: Changed from ConcurrentQueue<T>
to Queue<T> because we are dealing with a collection declared within the same
method so there is no reason for the extra ove  |  NightOwl888  
[0d2e3ace](https://github.com/apache/lucenenet/commit/0d2e3ace850391c5c31afbac7fe87463e2f8e434)
|  Lucene.Net.TestFramework.Util (LuceneTestCase + TestUtil): Refactored the
CleanupTemporaryFiles() method to be more in line with the original Java
implementation, including not allowing new files/dire  |  NightOwl888  
[5aa0915e](https://github.com/apache/lucenenet/commit/5aa0915e9172c5b434e7bcbba384fc3508f0d84e)
|  Lucene.Net.Analysis.OpenNLP.Tools.OpenNLPOpsFactory: Simplified logic by
using GetOrAdd() instead of TryGetValue. See #417.  |  NightOwl888  
[529748a1](https://github.com/apache/lucenenet/commit/529748a1d2d7bcff373ab1c526862eb917b4352c)
|  Lucene.Net.Spatial.Prefix.PrefixTreeFactory: Use Lazy<T> in
ConcurrentDictionary to make the valueFactory atomic. See #417. Fixes #319.  |
NightOwl888  
|  We sent you this notification on behalf of [Lucene.NET]\Lucene.NET Team.
[View](https://dev.azure.com/lucene-
net/_notifications?subscriptionId=220450&publisherId=ms.vss-build.build-event-
publisher&tracking_data=eyJTb3VyY2UiOiJFbWFpbCIsIlR5cGUiOiJOb3RpZmljYXRpb24iLCJTSUQiOiIyMjA0NTAiLCJTVHlwZSI6IkdSUCIsIlJlY2lwIjoxLCJfeGNpIjp7Ik5JRCI6Mzk1MzExOTksIk1SZWNpcCI6Im0wPTEgIiwiQWN0IjoiNTkwZTQ2YmEtMzE4OS00ZTQwLWJiM2QtZjU3Mzk0YzQ2NTY4In0sIkVsZW1lbnQiOiJmb290ZXIvdmlld0xpbmsifQ%3d%3d)  
---  
Microsoft respects your privacy. Review our Online Services [Privacy
Statement](https://privacy.microsoft.com/privacystatement).  
One Microsoft Way, Redmond, WA, USA 98052.  
Sent from Azure DevOps  
  
![](https://mucp.api.account.microsoft.com/m/v2/v?d=AIAADN6QNPABV5WMAXVJ476KYRRAJIGT5MIDB7L3INJNV7CB4CLKHMAKI6W4TC2Y4W5KB3GKBX6JCP5Y2VUKGOP2TWXLVLACDTTPR5I3UQRQRCNVVNCTKZ2CXRXGSTR3K4K7MQTKQYJ2XVHICJFX6PEGT7OWZWI&i=AIAACGQO4MROL3DDE2MJKDMANX3FGSCUDWDXIWLS4XGBLW4Q4MMYX2W7DIARQHRHMUO2BHTDEQQGRAPEHVPZKVWCHVQ2WPKWZY4H5TM4IQ4SP6USCROHGTE55XXGJN6EEU7ZJKTTWZF6F4YYO5RIN23J6S6663LQY7B5ZBIZLYNZYQL54RQ4OVVQGEWVVMATDY4PGU5APU2YIY6A2VJYVTXNQTWN34T4VJRTIETN77SMR5QWSG53KWPNTGIHSVEPPSMHEC3ICZF3VF5WXZI22HK73P22NFA)