david.bilik
09/19/2017, 1:36 PMShawn
09/19/2017, 7:40 PMgroostav
09/20/2017, 5:16 PMexec
in the background from ant, and I'm stunned at how hard it is. The internet suggested
<exec executable="cmd">
<arg value="/C"/>
<arg value="start"/>
<arg value="/B"/>
<arg value="${myProgram}"/>
</exec>
except that if myProgram
contains spaces then this solution fails. Further, if you quote wrap it, the quotes are stripped off prematurely by one of the three interpreters looking at the value so myProgram
has to be a one-word thing. My only work-around was to explicitly set the working directory with an <exec ... dir="..../bin">
Does anybody here have a better solution?redrield
09/20/2017, 11:22 PMPaul Woitaschek
09/22/2017, 11:48 PMredrield
09/24/2017, 1:54 AMoshai
09/24/2017, 9:22 PMlovis
09/25/2017, 12:23 PMfun <T> lazier(initializer: () -> T) = lazy(LazyThreadSafetyMode.PUBLICATION, initializer)
fun <T> laziest(initializer: () -> T) = lazy(LazyThreadSafetyMode.NONE, initializer)
😅kirillrakhman
09/25/2017, 5:23 PMlazy
aren't aware of the locking. I raised the issue during milestone phase but it didn't lead to any solutionorangy
09/26/2017, 10:17 AMuli
09/27/2017, 11:52 AMpublic class Public
?kirillrakhman
09/27/2017, 1:46 PMcedric
09/28/2017, 3:40 AMcedric
09/28/2017, 5:58 AMmarcinmoskala
09/28/2017, 9:07 AMorangy
09/28/2017, 12:49 PMdalexander
09/28/2017, 4:51 PMharmony
09/30/2017, 4:43 PMmorozov
10/04/2017, 9:07 AMauthTypeData.requiredFields = listOf(
AuthFieldData().apply {
code = "code"
displayName = "display_name"
type = "type"
optional = false
},
AuthFieldData().apply {
code = "code"
displayName = "display_name"
type = "type"
optional = true
}
)
And for example i check the size of this list like this:
assertThat(authTypeData.requiredFields!!.size, equalTo(2))
But how i can check the content of this field?brumla
10/08/2017, 6:24 PM1
and leave the code line, the parameter name hint disappearstapchicoma
10/09/2017, 6:03 AMKulwinder Singh
10/09/2017, 7:10 AMmorozov
10/09/2017, 7:14 AMvar data: List<String>
how i can set it negative values in this list?Kulwinder Singh
10/09/2017, 11:06 AMelect
10/10/2017, 5:22 PMgaetan
10/11/2017, 9:24 AMjoelpedraza
10/11/2017, 2:51 PMorangy
10/11/2017, 4:16 PM"Hello, World".replace("","-")
?karelpeeters
10/11/2017, 9:21 PMSlackbot
10/12/2017, 4:42 AMSlackbot
10/12/2017, 4:42 AMkarelpeeters
10/12/2017, 5:42 AMorangy
10/12/2017, 9:52 AMkarelpeeters
10/12/2017, 9:57 AMdalexander
10/12/2017, 12:07 PM