Nadav Samet
Nadav Samet
Docs say that classes extending asynctest.TestCase can have either a sync or async. Because the default implementation is sync, it is impossible to write mixins that implement setUp and call...
Example: foo.proto: ``` package foo; option java_package = "com.company.proto"; message FooMsg { optional int a = 1; } ``` bar.proto: ``` option java_package = "com.company.proto"; import "foo.proto"; message BarMsg {...
Linting the following code: ``` package pkg sealed trait Base case object Sub extends pkg.Base ``` would incorrectly yield: ``` [warn] /tmp/linter/src/main/scala/Test.scala:3: [UnextendedSealedTrait] This sealed trait is never extended [warn]...
I tried to change the style to Plasma and as a result, the app won't start. This is what gets printed in the terminal: ``` ➜ ~ noson-app "using file...
Add support in TextFormat for: * print unknown fields * printing Any (see upstream testPrintAny_customBuiltTypeRegistry) * printing extensions and unknown extensions
Scala descriptors are not generated for services, and as a result it is impossible to inspect in Scala methods and options. See https://stackoverflow.com/questions/48029470/unknown-fields-in-proto-generated-by-scalapb
I am using sbt-release to release a sbt plugin that cross-compiles for sbt 0.13.15 and sbt 1.0.0-M6 (via settting `crossSbtVersions := Seq("0.13.15", "1.0.0-M6")` How do I get the publish step...
When using `fastOptJS::webpack` the produced `fastopt.js` file has the permision `rw-------` (only user readable and writable). Anything else under `target` tends is generally world and group readable (`rw-r--r--`), so this...
Looking at: https://github.com/zio/zio-prelude/blob/9bbfa4fd23b85b67f58b71c46ff4f7c85ab243c4/src/main/scala/zio/prelude/Commutative.scala#L8 There are commutative operations that are not associative, for example, the average of two numbers. I am still trying to grok the the code, but wonder if...
In https://github.com/zio/zio-prelude/blob/9bbfa4fd23b85b67f58b71c46ff4f7c85ab243c4/src/main/scala/zio/prelude/Inverse.scala#L10-L16: ``` /** * Returns a right inverse for the given `A` value, such that when * the value is combined with the inverse (on the right hand side),...