This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Luca Molteni> Rebasing JP is something that happens every six months, I think we can handle a few patches a year | |
| 11:31:14 <Luca Molteni> Let’s do like this @marekn, give me your local branch you’re trying to rebase against and I’ll apply the changes | |
| 11:31:26 <marekn> maybe get back to contributing back and handle it like 3rd party will help | |
| 11:31:54 <Luca Molteni> ? | |
| 11:32:05 <Luca Molteni> the reason why we forked that is not that we don’t want to contribute back | |
| 11:32:13 <marekn> @Luca Molteni I can handle that, just that fork is really not standard and we have similar forks in kiegroup and we could get rid off them | |
| 11:32:26 <Luca Molteni> in fact I already contributed to some patches to JP | |
| 11:32:51 <marekn> great, what stops us to use basically java-parser from upstream? | |
| 11:33:07 <marekn> and not having it on our maintenance? | |
| 11:33:17 <Luca Molteni> that we need a grammar that is both java and drl and grammars don’t compose |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [INFO] Scanning for projects... | |
| [INFO] | |
| [INFO] -------------< org.kie.server:kie-server-integ-tests-dmn >-------------- | |
| [INFO] Building KIE :: Execution Server :: Tests :: DMN Integration Tests 7.18.0-SNAPSHOT | |
| [INFO] --------------------------------[ jar ]--------------------------------- | |
| [INFO] | |
| [INFO] --- maven-enforcer-plugin:3.0.0-M1:enforce (enforce-plugin-versions) @ kie-server-integ-tests-dmn --- | |
| [INFO] | |
| [INFO] --- maven-enforcer-plugin:3.0.0-M1:enforce (ban-blacklisted-dependencies) @ kie-server-integ-tests-dmn --- | |
| [INFO] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [INFO] Scanning for projects... | |
| [INFO] | |
| [INFO] -------------< org.kie.server:kie-server-integ-tests-dmn >-------------- | |
| [INFO] Building KIE :: Execution Server :: Tests :: DMN Integration Tests 7.18.0-SNAPSHOT | |
| [INFO] --------------------------------[ jar ]--------------------------------- | |
| [INFO] | |
| [INFO] --- maven-enforcer-plugin:3.0.0-M1:enforce (enforce-plugin-versions) @ kie-server-integ-tests-dmn --- | |
| [INFO] | |
| [INFO] --- maven-enforcer-plugin:3.0.0-M1:enforce (ban-blacklisted-dependencies) @ kie-server-integ-tests-dmn --- | |
| [INFO] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ge0ffrey> volothamp: bascially Matchers got deprecated and Matchers.anyInt() moved to Mockito.anyInt() | |
| 10:28:07 → jlocker and dfiungo joined | |
| 10:28:50 <ge0ffrey> volothamp: jiri already fixed a similar problem on optaplanner and I already merged it, despite the PR not being green due to appformer. This way, when appformer is green and it gets to optaplanner, it should be immediatly green too | |
| 10:29:00 <ge0ffrey> locally this way optaplanner builds again (*) | |
| 10:29:04 <volothamp> ok perfect thank you ge0ffrey | |
| 10:29:21 <ge0ffrey> (*) if you build drools from source etc too, because now that jenkins is broken, those snapshots aren't updated, which is a big pita | |
| 10:29:24 ↔ dfiungo_ popped in ↔ dfiungo nipped out | |
| 10:32:10 <volothamp> yeah I've just discovered that | |
| 10:32:23 <volothamp> fortunately I have a project that's not related to drools to fix :) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private String rewriteConsequenceBlock(String consequence) { | |
| int modifyPos = StringUtils.indexOfOutOfQuotes(consequence, "modify"); | |
| if (modifyPos < 0) { | |
| return consequence; | |
| } | |
| int lastCopiedEnd = 0; | |
| StringBuilder sb = new StringBuilder(); | |
| sb.append(consequence.substring(lastCopiedEnd, modifyPos)); | |
| lastCopiedEnd = modifyPos + 1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private String rewriteConsequenceBlock(String consequence) { | |
| int modifyPos = StringUtils.indexOfOutOfQuotes(consequence, "modify"); | |
| if (modifyPos < 0) { | |
| return consequence; | |
| } | |
| int lastCopiedEnd = 0; | |
| StringBuilder sb = new StringBuilder(); | |
| sb.append(consequence.substring(lastCopiedEnd, modifyPos)); | |
| lastCopiedEnd = modifyPos + 1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 00:33:35 <roger600> etirelli, ping | |
| 00:41:03 <etirelli> roger600: pong | |
| 00:43:14 <roger600> etirelli, hey, conan just told me about some issues on DMN caused by some commit | |
| 00:43:23 <roger600> etirelli, jst to double checkj | |
| 00:43:30 <roger600> etirelli, it's all under control by manstis now, right? | |
| 00:43:38 <roger600> etirelli, you need some other action from me? | |
| 00:43:42 <etirelli> roger600: yes, I think he was missing your reviews on the PRs | |
| 00:43:46 <roger600> etirelli, (and sorry for the inconveniences) | |
| 00:43:49 <roger600> etirelli, done :) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module Main where | |
| import Data.List.Zipper | |
| import Prelude(IO, (==), mod, print) | |
| main :: IO () | |
| main = print (filter' (\x -> x `mod` 2 == 0) zipper) | |
| myList = [1..100] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .observe method | |
| 16:49 <volothamp> *nanoseconds | |
| 16:50 <•bbrazil> yes | |
| 16:50 <•bbrazil> if you're using the provided timing utilites, it'll already have nanosecond resolution | |
| 16:51 <volothamp> bbrazil: I saw yesterday the client truncates to seconds in `SimpleTimer.elapsedSecondsFromNanos(start, SimpleTimer.defaultTimeProvider.nanoTime())` | |
| 16:52 <volothamp> which is does indeed `(endNanos - startNanos) / Collector.NANOSECONDS_PER_SECOND` am I missing something | |
| 16:52 <•bbrazil> that's not truncating | |
| 16:53 ⇐ dmone quit (~dmone@195.46.31.29) Quit: Leaving | |
| 16:53 <volothamp> Arent’ we losing precision? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1.11.0 | |
| 1.11.0-1 | |
| 1.8.192 | |
| 1.8.191 | |
| 1.6.65 | |
| adopt@1.11.0-1 | |
| adopt@1.11.0-0 | |
| adopt@1.10.0-2 | |
| adopt@1.9.0-0 | |
| adopt@1.8.192-12 |