Vladimir Sitnikov
Vladimir Sitnikov
Just in case: Gradle's `DependencyResolutionListener` is able to verify plugins as well. Plugin: https://github.com/vlsi/vlsi-release-plugins#checksum-dependency-plugin https://plugins.gradle.org/plugin/com.github.vlsi.checksum-dependency Sample use: https://github.com/vlsi/vlsi-release-plugins/commit/208734b6e9d67c11d0d697f883f3e23107284820 The key idea is to add the plugin right into `settings.gradle` file,...
Yet more ideas: what if `categories.json` file had "applicability" information associated with the categories? In other words: 1) `executor.json` lists the metadata on the executor side. For instance, it could...
`pg_largeobject` is not accessible by regular user, so server-side copy, so server-side copy doe snot seem feasible without backend API. We can try `lo_from_bytea(lo_get($old_id))` for small lobs though
We would still need a copy if the given blob is a foreign one. In other words, if the lob is not associated with the same connection (e.g. someone created...
We might automatically disable line wrap in jmeter if the body contains long lines.
I thought tika consumed significant space dependency-wise. Magika model is ~1MiB. However, Magika requires tensorflow, so it would probably involve a lot of deps :( Yes, it works without Internet...
Can you check JMeter 5.6.3? Can you provide the script that reproduces the issue?
For reference, the root cause is likely `text/plain` default: https://github.com/apache/jmeter/blob/d57e4e535ae96ae88819c0b5b17cab996c578938/src/protocol/http/src/main/kotlin/org/apache/jmeter/protocol/http/util/HTTPArgumentSchema.kt#L40
The diff is that `enabled=true` appears only for the elements that were selected ```diff --- sample2.jmx 2024-01-09 14:04:16 +++ sample3.jmx 2024-01-09 14:03:44 @@ -27,7 +27,7 @@ - + 1 1...
It looks like OpenRewrite does not support mixed Java-Kotlin projects, so it can't parse Java files that call Kotlin classes: ``` jmeter/src/jorphan/src/main/java/org/apache/jorphan/gui/JFactory.java:111: error: cannot find symbol public static JEditableCheckBox small(JEditableCheckBox...