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

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

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

2 مستودعات

Awesome GitHub RepositoriesParallel Type Validation

Distribution of type-checking workloads across multiple processes to reduce total analysis time.

Distinct from Type Checking: Distinct from Type Checking: focuses on the parallel execution strategy to improve performance during validation.

Explore 2 awesome GitHub repositories matching part of an awesome list · Parallel Type Validation. Refine with filters or upvote what's useful.

Awesome Parallel Type Validation GitHub Repositories

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

    python/mypy

    20,489عرض على GitHub↗

    mypy is a static type checker for Python that analyzes source code to detect type errors and inconsistencies without executing the program. It functions as a static analysis tool and type inference engine, providing a gradual typing system that allows type hints to be added to a codebase incrementally while maintaining compatibility with dynamic typing. The project distinguishes itself through a combination of performance and precision features. It utilizes a daemon-based incremental checking system and multi-process parallel analysis to manage large codebases, supported by binary cache persi

    Distributes code analysis across multiple worker processes to reduce the total time required for type validation.

    Pythonlinterpythontypechecker
    عرض على GitHub↗20,489
  • typestrong/ts-nodeالصورة الرمزية لـ TypeStrong

    TypeStrong/ts-node

    13,136عرض على GitHub↗

    ts-node is a TypeScript execution engine and just-in-time transpiler for Node.js. It enables the direct execution of TypeScript files by converting them to JavaScript on the fly, removing the requirement for a manual pre-compilation build step. It also provides a TypeScript read-eval-print loop for evaluating expressions and testing code snippets in real time. The project integrates with the Node.js module system as a loader hook to resolve and load files using native import syntax. It features a pluggable compiler interface that allows the use of external transpilers to accelerate execution

    Allows skipping the type-checking phase during execution to reduce startup time.

    TypeScripthacktoberfestnodejsrepl
    عرض على GitHub↗13,136
  1. Home
  2. Part of an Awesome List
  3. Developer Tools
  4. Type Checking
  5. Parallel Type Validation

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

  • Optional ValidationAbility to toggle type checking on or off to optimize for startup speed. **Distinct from Parallel Type Validation:** Distinct from Parallel Type Validation: focuses on skipping the validation phase entirely for speed, not distributing it across processes.