joint-song

Results 9 comments of joint-song

> I built one > > Pull this image to your GPU host docker pull taenyang/code-former:latest Start and enter this container docker run -it taenyang/code-former /bin/bash Process the examples python...

I met the same problem too. Please fix it.

You mean that we can create multiple instances of `Scheduler`, and these schedulers can have respective Persistent Queue(We can surely set a field in RDBMS table to seperate each queue...

Java-quartz has `MisfireInstruction` to preventing this kind of outdated cron jobs. It has three options: MISFIRE_INSTRUCTION_IGNORE_MISFIRE_POLICY, MISFIRE_INSTRUCTION_FIRE_ONCE_NOW and MISFIRE_INSTRUCTION_DO_NOTHING to be configured. I think this is necessary for some scenarios.

Yes, this solved my problem well, thanks for your help!

you can set Navbar's `tintColor='transparent'` to reach this purpose. e.g: ```

I think Establishing/Closing connection has time and resource cost, it's unnecessary. And concurrent calls over single connection will result in unexpected behaviors. I found some solutions: - Introducing a Client...

Current code base can also resolve things easily, I'll close this isssue. Thanks for your explanation.

I also have this error after creating a broker with an old version kafka cluster(0.11 broker api version). Changing to a kafka cluster with 3.4 resolved this problem. Documenting the...