Vojtěch Boček
Vojtěch Boček
Většina je prostě nakopírovaná z duktape, kde jsou to `static` fce :( Z kroužku, https://youtu.be/tyE7_vMr1xc Closes #1
The stop/cancel methods actually wait if a grace period is specified, and do not "return immediately": * https://github.com/grpc/grpc/blob/5227db884d77d575158adc3bcafed6a423c5b8c4/src/python/grpcio/grpc/_cython/_cygrpc/aio/server.pyx.pxi#L1060-L1063 * https://github.com/grpc/grpc/blob/5227db884d77d575158adc3bcafed6a423c5b8c4/src/python/grpcio/grpc/aio/_channel.py#L444 * https://github.com/grpc/grpc/blob/5227db884d77d575158adc3bcafed6a423c5b8c4/src/python/grpcio/grpc/_server.py#L1253
Allow to select multiple bytes in analyzer and drag them to widget.
### What happened? We use [the API](https://grafana.com/docs/grafana/latest/developers/http_api/alerting_provisioning/) to manage alerts via code, but unfortunately, the API lacks validation of the alerts. For example, when I create alert with a typo...
This should be the official, supported way of passing SSL context to Requests. Let's document and test it, so it does not break in the future. It would be also...
2.32.5 change https://github.com/psf/requests/commit/90fee0876aea97c639b3bf698d83a12876d2f160 breaks passing of custom ssl context using an adapter like this: ```python3 class SSLContextAdapter(requests.adapters.HTTPAdapter): @override def init_poolmanager(self, *args: Any, **kwargs: Any) -> Any: kwargs["ssl_context"] = ssl.create_default_context() return...
### Description Take this `pyproject.toml`: ``` [project] name = "repro" description = ".." dynamic = ["version"] authors = [] requires-python = '>=3.9, ``` Platform: "macosx-15-arm64" Python version: "3.10" Current installation...
On some large and "bad" inputs, like whole HTML page, the regex produces a lot of matches that are just one or two digits, which then just get filtered out....