rdebath

Results 210 comments of rdebath

Can confirm process isolation is failing on 24H2 for `Run-TestsInBCContainer` and anything else using port 80. The `w3wp.exe` process appeared to be eating a core. Switching to Hyper-V got it...

I'd guess your AV is checking every file multiple times for the process isolation, whereas it can't see the files in the HyperV virtual machine. This is what was happening...

* Make sure HyperV is installed on the host machine * Use the option `-isolation hyperv` on the bccontainer command that's running docker. * Or use `--isolation=hyperv` if you're using...

Doesn't stop it being turned on automatically within the next eight hours.

Actually, the server hash is just an md5 of the server and port. The use case is connecting to your server on a public IP using the secure classicube.net mediated...

NB: I should mention I'm compiling for linux. Okay, that'll probably be fine for any modern linker (eg: GNU and Clang) as they are mostly insensitive to the argument order....

@zabcik It's worse. It's loaded using a json loader (not jsonc/json5) unlike app.json (nowadays). This means you get impossible errors attributed to app.json. (and no comments in the props file)...

I noticed this: https://github.com/microsoft/Windows-Containers/issues/579 UTF8 as the ANSI/OEM codepage is something I first asked for 20 years ago (Hmm, looks like nearly 30 now) Looks like someone has been forcing...

Removing the BOM should have no effect either. The file has an encoding header and is NOT UTF-16 so the BOM is defined as optional by the W3 and not...

I suspect DotNET garbage collection. The eventlog "ObjectEvent" will be running while the sleep loop is ticking, so disabling that could prove it's eating the memory. If it is that...