Juraj Martinka

Results 30 comments of Juraj Martinka

@Invertisment I essentially gave up and waiting if/until cider gets better support. In the meantime, I keep myself saying that I'll switch to Cursive if absolutely necessary. It turns out...

Is the expected usage pattern that we should use`^` and `$`? ``` (b/valid? {:name "abc123def"} {:name [v/required v/string [v/matches #"^\d+$"]]}) ;;=> false (b/valid? {:name "123"} {:name [v/required v/string [v/matches #"^\d+$"]]})...

I can't still understand why the mongod should fail to start. My observation is that each maven module's integration tests use its own unique temp extract dir, for example: "/tmp/extract-4938eb39-e49d-4dff-bfa9-7e48da910665mongod"....

We have only three modules which are using embedmongo-maven-plugin and the issue is always in one of the two, call it "tools/1 and tools/2". If I run both tools/1 and...

I was searching through the net and finds similar issue: http://stackoverflow.com/questions/6345660/java-executing-bash-script-error-26-text-file-busy I've checked StartEmbeddedMongoMojo, [de.flapdoodle.embed.process.runtime.Starter#prepare](https://github.com/flapdoodle-oss/de.flapdoodle.embed.process/blob/master/src/main/java/de/flapdoodle/embed/process/runtime/Starter.java#L56) and subsequent calls but haven't found any unclosed FileOutputStreams but I still believe that this...

@Cyrik clj-memory-meter still works for me with JDK 17. I've been using `-Djdk.attach.allowAttachSelf=true` and `--illegal-access=permit`. See here for my deps.edn config: https://github.com/jumarko/clojure-experiments/blob/master/deps.edn#L101 Alternatively, you can try using JOL - see...

@alexander-yakushev This is my JDK version: ``` java -version openjdk version "17" 2021-09-14 OpenJDK Runtime Environment Homebrew (build 17+0) OpenJDK 64-Bit Server VM Homebrew (build 17+0, mixed mode, sharing) ```...

@alexander-yakushev @Cyrik I can confirm that it breaks for me too - when you try to measure ArrayList like described here: https://www.reddit.com/r/Clojure/comments/vmul4a/help_with_jvm_memory_optimization/ it fails with ``` 1. Unhandled java.lang.reflect.InaccessibleObjectException Unable...

> @Bost @jumarko @Cyrik @KaliszAd Hey guys, can you try `0.2.0` with Java 17/18 (and without `-add-opens`)? I think I bought us some time with Unsafe, this won't last forever...

Here's some [vmInfo](https://github.com/jumarko/clojure-experiments/blob/develop/src/clojure_experiments/java/diagnostic.clj#L153) from me: ``` # JRE version: OpenJDK Runtime Environment (19.0+22) (build 19-ea+22-1598) # Java VM: OpenJDK 64-Bit Server VM (19-ea+22-1598, mixed mode, sharing, tiered, compressed oops, compressed...