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

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

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

3 रिपॉजिटरी

Awesome GitHub RepositoriesArray Bounds Checking

Static analysis of array access patterns to detect potential buffer overruns.

Distinct from Memory Bounds Checking: Focuses on static analysis of source code patterns rather than runtime enforcement or side-channel mitigation.

Explore 3 awesome GitHub repositories matching security & cryptography · Array Bounds Checking. Refine with filters or upvote what's useful.

Awesome Array Bounds Checking GitHub Repositories

AI के साथ बेहतरीन रिपॉजिटरी खोजें।हम AI का उपयोग करके सबसे सटीक रिपॉजिटरी खोजेंगे।
  • federico-busato/modern-cpp-programmingfederico-busato का अवतार

    federico-busato/Modern-CPP-Programming

    15,808GitHub पर देखें↗

    This project is a comprehensive educational resource and programming course covering C++ language semantics and features from C++03 through C++26. It provides structured tutorials and technical guides focused on modern C++ development. The material offers specialized instruction on template metaprogramming, including the use of type traits and compile-time computations. It features detailed guides on concurrency and parallelism for multi-core execution, as well as a reference for software design applying SOLID principles and RAII. Additionally, it covers build performance optimization to redu

    Enforces run-time precondition checks and bounds-checking on containers to harden library calls.

    HTMLc-plus-pluscode-qualitycompilers
    GitHub पर देखें↗15,808
  • facebook/inferfacebook का अवतार

    facebook/infer

    15,646GitHub पर देखें↗

    Infer is a static analysis toolset for Java, C, C++, and Objective-C designed to detect memory leaks, null dereferences, and resource bugs. It functions as a multi-language bug finder that identifies race conditions, deadlocks, and memory safety issues by translating source code into a common intermediate representation for analysis. The project distinguishes itself through an inter-procedural data flow analyzer that tracks movement between sources and sinks to detect tainted flows and generate data flow graphs. It also includes a framework for verifying temporal properties and reachability u

    Analyzes array access patterns in source code to identify potential buffer overruns.

    OCamlccode-qualitycpp
    GitHub पर देखें↗15,646
  • xtensor-stack/xtensorxtensor-stack का अवतार

    xtensor-stack/xtensor

    3,748GitHub पर देखें↗

    xtensor is a C++ multidimensional array library for numerical computing that provides N-dimensional containers with an interface mirroring the NumPy API. It utilizes a lazy evaluation expression engine to defer numerical computations until assignment, which minimizes memory allocations and intermediate copies. The library features a foreign memory array adaptor that allows it to wrap external buffers, such as NumPy arrays, to perform numerical operations in-place without duplicating data. It further optimizes performance through lazy broadcasting and a system that manages the lifetime of temp

    Performs runtime bounds and dimension checks to detect indexing errors and shape mismatches.

    C++c-plus-plus-14multidimensional-arraysnumpy
    GitHub पर देखें↗3,748
  1. Home
  2. Security & Cryptography
  3. Memory Bounds Checking
  4. Array Bounds Checking

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

  • Runtime Bounds CheckingEnforces memory access boundaries during program execution to prevent indexing errors. **Distinct from Array Bounds Checking:** Distinct from Array Bounds Checking: provides runtime enforcement rather than static analysis of source code.