Tony-X

Results 15 comments of Tony-X

> @ghuntley I just tried running through the gitpod link on the README and I was greeted with a gitpod that was using 1.55 I can confirm the same.

This is still happening. My toolchain ``` ➜ mini-redis git:(master) ✗ rustup show Default host: x86_64-apple-darwin rustup home: /Users/tonyx/.rustup installed toolchains -------------------- stable-x86_64-apple-darwin (default) nightly-x86_64-apple-darwin active toolchain ---------------- stable-x86_64-apple-darwin (default)...

For the record, this test works if executed alone. It still hangs with ```--test-threads=1```. So apparently tests within this file can affect each other.

> Can you elaborate on this? Why might it cause race conditions? Here are the relevant functions. ``` fn poll_ready(&mut self, cx: &mut Context

That was an insightful answer with great details. Thank you @hawkw! Indeed the custom `Clone` impl was the missing piece in my understanding. Now I see the usage pattern based...

I have a similar issue. In my setup, the goal is to invoke a model without any pre/post processing. I browsed the source and found that [base_handler](https://github.com/pytorch/serve/blob/master/ts/torch_handler/base_handler.py) fits the need....

Thanks @bruno-roustant ! If you're okay to share it feel free to share it here. I'm in the process of baking my own specific implementation (which internally uses a single...

> It seems like you have the low level encode/decode working? So all that remains is to hook that up with the Codec components that read/write the terms dict ......

Just realized that we have lucene99 Codec out! I'll update the code to reflect that as this posting format aims to work with the latest Codec.

After some tweaking and tinkering I was finally able to get the bench running the way I wanted in luceneutil! @mikemccand Unfortunately luceneutil out of the box doesn't work for...