-
# Problem
I was creating a pex file to resolve dependencies while playing around with fawkes (https://github.com/shawn-shan/fawkes), and like most modern ML projects, it contains many large binary …
-
`process_transactions_queue` burns CPU when there is nothing in the queue. Simplest fix for this is adding a sleep in the branch for this case. In general, it could be beneficial to use achannel (e.g.…
-
Currently, `AtomicWaker::take` does a lot of work for nothing when there is no registered waker. It causes performance issue in a contended environment where the function is called a lot.
I've desi…
wyfo updated
4 months ago
-
I am currently working on a project with `iced 0.13.1` and use `iced_term 0.5.0` to embed a terminal.
I instantiate a terminal, which functionally works, and wrap the output of `TerminalView::show` w…
-
`copy_with_timeout()` as implemented in v0.7.2 may exceed its deadline:
https://github.com/jayjamesjay/http_req/blob/eba0471369662667c27c0a46541b8cb464c8edc0/src/request.rs#L50-L75
In here the t…
-
## Overview
We've observed a variety of logging practices across our codebase, including the use of `log::info!`, `log::warn!`, `log::debug!`, and `log::error!`, as well as custom logging macros with…
-
crossbeam-channel can detect close when all sender or all receiver are closed. Is it possible to close a channel explicitly? For example, a channel may need to be closed eagerly when one of its other …
-
### Check for existing issues
- [X] Completed
### Describe the feature
Currently creating custom keybindings requires a bit of inferring the file structure from the default bindings if there is no …
-
Can I load the model only once for multiple asynchronous image processing? Will using multithreading have any impact if possible?
-
Memory Leak / Memory "not recycled" in Actix 3.3 #1943
The program is active_ On the web, my program has a startup memory of 14MB and requests the interface to perform some operations with a me…