Juan Calderon-Perez
Juan Calderon-Perez
@creed2415 Serge has to work for both gpu/non-gpu, so images have to be separate, etc. So, it's a bit more complicated than just adding nvidia-toolkit. If you got a solution...
Agree this shouldnt be done with the Adaptor middleware. It adds overhead which is not something you want when rendering templates. The adaptor is good for things that are not...
@luv2code Can you try doing the benchmark using `golang` benchmarks instead of `wrk` ? That way we can see how much overhead there is per operation and how much allocs...
@ulasakdeniz What happens if you do this instead: ```go group.Use("/livez", healthcheck.New()) ```
`group.Use()` is expecting multiple params, and the middleware only returns a Fiber.Handler() https://github.com/gofiber/fiber/blob/v2/group.go#L62 https://github.com/gofiber/fiber/blob/v2/middleware/healthcheck/healthcheck.go#L13 @ReneWerner87 Is this a limitation, bug, or possible feature we need to add?
@efectn Forgot to tag you :-)
@ZedZipDev @2opremio I was able to run using the same as v2 compose: ```yaml services: scope: image: weaveworks/scope:latest network_mode: host pid: host privileged: true labels: - "works.weave.role=system" volumes: - /var/run/docker.sock:/var/run/docker.sock:rw...
@charliermarsh Is this similar to https://github.com/pypa/pipx/issues/754 which is approved in https://github.com/pypa/pipx/pull/1281 ? That PR will add support for `--global` allowing users to install applications in venv at the global label...
> No, I was more referring to the idea of adding pipx install-like behavior in general. Are there plans to add support for global packages in uv? Specially venv for...
> Can you say more about what a global package is, and what use-case youβre trying to accomplish? Global packages allows you to install isolated applications at the system(global) level....