Dalinar
01/29/2019, 7:47 AMWatchService
asynchronously?Joe
01/29/2019, 4:15 PMlouiscad
06/19/2019, 3:57 PMUnable to find method 'org.jetbrains.kotlin.gradle.dsl.KotlinTargetContainerWithPresetFunctions$DefaultImpls.jvm$default(Lorg/jetbrains/kotlin/gradle/dsl/KotlinTargetContainerWithPresetFunctions;Ljava/lang/String;Lkotlin/jvm/functions/Function1;ILjava/lang/Object;)Lorg/jetbrains/kotlin/gradle/plugin/mpp/KotlinOnlyTarget;'.
I upgraded IDE plugin from last 1.3.40 EAP, and last project Kotlin from 1.3.31.
Reverting the project to 1.3.31 works (IDE plugin still 1.3.40)
(Reported here: https://youtrack.jetbrains.com/issue/KT-32077?project=kt)user
06/19/2019, 4:22 PMBob Glamm
06/19/2019, 4:23 PMuser
06/19/2019, 4:53 PMmathew murphy
06/19/2019, 9:49 PMmathew murphy
06/19/2019, 9:49 PMmathew murphy
06/19/2019, 9:50 PMlouiscad
06/19/2019, 9:52 PMcamdenorrb
06/20/2019, 2:56 AMGauthierPLM
06/20/2019, 5:10 AMkotlin.parallel.tasks.in.project=true
which I could not find in the doc.user
06/20/2019, 11:53 AMYan Pujante
06/20/2019, 3:30 PMstefanscheidt
06/20/2019, 8:16 PMstefanscheidt
06/20/2019, 8:16 PMstefanscheidt
06/20/2019, 8:19 PMIfvwm
06/21/2019, 7:29 AMAlexjok
06/21/2019, 7:52 AMuser
06/21/2019, 9:30 AMwhen
https://pl.kotl.in/Hk7UBNQ6m https://pbs.twimg.com/media/D8sczopXYAELc0l.png▾
Ifvwm
06/22/2019, 3:28 AMIfvwm
06/22/2019, 12:23 PMJan
06/24/2019, 9:49 AMJoan Colmenero
06/24/2019, 3:52 PMGradle Scripts
Alex Spence
06/24/2019, 5:13 PM@Serializable
I want to wrap the kotlinx serialization functionality with a Serde for Kafka streams. And I want to build a generic JsonSerde<T>Alex Spence
06/24/2019, 5:14 PMAlex Spence
06/24/2019, 7:48 PMAlex Spence
06/24/2019, 7:49 PMAlex Spence
06/24/2019, 7:50 PMdata class MetricFilter<T> (val filterId: String, val defaultValue: T? ) {
fun createValue(value: Any?): MetricFilterValue<T> {
val result: T?
result = if (value == null) {
defaultValue ?: throw MetricFilterMustBeSetException(filterId)
} else {
if (value is T) {
value
} else {
throw InvalidMetricFilterValueTypeException(filterId)
}
}
return MetricFilterValue(this, result)
}
}
Alex Spence
06/24/2019, 7:50 PM(value is T)
due to type erasure