http-server
Here are 2,262 public repositories matching this topic...
The library has many constant definitions that are declared as NAME = 'val', e.g. https://github.com/aio-libs/aiohttp/blob/master/aiohttp/client.py#L161
We need to add Final type hint to let users know that these constants should be considered as immutable (this hint doesn't prevent the actual modification and fully backward compatible).
from typing_extensions import Final # suppor
The docs do not give a format option for iso date with microseconds. Is this possible?
-
Updated
Oct 24, 2020 - Python
-
Updated
Nov 27, 2020 - Erlang
-
Updated
Dec 4, 2020 - PHP
-
Updated
Dec 3, 2020 - C
jemalloc benchmarks
Hey, I recently benchmarked using jemalloc on my NUMA servers, and the difference was quite large.
Using the system allocator I got 710k req/s, while with jemalloc I got 830k req/s. That's 17% faster just by dynamically linking with a library.
Anyone else tried this?
-
Updated
Dec 4, 2020 - Go
-
Updated
Nov 25, 2020 - C++
-
Updated
Dec 5, 2020 - Java
In our codebase, we push RequestContext and immediately run some code with try-with-resources.
For example:
try (SafeCloseable ignored = ctx.push()) {
logger.trace(decorate(msg));
}If RequestContext provides run(Runnable) or call(Callable) we can reduce boilerplate code and simplify it.
ctx.run(() -> logger.trace(decorate(msg));This is inspired by g
-
Updated
Dec 2, 2020 - C++
-
Updated
Nov 24, 2020 - TypeScript
-
Updated
Oct 29, 2020 - Java
-
Updated
Mar 3, 2020 - C++
-
Updated
Nov 26, 2020 - C++
-
Updated
Oct 28, 2020 - Java
Advent of cats-parse
These files have parboiled imports that need to go. We are moving them to cats-parse. Some of these files are related. Some are enormous and can be broken down. They could be tasked better, but this is a start.
All work should target the dotty branch. 3.0.0-M1 doesn't compile yet, but all of this will get it closer. CI will fail on the 3.0.0-M1 builds. Don't panic.
Basic steps:
- W
-
Updated
Dec 27, 2019 - Python
-
Updated
Nov 25, 2020 - C
-
Updated
Nov 19, 2020 - Ruby
-
Updated
Oct 27, 2020 - Java
-
Updated
Dec 4, 2020 - Rust
kotlin linting
Hi, when implementing http4k/http4k#435 I noticed the codebase does not have a linter set up - e.g. some files end with new lines and some don't.
I am not sure whether this is desired, I would be happy to participate if wanted.
-
Updated
Apr 1, 2020 - JavaScript
Improve this page
Add a description, image, and links to the http-server topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the http-server topic, visit your repo's landing page and select "manage topics."
Caddy version:
v2.2.0 h1:sMUFqTbVIRlmA8NkFnNt9l7s0e+0gw+7GPIrhty905A=I am trying to pass pem-encoded client certificate to proxied service via a X-SSL-Cert header, like so: