GSPP

Results 16 comments of GSPP

Right, so my motivation is to use this in cases where sync-over-async is warranted. These cases do exist. It can be due to an interface, but it can also be...

Yeah, that's what I do sometimes. It seems unclean, though, to alter global state for everything that lives in the process to solve a local problem. I know about using...

Did the team look at the work the Hotspot JVM team did with Escape Analysis? They have production experience in a very similar setting and should be able to answer...

The Java remarks are entirely true. Regarding LINQ, here's an idea: If the callee is known to allocate a small, bounded amount of memory (this is generally the case for...

OK, all true. I really should not specify any particular (naive) escape analysis scheme but I think it's possible to devise some rather simple scheme that kills a lot of...

@SunnyWar this capability could be added. If the object to be freed is the last one in the current segment the allocation pointer can just be decremented. There have been...

What is the use case for why an empty file should be created by the `File.CreateTempFile` API? To me, the most natural usage is to just create a path and...

Thank you for investigating! The package is `YahooFinanceApi` and the full repro code is: var candles = Yahoo.GetHistoricalAsync("TSLA").Result; ![image](https://user-images.githubusercontent.com/12032350/144992263-89f7ace1-fe50-43b8-bcfe-fd2eee1e13e8.png) I simply installed this package in a .NET 5 project (which...

Thanks! I appreciate the pointers. For future visitors I'll leave some information. The latest version of CsvHelper that is usable with that YahooFinanceApi package is 12 (found by bisecting). v13...

I chose to downgrade `CsvHelper` to 12.0. I'm hoping that the linked issue will be fixed at some point, although the project appears dormant. I considered forking but I'd then...