asaff1

Results 11 issues of asaff1

Check this or we will delete your issue. (fill in the checkbox with an X like so: [x]) - [x] I have searched for other issues with the same problem...

enhancement
good first issue

**Is your feature request related to a problem? Please describe.** The current way to implement pagination is based on limit offset. I prefer the cursor style pagination. **Describe the solution...

Obviously cookie based auth needs the csrf, but how can I exclude the csrf for authorization header based auth? This is my configuration: ``` router = NinjaAPI(auth=(AuthBearer(), django_auth), csrf=True) ```...

In django rest framework it is possible for views to get either urlencoded form body or json body. Is there a way to allow multiple request types, and, to choose...

**Describe the solution you'd like** It would be very helpful if the name of the run will also be displayed in the reports table. Even better, Add a multi-select checkbox...

enhancement
WEB

Not a very serious bug but still took me a few minutes to understand. **Command line arguments / config** total = 5 connections = 1 concurrency = 6 qps =...

**Is your feature request related to a problem? Please describe.** I use triton as a shared library I have a c++ project that already uses gRPC. Currently the triton core...

**Description** Would like to know what is the way to include libtritonserver in a project. I did a build of triton developer tools with `-DTRITON_CORE_HEADERS_ONLY=OFF` so I get an install/...

Hello, First, this is a nice library! very clean API. Some suggestions for improvement: 1. I would expect raise_on_error to throw when unrecognized argument is provided. (Similar to how python...

**Environment:** metaflow version: 2.12.25 Windows Python 3.9 **Description:** This line results in `NameError`: `check_output(["where", "/Q", "git"])` https://github.com/Netflix/metaflow/blob/5baaf3ce07b65142c6ea41125575f37ad32b4e41/metaflow/metaflow_version.py#L30C13-L30C25 it should do instead: `subprocess.check_output(["where", "/Q", "git"])` Fixed that, I'm now seeing this...