awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectServer MCPDespreCum realizăm clasamentulPresă
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 repository-uri

Awesome GitHub RepositoriesAll-Completion Synchronization

Synchronization primitives that resolve only after all inputs complete or immediately upon the first failure.

Distinct from Promise-Based Flow Control: Existing candidates are either for DOM updates or general flow control; this is a specific synchronization primitive (like Promise.all).

Explore 4 awesome GitHub repositories matching programming languages & runtimes · All-Completion Synchronization. Refine with filters or upvote what's useful.

Awesome All-Completion Synchronization GitHub Repositories

Găsește cele mai bune repo-uri cu AI.Vom căuta cele mai potrivite repository-uri folosind AI.
  • kriskowal/qAvatar kriskowal

    kriskowal/q

    15,030Vezi pe GitHub↗

    q is a JavaScript promise library and asynchronous flow controller designed to manage non-blocking operations. It serves as a system for coordinating parallel tasks and sequencing asynchronous workflows through task chaining and error propagation. The library distinguishes itself with specialized debugging tools that capture long stack traces across asynchronous jumps and monitor unhandled rejections to prevent silent failures. It also functions as a remote object proxy, forwarding method calls to remote targets and routing responses back through promises. The project provides comprehensive

    Fulfills a promise only after all input promises fulfill or rejects immediately upon the first failure.

    JavaScript
    Vezi pe GitHub↗15,030
  • ruby-concurrency/concurrent-rubyAvatar ruby-concurrency

    ruby-concurrency/concurrent-ruby

    5,830Vezi pe GitHub↗

    Concurrent Ruby is a comprehensive concurrency toolkit for the Ruby language that provides thread-safe data structures, synchronization primitives, and asynchronous execution patterns. It implements core concurrency abstractions including an actor model framework where isolated actors communicate through asynchronous message passing, a future and promise system for composing non-blocking operations, and thread pool executors that manage reusable worker threads for concurrent task execution. The library distinguishes itself through a broad set of coordination mechanisms that go beyond basic th

    Provides a future that resolves only after all futures in a collection have resolved.

    Ruby
    Vezi pe GitHub↗5,830
  • salesforce/blipAvatar salesforce

    salesforce/BLIP

    5,676Vezi pe GitHub↗

    BLIP is a vision-language model framework that combines contrastive, matching, and language modeling objectives to align images with text. Built on a multimodal encoder-decoder architecture, it supports distributed data-parallel training with cosine learning rate scheduling and sliding-window metric tracking for training stability. The framework provides capabilities for image captioning, visual question answering, and cross-modal retrieval, scoring semantic alignment between images and text through learned embeddings. It includes toolkits for fine-tuning pre-trained models on custom datasets

    Averages locally tracked counters across distributed workers so each process sees identical global metric values.

    Jupyter Notebookimage-captioningimage-text-retrievalvision-and-language-pre-training
    Vezi pe GitHub↗5,676
  • lewissbaker/cppcoroAvatar lewissbaker

    lewissbaker/cppcoro

    3,818Vezi pe GitHub↗

    cppcoro is a C++ coroutine library and concurrency toolkit providing primitives for asynchronous tasks, lazy generators, and non-blocking execution. It functions as an asynchronous I/O framework for managing network sockets and file operations through an event loop. The library features a work-stealing thread pool for distributing tasks across multiple cores and a set of async generators for producing lazy sequences of values both synchronously and asynchronously. It includes a concurrency toolkit with async mutexes, latches, and shared tasks to coordinate multi-threaded execution. Its capab

    Creates synchronization points that resolve only after all provided asynchronous tasks have finished.

    C++asyncasync-awaitasynchronous-programming
    Vezi pe GitHub↗3,818
  1. Home
  2. Programming Languages & Runtimes
  3. All-Completion Synchronization

Explorează sub-etichetele

  • Distributed Metric AggregatorsSynchronizes and averages locally tracked training metrics across GPU workers so each process sees identical global values. **Distinct from All-Completion Synchronization:** Distinct from All-Completion Synchronization: focuses on aggregating numeric metrics across distributed workers rather than resolving promises upon completion.