Skip to content
#

asynchronous

Here are 1,785 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
nnposter
nnposter commented Nov 15, 2020

The script is described as

Finds subdomains of a web server by querying Google's Certificate Transparency logs database (https://crt.sh).

At the moment the script reports all hostname-like identities where the input/target hostname is present somewhere in the identity. Specifically, the script does not verify that a returned identity is truly a subdomain of the target hostname.

As an ex

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 Feb 25, 2021
  • Java
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