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

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

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

3 रिपॉजिटरी

Awesome GitHub RepositoriesFunction Execution Wrappers

Utilities that control function invocation based on call counts or specific trigger sequences.

Distinguishing note: Candidates focus on AI tool wrapping or timing; this is about logic-based execution frequency control.

Explore 3 awesome GitHub repositories matching software engineering & architecture · Function Execution Wrappers. Refine with filters or upvote what's useful.

Awesome Function Execution Wrappers GitHub Repositories

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

    ankurp/Dollar

    4,240GitHub पर देखें↗

    Dollar is a functional programming library for Swift that provides a comprehensive toolkit for collection manipulation, string processing, mathematical calculations, and date and time management. It serves as a utility suite for filtering, aggregating, and restructuring arrays and dictionaries. The project implements functional programming patterns such as currying, memoization, and function composition. It also features a chainable wrapper interface that allows multiple data transformations to be applied sequentially before extracting a final result. The library covers a wide range of capab

    Provides wrappers to control function invocation, including executing a function once or applying memoization.

    Swift
    GitHub पर देखें↗4,240
  • kolodny/exerciseskolodny का अवतार

    kolodny/exercises

    4,216GitHub पर देखें↗

    This project is a comprehensive educational suite of coding challenges and implementation guides focused on JavaScript. It provides a collection of programmatic exercises and interview questions designed to practice core logic and algorithms. The repository serves as a test-driven development workbook, pairing coding problems with test suites to verify the correctness of implemented solutions. It includes a specific framework for exercise solution verification and the integration of asynchronous logic into automated testing flows. The content covers a wide range of computer science building

    Provides a wrapper to ensure a target function executes only once.

    JavaScript
    GitHub पर देखें↗4,216
  • cenkalti/backoffcenkalti का अवतार

    cenkalti/backoff

    4,021GitHub पर देखें↗

    This is a Go library providing a framework for managing repetitive task execution and implementing exponential backoff strategies. It serves as a concurrency tool designed to prevent system overload during failures by retrying operations with increasing delays. The project implements a retry strategy framework that manages attempt limits and timeouts during unstable network or system calls. It specifically provides an implementation of the exponential backoff algorithm to handle failing operations. The library covers reliability patterns for mitigating transient failures and service outages,

    Encapsulates target operations within closures to manage their repeated execution and error tracking.

    Gogolang
    GitHub पर देखें↗4,021
  1. Home
  2. Software Engineering & Architecture
  3. Function Execution Wrappers

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

  • Single Execution WrappersWrappers that ensure a function executes exactly once regardless of call frequency. **Distinct from Function Execution Wrappers:** Focuses on a one-time execution limit rather than recurring frequency control like debouncing.