-
The other day I was implementing some function that did the following:
1. download some binary into a cache (via coursier)
2. copy the binary to a target path
3. set the executable bits on copied…
-
In version 0.5.0, we were able to suppress unused value warnings in scalacheck tests like so:
```
package com.test
import org.scalatest.freespec.AnyFreeSpec
import org.scalatest.matchers.should.…
-
Given this maven_install:
```
maven_install(
name = "maven",
artifacts = [
"ai.x:diff_2.12:2.0.1",
"ch.qos.logback:logback-classic:1.3.6",
"…
-
```scala
import cats.effect.std.Dispatcher
import cats.effect.unsafe.{IORuntime, IORuntimeBuilder}
import cats.effect.{ExitCode, IO, IOApp}
import cats.implicits.toTraverseOps
import com.sun.man…
jacum updated
9 months ago
-
55044195c8d6bdfdadcd7411aa6ebe9e97bcf045
https://cirrus-ci.com/task/5809014697623552?logs=main#L3024
```
[info] DispatcherSpec
[info] sequential dispatcher should
[info] await = true
...
…
-
Hi I see the current implementation is using a VT to do the `schedule(...)` and which will use the `ScheduledExecutorService UNPARKER` after all, but IIRC, that will cause problem for large timeout/sc…
-
@dandclark opened this issue on the repo that contains the [explainer](https://github.com/MicrosoftEdge/MSEdgeExplainers/blob/main/ControlUICustomization/explainer.md) for this. For context, we releas…
-
Using http4s 0.23.7.
Given the a simple service which parses the body as a multipart, which:
```scala
import cats.effect._
import org.http4s.blaze.server.BlazeServerBuilder
import org.http4s.…
adamw updated
7 months ago
-
I am attempting to understand the ["Open Window Algorithm"](https://w3c.github.io/payment-handler/#dfn-open-window-algorithm) section of the spec. My understanding is that it would allow (say) exampl…
-
This might be specific to `unsafeToFuture`, but closing a `Dispatcher` runs all queued tasks and does so concurrently, which was even more alarming for `sequential`, as seen below.
```
val (dispatch…