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

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

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेस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

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

    python/mypy

    20,489GitHub पर देखें↗

    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-nodeTypeStrong का अवतार

    TypeStrong/ts-node

    13,136GitHub पर देखें↗

    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.