awesome-repositories.com
ब्लॉग
awesome-repositories.com

AI-संचालित खोज के साथ बेहतरीन ओपन-सोर्स रिपॉजिटरी खोजें।

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेसMCP सर्वर
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 रिपॉजिटरी

Awesome GitHub RepositoriesRecursive Parallel Distribution

Distributing recursive operations across multiple threads to avoid deadlocks during sub-task completion.

Distinct from Parallel Task Spawning: Focuses specifically on recursive workload distribution via promises, whereas the candidate is generic scoped spawning.

Explore 3 awesome GitHub repositories matching software engineering & architecture · Recursive Parallel Distribution. Refine with filters or upvote what's useful.

Awesome Recursive Parallel Distribution GitHub Repositories

AI के साथ बेहतरीन रिपॉजिटरी खोजें।हम AI का उपयोग करके सबसे सटीक रिपॉजिटरी खोजेंगे।
  • tj/coT

    tj/co

    11,856GitHub पर देखें↗

    co is a JavaScript generator control flow library and non-blocking workflow engine. It manages asynchronous logic by using generators and promises to simulate a synchronous coding style. The project transforms generator functions into standard functions that return promises, ensuring compatibility with non-generator interfaces. It also functions as a promise-based asynchronous orchestrator that executes multiple operations concurrently through the recursive resolution of nested promise collections. The library provides high-level primitives for asynchronous flow control and non-blocking work

    Resolves nested arrays or objects of promises recursively to ensure complete parallel task execution.

    JavaScript
    GitHub पर देखें↗11,856
  • microsoft/napajsMicrosoft का अवतार

    Microsoft/napajs

    9,180GitHub पर देखें↗

    Napajs is an embeddable JavaScript engine and multi-threaded runtime designed to be integrated directly into other software applications as a component. It serves as a parallel computation framework that allows JavaScript code to execute across multiple threads, bypassing the standard single-threaded event loop limitation to handle CPU-intensive tasks. The runtime is distinguished by its ability to load and execute modules from the NPM ecosystem and its pluggable execution environment. This architecture allows for custom implementations of memory allocation, system logging, and performance me

    Distributes recursive operations across multiple threads using promises to prevent deadlocks during sub-task completion.

    C++
    GitHub पर देखें↗9,180
  • gevent/geventgevent का अवतार

    gevent/gevent

    6,440GitHub पर देखें↗

    Gevent is a Python coroutine concurrency library and asynchronous task manager designed for high-concurrency I/O tasks. It provides a cooperative networking framework for building asynchronous TCP, UDP, and HTTP servers, as well as a WSGI web server implementation for hosting web applications. The project is distinguished by its standard library monkey-patching tool, which replaces blocking synchronous functions with cooperative versions to enable asynchronous behavior in third-party code. This allows for a cooperative multitasking workflow where the system yields execution during I/O waits t

    Distributes work across thread pools using mapping methods that support recursive calls and exception propagation.

    Pythonasynciocoroutinesgreenlet
    GitHub पर देखें↗6,440
  1. Home
  2. Software Engineering & Architecture
  3. Task Scheduling
  4. Parallel Task Executors
  5. Parallel Task Spawning
  6. Recursive Parallel Distribution

सब-टैग एक्सप्लोर करें

  • Recursive Promise DistributionDistributing recursive operations across asynchronous promise collections to ensure all sub-tasks complete. **Distinct from Recursive Parallel Distribution:** Focuses on promise-based recursion rather than thread-level distribution or data-parallelism.