Kangwook Lee (이강욱)
Kangwook Lee (이강욱)
@jen6 테스트해보니 좌표 차이가 없습니다. 같은 좌표를 그대로 사용하셔도 될 것 같습니다
According to the Kubernetes reference (https://kubernetes.io/docs/reference/using-api/#api-groups), only the core group APIs start with `/api/v1/`, and the named group APIs start with `/apis/{group}/{version}/`. So every Kubernetes API except the core group...
The driver code is here: https://github.com/pbzweihander/OpenVR-OpenTrack What do you mean by "setting up a display"? I don't have an actual display. But I did implement `IVRDisplayComponent`.
It does not work when I implement `IVRDriverDirectModeComponent` instead of `IVRDisplayComponent`. What exactly is the "extended mode"? I can't find any documentation of it.
And the `simplehmd` in sample driver does not work with same error.
I've also made #836. Please give any thoughts or suggestions!
stopper seems great! I was worried that stop-token states in the documentation that it is 'Experimental'.
I made a draft PR in async-h1: https://github.com/http-rs/async-h1/pull/188 And it seems working in [this test](https://github.com/http-rs/tide/pull/836/commits/95ed038442a9f80a2f8bb48bd6753b94229cb1da#diff-0fa46cf13157406190efda6bdb7c4bfcc2ab5d95dff884eaaf42d73f1ea8d509). (It fails without [the last commit](https://github.com/http-rs/tide/pull/836/commits/aac7e98469eb420f4bb19546a4fed59ac1237337))
I replaced vector of JoinHandles with [waitgroup](https://crates.io/crates/waitgroup)
I think we can offer some helper methods like `.with_logger` for built-in middlewares. ```rust let mut app = tide::new().with_cookie().with_logger(); ``` It will be more explicit but still easy and friendly.