Geetansh Juneja

Results 31 comments of Geetansh Juneja

Hi I would like to work on this issue.

@RalfJung how should I approach this issue? What all do I need to implement here to make kqueue working?

Hi, I would like to work on this.

Hi, for the timeout part, I just need to check if the api call takes more than 10 sec then it needs to cancelled which can be done using `tokio::time::timeout`.

`octocrabbuilder::{set_read_timeout, set_write_timeout}` would be fine for this.

Hi I went through the octocrab's [error enum](https://github.com/XAMPPRocky/octocrab/blob/38817ec979ab0ec7a3b5419daaadceb035041c60/src/error.rs#L26) and also hyper-timeout crate which octocrab uses for timeout. So I think we can figure out that the request timed out by...

After reading `parent_module` code I found that `find_node_at_offset` return the ancestor modules which contains the `sourcefile`. For the Locate child modules feature we want to get the children which are...

what would be the output in the following cases? 1. //- /lib.rs $0 mod foo; is the ans `foo` here? 2. //- /lib.rs mod foo { mod bar { mod...