-
I'm finding that any form of async tcp or unix socket in c#/.net 6 is using 5-8x the cpu usage compared to using synchronous sockets in c# or doing essentially the same thing in python3, nodejs, or ne…
-
To debug an array starting from a non-zero index:
```ST
my_arr : ARRAY [1..100] OF REAL;
my_arr[1] := 5.0;
```
Using the following IR:
```ll
%my_arr = alloca [10 x float], align…
-
```
{
"ref": "refs/heads/master",
"before": "2405e741bbfcf03f9025ea8a06c9bac4c2a0d60e",
"after": "224a2c5e3b212681410ed5a3abe373e825a08cf5",
"repository": {
"id": 276947057,
"no…
-
I was measuring `crossgen2.exe -O SPC.dll` (actually, the exact command we use for `build Clr.NativeCoreLib -c Release`) and noticed a few problems:
| Mode | Time to prejit SPC.…
-
### Description
`Stream.CopyTo(Stream, int)` says that it will "use the specified buffer size", but sometimes it will use a larger buffer instead.
### Reproduction Steps
```cs
static void Main()
…
-
### Description
If exposing a `ConcurrentDictionary` readonly with `ReadOnlyDictionary` and using the `Keys` or `Values` property of the `ReadOnlyDictionary` it will not reflect any changes made to…
-
I get the following error when receiving a "push" event from GitHub: `ParseError "Error in $: key \"size\" not present"`.
This is a sample JSON event body:
```
{
"ref": "refs/heads/boop",
"…
-
Would be awesome if we could get the option to add badges before usernames.
_(possibly with an option to enable/disable them)_
Currently only `minechat` and `frontend-horse` have any badges as far…
-
Example from @richlander:
```csharp
public static void Foo()
{
string puzzle = "003020600900305001001806400008102900700000008006708200002609500800203009005010300";
int[] board = new int…
-
### Description
Marking a property in an abstract class as [JsonIgnore] does not get inherited when the property is overridden
### Configuration
* Which version of .NET is the code runnin…