awesome-repositories.com
المدونة
MCP
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعخادم MCPحولكيفية ترتيب النتائجالصحافة
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 مستودعات

Awesome GitHub RepositoriesStreaming Input Parsers

Parsers capable of processing partial data chunks and requesting more input when needed.

Distinct from Input Parsing: Focuses on the incremental parsing of data streams rather than UI event handling or network piping.

Explore 3 awesome GitHub repositories matching operating systems & systems programming · Streaming Input Parsers. Refine with filters or upvote what's useful.

Awesome Streaming Input Parsers GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • geal/nomالصورة الرمزية لـ Geal

    Geal/nom

    10,422عرض على GitHub↗

    nom is a Rust parser combinator framework used to build complex parsers for binary and text data. It functions as an abstract syntax tree generator and a bit-level binary parser, allowing users to construct structured data by combining small, reusable parsing functions. The framework provides specialized support for zero-copy binary parsing, extracting data as slices from raw byte arrays to avoid memory allocations. It also includes a streaming data parser capable of processing partial input chunks from networks or files and signaling when additional input is required. The project covers a b

    Provides a streaming parser that handles partial input chunks from networks or files.

    Rust
    عرض على GitHub↗10,422
  • rust-bakery/nomالصورة الرمزية لـ rust-bakery

    rust-bakery/nom

    10,426عرض على GitHub↗

    nom is a parser combinator framework for Rust used to build complex parsers by combining small, reusable parsing functions. It functions as a zero-copy parsing tool that minimizes memory overhead by returning slices of the original input instead of allocating new memory. The framework is designed for diverse data formats, serving as a binary data parser with configurable endianness and a bitstream processing library capable of extracting values of arbitrary bit length. It also functions as a streaming data parser that can process data arriving in chunks and signal when additional input is req

    Capable of processing partial data chunks and requesting more input when the buffer is exhausted.

    Rustbyte-arraygrammarnom
    عرض على GitHub↗10,426
  • opennmt/ctranslate2الصورة الرمزية لـ OpenNMT

    OpenNMT/CTranslate2

    4,319عرض على GitHub↗

    CTranslate2 is a C++ inference engine and runtime for Transformer models, designed to execute models on both CPU and GPU with optimizations for speed and memory efficiency. It functions as a model format converter, quantization tool, and REST API server, enabling deployment of neural machine translation, automatic speech recognition, and text generation models. The engine distinguishes itself through a suite of runtime optimizations including layer fusion, weight-matrix quantization, batch-by-length grouping, and a caching allocator that reuses GPU memory. It supports tensor-parallel model di

    Processes translation or scoring results one item at a time from an iterable source for pipeline-style workflows.

    C++avxavx2cpp
    عرض على GitHub↗4,319
  1. Home
  2. Operating Systems & Systems Programming
  3. Streaming Input Parsers

استكشف الوسوم الفرعية

  • Iterable Stream ProcessorsProcesses translation or scoring results one item at a time from an iterable source for pipeline-style workflows. **Distinct from Streaming Input Parsers:** Distinct from Streaming Input Parsers: processes iterables of token sequences, not raw byte streams.