concurrency
Here are 1,886 public repositories matching this topic...
PHP Version 7.1.9
The documentation says that Swoole coroutine cannot be used with xdebug, while developling applications xdebug is very helpful tool. For smaller application it may not be a problem but larger applications makes it necessary to use it.
My question is how can I debug applications while still using Swoole Coroutines ?
Problem
Lacking the following implementation:
impl<T> Threaded for T
where
T: Agent<Reach = Private>,
Implementation Tips
- Implementing
Threaded
is a g
The core documentation on how to make requests says to use xxxNow to make request from a client, but those methods are deprecated, e.g., getNow.
Hi all,
I recently migrate from Untyped actor to typed, but the Useful Test framework is not working anymore.
I cannot find any documentation of how to make works TestProbe
and TestActorRef
with Akka actor Typed
Regards
-
Updated
Sep 17, 2019 - Java
There is a document on the subject, but it's lacking in a few ways:
- It does not state what exactly the default placement strategy is.
- It does not state whether one can override the default strategy for all grains.
- It does not explain how each of the built-in strategies work ([random, prefer local,
Issue description
In writing rust zmq bindings for tokio, the question came up about when zmq_send
and zmq_recv
might return EAGAIN
when passed the ZMQ_DONTWAIT
flag in a multipart message. The implication of the high water mark documentation is that it will only return EAGAIN
on the first part of the multipart message, but I couldn't find it explicitly stated anywhere that this
-
Updated
Jun 3, 2020
-
Updated
May 11, 2020
I have some code that is throwing an exception in a post-park action (i.e. inside the handler passed to parkAndSerialize). Quasar silently eats this exception in RunnableFiberTask.onException(). It's really confusing to have the framework eat exceptions without any kind of logging or error printing at all.
I suggest changing this code such that if the exception isn't handled here, it's either re-
I'm new in Akka and trying to self-define a dispatcher in my code. But there are so few akka dotnet examples available, and most of them are using config files..
Could I create a dispatcher in code, i.e., like the follows:
public Dispatcher myDispatcher = new Dispatcher(new DispatcherConfigurator(ConfigurationFactory.ParseString(@"akka.actor.default-dispatcher { type = ""Akka.Dispatch.TaskDisp
JRuby already handles most annoying warnings (due accessing JVM internals) on Linux/Mac.
Windows seems left behind with these, someone should potentially port the bash launcher changes
(to read dot files https://github.com/jruby/jruby/blob/9.2.11.1/bin/.jruby.module_opts)
``
-
Updated
Apr 19, 2020
Gamma correction is among the things most often done wrong by graphics programming novices. It's almost as bad as missing scene-related color transforms and linear volume sliders in the average video game. The code example in the readme should definitely mention to adjust.Gamma(img, 1/2.2)
before doing any color mixing and adjust.Gamma(img, 2.2)
before saving back to file (for as long as _bild
Hi, I'm not sure if more platforms are interesting to you, but I've made a slightly more complete implementation of padding a struct to the cache line size here:
https://github.com/tinco/cache_line_size
I got the information on the cache line sizes from the Go compiler repository, so I'm pretty sure these are correct for all platforms Go runs on, which is a whole bunch.
-
Updated
Jul 21, 2019
It's not easy to understand what the code generators under jctools-build are supposed to do. I think one or two phases documenting their goal would be useful.
I am proposing to document these classes:
- JavaParsingAtomicArrayQueueGenerator.java
- JavaParsingAtomicLinkedQueueGenerator.java
- JavaParsingAtomicQueueGenerator.java
ZTransducer is an effectful chunk processing function, and thus forms an arrow. We should add the following combinators on it:
- zipping:
(ZTransducer[A, B], ZTransducer[A, C]) => ZTransducer[A, (B, C)]
-
racing:looks problematic to implement currently(ZTransducer[A, B], ZTransducer[A, C]) => ZTransducer[A, Either[B, C]]
- both: `(ZTransducer[A, C], ZTransducer[B, D]) => ZTr
-
Updated
Mar 26, 2020 - Swift
-
Updated
May 23, 2020 - Swift
-
Updated
Nov 26, 2019 - Go
-
Updated
Jun 11, 2020 - PHP
-
Updated
Dec 6, 2019 - Go
Do you think it's necessary at this stage?
Try to add anchor links to table rows in documentation (specifically for performance counters, to allow linking to specific counters).
Just opening this as a reminder for myself. Someone knowledgable in sphinx and restructuredtext can feel free to do it as well.
Replace concrete Bastion Executor with Agnostik.
So everyone can use whatever they want as guarantee.
-
Updated
Apr 29, 2020 - C
-
Updated
Jun 18, 2020 - Go
Improve this page
Add a description, image, and links to the concurrency topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the concurrency topic, visit your repo's landing page and select "manage topics."
Spurred by conversation in avajs/ava#2449 and avajs/ava#1485 we'd like for our assertions to return booleans.
true
when they pass,false
when they fail. This does not apply to thethrows()
andthrowsAsync()
assertions.Failing assertions will fail the test, but do not throw exceptions. This means your test does not stop executing. Usua