mp
09/04/2020, 10:07 AMParameters info
shortcut I go this. but with cmd+shif+a
action its worksnatario1
09/07/2020, 10:30 AMelect
09/10/2020, 9:08 AMelect
09/11/2020, 8:23 AMif (!clipOriginLowerLeft) { val tmp = T; T = B; B = tmp; }
stays in one line instead of
if (!clipOriginLowerLeft) {
val tmp = T; T = B; B = tmp; } // Swap top and bottom if origin is upper left
poohbar
09/15/2020, 7:41 PMaudriusk
09/16/2020, 7:53 AMFleshgrinder
09/21/2020, 9:04 AMPeter
09/22/2020, 5:20 PMzalewski.se
09/23/2020, 2:06 AMCode Style Scheme
being reseted back to the `default`/`project` setting all the time? Whenever I set my own Scheme
it works but after a while it’s back to project
setting… It’s really annoying as it’s breaking my all imports and auto-formatting 😕 I could tackle it down that it’s reverting my changes after doing sync project with gradle
. It’s happening on AS (since version 4.0 I guess)elect
09/24/2020, 9:04 AMfun sliderCalcRatioFromValueT(dataType: DataType, v: Int, vMin: Int, vMax: Int,
power: Float, linearZeroPos: Float): Float {
while on the other one
fun sliderCalcRatioFromValueT(
dataType: DataType, v: Int, vMin: Int, vMax: Int,
power: Float, linearZeroPos: Float,
): Float {
anything I can tweak?tim
09/24/2020, 9:40 AMDaniel Svensson
09/24/2020, 10:01 AMrrva
09/25/2020, 6:55 AMorg.gradle.caching=true
org.gradle.parallel=true
and org.gradle.configureondemand=true
But I am unsure what is the path forward for compilation when working inside IntelliJ, to shorten time-to-testtoban
09/29/2020, 10:04 AMSudhir Singh Khanger
09/30/2020, 4:24 AMhttps://i.imgur.com/OjL3tVG.png▾
mikehearn
10/04/2020, 11:38 AMzeugederunity
10/06/2020, 12:56 PMDaniel Svensson
10/07/2020, 7:10 AMSlackbot
10/09/2020, 11:33 AMbjonnh
10/15/2020, 10:29 PMtarek
10/16/2020, 8:29 AMdiesieben07
10/16/2020, 9:46 AM@OptIn
I get the warning "This class can only be used with the compiler argument '-Xopt-in=kotlin.RequiresOptIn'his class can only be used with the compiler argument '-Xopt-in=kotlin.RequiresOptIn'".
I added the following in my `build.gradle.kts`:
kotlin {
targets.all {
compilations.all {
kotlinOptions.freeCompilerArgs += "-Xopt-in=kotlin.RequiresOptIn"
}
}
}
But the warning remains.Rob Elliot
10/28/2020, 11:10 AMfun main() {
println("Hello World")
}
now kicks off a gradle task :MainKt.main()
, the net result of which is that instead of one line of output I get 34 lines of gradle build output.
Is this a new thing? I kind of get that it might be desirable to reuse gradle to ensure that everything’s exactly the same in the IDE as via the build, but surely there’s a way to swallow the build output?Omar Mainegra
10/29/2020, 2:31 PMIdea
could respect the compiler flag -XXLanguage:-NewInference
, right now it doesn't seem to be the case (Idea/AS hang with the new FE). The reason I'm bringing this up because https://youtrack.jetbrains.com/issue/KT-41644 was reopen, we are still stuck in 1.3.71 even when our code works 1.4.x (cmd gradle), but without an IDE we can't migrateaddamsson
10/29/2020, 7:50 PMcommonTest
) as tests. I can see that it is marked as a test sources directory, but the green triangle (to run it) is not visible anymore next to functions annotated with @Test
. I already tried reimporting and invalidating the caches...what am I doing wrong?addamsson
10/29/2020, 8:20 PMchristophsturm
10/31/2020, 2:59 PMDavid Glasser
11/02/2020, 10:09 PMspand
11/03/2020, 3:30 PMLoading ...
screen in the editor window when trying to open a file once in a while ? Maybe its related to an unsynched gradle project but I cannot pin it down. On the latest 2020.2.3Kris Wong
11/03/2020, 4:53 PMKris Wong
11/03/2020, 4:53 PMchristophsturm
11/03/2020, 5:09 PMwasyl
11/03/2020, 5:14 PMchristophsturm
11/03/2020, 6:03 PMKris Wong
11/03/2020, 6:29 PMGiorgos Neokleous
11/03/2020, 9:47 PMKris Wong
11/03/2020, 9:49 PMGiorgos Neokleous
11/03/2020, 9:53 PM