Results 154 issues of Thomas de Zeeuw

Expand the testing of `RegisterOption::EDGE/LEVEL | RegisterOption::ONESHOT` for all types that implement `Evented`.

This would require a number of tests, following https://github.com/tokio-rs/mio/pull/933, https://github.com/tokio-rs/mio/pull/939 and the discussion in mio: https://github.com/tokio-rs/mio/issues/941.

Some of the use of unsafe code is incorrect I think. For example the use of `mem::uninitialized` should be replaced with `mem::MaybeUninit` (currently unstable).

bug

Write benchmarks for the following: - [ ] Duplicated kqueue file descriptor vs. none-duplicated, see pr #45. - [ ] Timer space event structure, see issue #2. - [ ]...

enhancement
performance

From the manual for setsockopt: ``` SO_KEEPALIVE enables keep connections alive SO_LINGER linger on close if data present SO_OOBINLINE enables reception of out-of-band data in band SO_SNDBUF set buffer size...

enhancement

From the paper: "Hashed and Hierarchical Timing Wheels: Efficient Data Structures for Implementing a Timer Facility" by George Varghese and Anthony Lauck.

enhancement
performance

This is a tracking issue for `io::Write::write_all_vectored`. Feature gate: `#![feature(write_all_vectored)]`. **Steps**: - [x] Implement the RFC (#70612). - [ ] Stabilization PR. **Unresolved questions**: - [ ] Can we improve...

T-libs-api
B-unstable
C-tracking-issue
A-io
Libs-Tracked

Previously this would panic because it didn't consider email address where the local part was a single double qoute (DQUOTE).

We've been hitting some template errors, usually nothing major, but the error message were never very useful. Usually they are just `Failed to render '$FILE'"`, that's it. I just realised...