Frens Jan Rumph
Frens Jan Rumph
Agreed that ```pandas``` should cover the return of None. At least not segfault ;) I've created an [issue](https://github.com/pandas-dev/pandas/issues/16885) there. Thanks! Feel free to chip in over there :) It did...
Apparently this is a [known issue](https://github.com/pandas-dev/pandas/issues/15986) at ```pandas``` but they won't fix it. Any suggestions?
> There are valid use cases for wanting to keep the browser open at the end of a session, even when the process has been exited. The feature would target...
The situation can be reproduced with a `docker-compose.yml` like: ```yaml version: "3.8" services: selenium-hub: image: selenium/hub:4.3.0 container_name: "selenium-hub" ports: - "4444:4444" firefox: image: selenium/node-firefox:4.3.0 container_name: "node-firefox" volumes: - /dev/shm:/dev/shm depends_on:...
Note that the workaround we plan is to use: ```bash pkill -P 1 firefox-bin ; exit 0 ``` as a health check.
Great @diemol, much appreciated!
I just discovered that the issue isn't tied to the use of `@ElementCollection` and `@Embeddable` in particular. With the setup as described above, but with the `ComplexBean.element` relationship expressed through...
@1st1 Just ran my own benchmark for readline again (https://gist.github.com/frensjan/27061b47e1423dd73eeec9f5cad5f4ad) but with uvloop: I saw a throughput improvement of 36% with my suggested implementation. @socketpair note that the only bytearray...
@socketpair @1st1 I've compared master(at bbe53f381fbade4f8c1d04b2a463270710f1392a), #395 and the implementation suggested above with (with https://gist.github.com/frensjan/27061b47e1423dd73eeec9f5cad5f4ad): **master**: ``` server done, sent 4096.0 megabytes client done, received 4096.0 megabytes test took 0:00:09.196442...
@methane yes, it indeed uses `bytearray`. Would be nice to have a means to turn a bytearray into a bytes object (or readonly view on it) as in [asReadOnlyBuffer](https://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html#asReadOnlyBuffer--). Or...