Tom Deseyn
Tom Deseyn
Memory ownership is tied to a Pipe which means you need to copy the data if you take it out of the pipe. And similarly, you need to copy data...
The benchmarks show best performing plaintext on physical to be at 2.7M rps. The requests have about 400B (TCP content only). So 2.7M rps is about 8.6Gbps. This seems close...
If you want to add a .NET app into a distro's package repository, you are faced with a daunting task. Distro repositories require all binaries that are distributed, and needed...
A `Task` definition can not obtain the namespace it is running in. This is a request to make that namespace available, for example using `context.namespace`. Relates to https://github.com/tektoncd/pipeline/issues/4540. cc @vdemeester...
A nice thing about BSD `kevent` is that when it returns a socket is readable, it includes the amount of data available. The application can allocate a buffer large enough...
Having `node` provides a simple way for users to build .NET web applications that use a JavaScript framework for their front-end, like Angular, React, ... Some templates that come with...
.NET repos tend to be organized with multiple folders split for application code, library code, tests, etc. For this reason our builder has a `DOTNET_STARTUP_PROJECT` envvar that allows you to...
The imagestreams and templates from this repos are copied to the openshift/openshift-ansible and openshift/origin repos. We need to check these files are the same. And it would be good to...
Currently source-build performs a 'runtime-portable' build that produces 'linux-{arch}' packages that are used when building target runtime (non-portable). With this change, we can use the non-portable packages that are produced...
Fixes https://github.com/dotnet/runtime/issues/74577. cc @MichaelSimons @omajid