cal
cal
Long time unix sysop here. Besides doing a static link which may be problematic to some build/link environments it often is possible to set dynamic library pathes. So it may...
I don't know if some project uses this. We used it locally to install multiple versions or some package but avoiding absolute pathes. The idea is as follow: ``` cd...
Some pattern languages have named groups: https://www.regular-expressions.info/refext.html What about: Select the group matched by :[var~(?\w+)_\b] and use it with :[var.aword].
Can someone share some example project for reproducing the issue? Our usage of immutables is not big so i do not expect major differences in use of memory but i...
I know what you mean and can feel your pain. The annotation processor is called by the java compiler. What makes you believe the annotation processor is even called in...
Does it really make sense to validate the **immutable** instance? Either you treat it as a unvalidated container which does not care and you validate the entity after updating it...
Convinced. ;-) But: In my experience the annotation based validation interfaces and classes are an entangled mix of different responsibilities. Maybe I missed something or it was changed recently but...
Hi! I see what you mean. But that is not what I had in mind. We got this great generic framework for validating fields/properties, generic collection of errors, extension with...
As discussed before it may be useful to do validation only if requested to be able to transport the raw data using immutables + json and do the validation on...
+1 for the bring-your-own-mixin approach (cool name BTW :-): simple, self documenting, flexible @gunnarmorling Thanks for correcting me about the alternative BV constraint sources. OT: Is it possible to set...