Matej Čimbora
Matej Čimbora
Hi, Thanks for the amazing project. I'm using version 2.4.5 and I've observed an issue with auditing (https://docs.spring.io/spring-data/jdbc/docs/current/reference/html/#jdbc.auditing). Let's consider an entity with the following attributes: ``` @LastModifiedDate private LocalDateTime...
Let's say I want to start a new optimization project. I'd probably: - take one of the solver examples/quickstarts as an inspiration - set up a maven project - declared...
Let's say I use search input in online documentation and search for "probabilistic" If I select any of the top 2 items containing the match in subsection title, I get...
Hey team, I'm using the following construct to get ranges with overlapping intervals. ``` constraintFactory.forEach(Interval.class) .groupBy(ConstraintCollectors.toConnectedTemporalRanges( shift -> interval.getStart().toInstant(), shift -> interval.getEnd().toInstant())) .flattenLast(ConnectedRangeChain::getConnectedRanges) .filter(range -> ... ``` It pretty much...