Results 96 issues of Roman Leventov

### Description of the problem / feature request: `CountDownLatch.await(timeout, unit)` result must alwasy be checked. ### Feature requests: what underlying problem are you trying to solve with this feature? This...

Type-NewCheck

https://github.com/mattn/go-sqlite3/blob/3cbdae750e52afa881060732446298f98131e834/sqlite3.go#L1991-L2008 Should call `C.sqlite3_reset(s.s)` on the normal return path as well as abnormal. This is because implicit transactions are committed when the statement is reset: https://sqlite.org/lang_transaction.html#implicit_versus_explicit_transactions. If we don't reset...

Dockest doesn't stop containers after an unexpected quit by default: ``` 🌈 Dockest 🌈 DockestServices running, running Jest ● process.exit called with "1" 33 | } catch (err) { 34...

In `checkConnection`, there is a construction which, apparently, when portKey is absent in docker-compose config, leads to very confusing result, `unhandledRejection` with no `reason` and no `promise`: https://github.com/erikengervall/dockest/blob/7da1dda02bebd7734c73a186c73aa010a5bc711b/packages/dockest/src/run/waitForServices/checkConnection.ts#L97 Maybe if...

**Is your feature request related to a problem? Please describe.** If a container is already running, currently, Dockest timeouts in 30 seconds because it awaits for Docker start event: https://github.com/erikengervall/dockest/blob/7da1dda02bebd7734c73a186c73aa010a5bc711b/packages/dockest/src/run/waitForServices/resolveContainerId.ts#L9-L20...

It would be nice to add to the map average (min, max) costs of basic operations: cache/memory/disk/network IO, locks (single thread..race), CAS, Thread spawn, Thread switch, etc. Resources (links) or...

It would be nice to support fastutil collection The previous discussion: https://markmail.org/message/anwbtpgbvwh4ox4v#query:+page:1+mid:xqwwbpgh2ul46nst+state:results I could do this by copy pasting https://github.com/FasterXML/jackson-datatypes-collections/tree/master/hppc and some parts from https://github.com/FasterXML/jackson-datatypes-collections/tree/master/eclipse-collections very literally, but maybe it's...

`ContainerSerializer` (a class in `jackson-databind`) includes some non-trivial machinery which may change in any version of Jackson. `PrimitiveRefMapSerializer` and `RefPrimitiveMapSerializer` (in `primitive_collections_base`) duplicate some parts of that logic (and I'm...

It would be nice if there was a shared utility to test the dark corners of ser/deser implementation for proper collection types (i. e. extending either `Collection` or `Map`): -...

The following call of Map.contains on a map with `String` keys with an `Object` argument: https://github.com/FasterXML/jackson-datatypes-collections/blob/c374783ff962041d003125cbd7b617bab5d16bff/eclipse-collections/src/main/java/com/fasterxml/jackson/datatype/eclipsecollections/ser/map/RefRefMapSerializer.java#L225 Probably the key should be serialized before checking if it should be ignored.