Skip to content
#

asynchronous

Here are 1,794 public repositories matching this topic...

bnoordhuis
bnoordhuis commented Sep 28, 2020

See: https://illumos.org/man/5/epoll

Idea: move logic from src/unix/linux-core.c to src/unix/epoll.c and share that between Linux and Illumos.

Motivation:

  • removes 250-300 lines of code from src/unix/sunos.c
  • switches to much more battle-hardened code
  • makes libuv more efficient because it no longer has to accommodate this event ports quirk:
diff --git a/src/unix/core.c b/s
fyodor
fyodor commented Mar 16, 2021

Right now, whenever Zenmap crashes, it gives the user a stack trace and asks the user to send it to the Nmap dev list. So we get a flood of emails (most of which aren't even allowed through moderation) which often contain just a stack trace with no subject line or any explanatory text in the message body. Lots of these are for well known issues in older versions of Zenmap. So it's not very usef

transmittable-thread-local

📌 TransmittableThreadLocal(TTL), the missing Java™ std lib(simple & 0-dependency) for framework/middleware, provide an enhanced InheritableThreadLocal that transmits values between threads even using thread pooling components.

  • Updated Mar 3, 2021
  • Java
osi
osi commented Jan 22, 2021

The window operators should indicate if the returned Flux for each window is safe to subscribe to multiple times.

Documentation Issue

I had a data processing pipeline that I introduced batching to, using the window operator. In this pipeline, it will retry a batch if it faces a transient error. When batching was added, and it retried, I saw a failure of `IllegalStateException: UnicastP

zio
pshirshov
pshirshov commented Feb 23, 2021

I have a small piece of zlayer code. The layers are defined as vals, like so:

  private final val kafkaLayer: Layer[Error, Kafka]                                      = Config.live >>> Kafka.live
  private final val transactorLayer: Layer[Error, DbTransactor]                          = (Blocking.live ++ ConfigDb.live) >>> db.hikariLayer
  private final val queryConfigLayer: Layer[

Improve this page

Add a description, image, and links to the asynchronous topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the asynchronous topic, visit your repo's landing page and select "manage topics."

Learn more