queues
Here are 303 public repositories matching this topic...
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
Jul 23, 2019
-
Updated
Jan 21, 2020 - C++
The ShouldQueue interface is a laravel common to tell the queueable class to queue itself as normal behavior.
It would be great if this packages supports this interface and queues actions called via execute() only if the class implements this interface.
-
Updated
Dec 5, 2019 - Go
-
Updated
May 17, 2020 - C++
-
Updated
May 12, 2020 - Java
-
Updated
Jun 22, 2019 - Apex
-
Updated
Mar 13, 2020 - JavaScript
-
Updated
Oct 31, 2019 - Elixir
-
Updated
Feb 4, 2019 - Go
-
Updated
Feb 29, 2020 - Ruby
-
Updated
Apr 27, 2020 - Go
-
Updated
Dec 6, 2018 - PHP
-
Updated
May 4, 2020 - Python
-
Updated
Sep 21, 2018 - C
-
Updated
May 11, 2020 - PHP
-
Updated
Oct 18, 2019 - PHP
-
Updated
Apr 4, 2017 - Python
-
Updated
Feb 25, 2020 - C#
-
Updated
Jan 21, 2020 - C++
-
Updated
Dec 21, 2019 - Java
-
Updated
May 21, 2020 - Java
-
Updated
Jun 25, 2018 - PHP
Improve this page
Add a description, image, and links to the queues topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the queues topic, visit your repo's landing page and select "manage topics."
steps to reproduce
Write a loop, from 1 to 80000, each time add a random int to the max heap.
In theory it takes very little time(NlogN, N=80000, <1sec ), but the program does take a long time.
I'v also tested the BinaryHeap in https://github.com/SolutionsDesign/Algorithmia, it performs well, so it is probably due to the bad algorithm.