Josh Guilfoyle

Results 13 issues of Josh Guilfoyle

This library uses a plain TCP server socket to accept incoming debug requests and provide arbitrary access to database files in the hosting application. This leaves those applications extremely vulnerable...

ps apparently shows %CPU as the total CPU time since process start divided by lifetime of the process. Top shows active CPU usage.

When using UdpFramed, receiving data bundles the received item with the source SocketAddr but if there is a decode error, the error is delivered directly without the accompanying source SocketAddr....

A-tokio-util
C-feature-request
S-blocked
M-codec

## Motivation Decode errors for UdpFramed without the SocketAddr would make it impossible to determine the origin of the malformed packet even if to just log the error. ## Solution...

A-tokio-util
M-net
S-breaking-change

Looks like v1.18.3x (specifically I'm looking at v1.18.30.04 and v1.18.32.02) are no longer using a GLAD generated shim to load GL. This appears to be creating problems that show manifest...

enhancement

**Version** v1.29.1 **Platform** Windows **Description** I have been working on adding poll support to mio (https://github.com/tokio-rs/mio/pull/1687) and came across a surprising gotcha that I couldn't figure out where if I...

C-bug
A-tokio
M-net

The poll implementation in #1687 makes liberal use of locks and allocations in `closed_raw_fds` and `pending_removal` in fairly hot code paths that can be optimized away. There are some dead...

I'm confused where I would add user code to actually do something with the on/off commands are received, am I missing something from the example code? It would seem that...

All auto-generated providers (`ProvideProvidesAdapter`) are class loaded by Dalvik during `ObjectGraph.create` as a result of the implementation of `ModuleAdapter#getBindings`: ``` java map.put("com.example.ThingYouNeed", new ProvideThingYouNeedProvidesAdapter(module)); ``` This line of code requires...