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

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

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

4 مستودعات

Awesome GitHub RepositoriesRuntime Initializations

Processes for configuring the initial environment, flags, and state of a language runtime.

Distinct from C++ Engine Extensions: Shortlist candidates refer to game engines or workflow scaffolding, not the internal initialization of a JS runtime.

Explore 4 awesome GitHub repositories matching programming languages & runtimes · Runtime Initializations. Refine with filters or upvote what's useful.

Awesome Runtime Initializations GitHub Repositories

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

    jerryscript-project/jerryscript

    7,399عرض على GitHub↗

    JerryScript is a lightweight, ECMAScript-compliant JavaScript engine and bytecode compiler designed for resource-constrained devices. It serves as an embedded interpreter and IoT scripting runtime, enabling the execution of JavaScript code within native C applications on hardware with limited memory. The project differentiates itself through a focus on low-memory runtime management, utilizing bytecode precompilation and pre-compiled state snapshots to reduce startup time and memory overhead. It features a C-binding native bridge for bidirectional communication between native code and scripts,

    Sets up the execution environment and configuration flags required to run JavaScript code.

    C
    عرض على GitHub↗7,399
  • dashingsoft/pyarmorالصورة الرمزية لـ dashingsoft

    dashingsoft/pyarmor

    5,114عرض على GitHub↗

    Pyarmor هي مجموعة أدوات لحماية برمجيات Python من خلال تعمية الكود المصدري (obfuscation)، وحماية البايت كود، والتجميع الثنائي. تعمل كأداة تعمية للكود، وحماية للبايت كود، ومجمع ثنائي مصمم لمنع الهندسة العكسية والوصول غير المصرح به إلى نصوص وحزم Python. يتميز المشروع بتوفير مدير تراخيص برمجيات شامل يتيح الترخيص المرتبط بالأجهزة. يسمح هذا للمطورين بقفل تنفيذ النص البرمجي على أجهزة مادية أو أجهزة افتراضية محددة وفرض تواريخ انتهاء صلاحية صارمة عبر مفاتيح تشغيل مشفرة. تغطي إمكانياته الأوسع التوزيع الآمن من خلال توليد ملفات wheel معماة وملفات تنفيذية مستقلة لمنصات متعددة. تشمل مساحة الأمان فحوصات سلامة وقت التشغيل، مثل منع إرفاق مصحح الأخطاء، والحماية على مستوى الذاكرة، وتحويل وظائف Python إلى امتدادات C مجمعة. تتضمن الأداة واجهة سطر أوامر وتدعم التكامل في خطوط أنابيب التكامل المستمر (CI) لأتمتة عملية التعمية أثناء البناء.

    Implements a specialized bootstrap sequence to verify environment integrity and detect debuggers before loading protected code.

    Python
    عرض على GitHub↗5,114
  • pytorch/executorchالصورة الرمزية لـ pytorch

    pytorch/executorch

    4,296عرض على GitHub↗

    ExecuTorch is a lightweight C++ runtime for deploying PyTorch models on mobile, embedded, and edge hardware. It provides an ahead-of-time compilation pipeline that exports, quantizes, and lowers model graphs into compact serialized programs, then executes them through a minimal runtime with hardware acceleration and on-device large language model inference capabilities. The project distinguishes itself through a hardware accelerator delegate system that partitions model subgraphs and offloads computation to specialized backends including NPUs, GPUs, and DSPs from Apple, Arm, Intel, MediaTek,

    Runs named methods on loaded models, passing tensors and retrieving outputs from the runtime.

    Pythondeep-learningembeddedgpu
    عرض على GitHub↗4,296
  • cch123/golang-notesالصورة الرمزية لـ cch123

    cch123/golang-notes

    4,032عرض على GitHub↗

    هذا المشروع عبارة عن مرجع تقني ومجموعة من ملاحظات التحليل الداخلي التي تركز على وقت تشغيل لغة Go والمترجم. يوفر تفصيلاً دقيقاً للغة من الداخل، ويغطي إدارة الذاكرة، وجمع القمامة، ونموذج تنفيذ المجدول. تتميز المادة بتوفير غوص عميق في تفاصيل النظام منخفضة المستوى، بما في ذلك مرجع لتعليمات تجميع Go، واستخدام السجلات، وواجهة استدعاء النظام. ويحلل بشكل خاص التنفيذ الداخلي لبدائيات التزامن، مثل آلية جدولة الروتينيات (goroutine)، وعمليات القنوات، وتنفيذ قفل الميوتكس (mutex). يمتد التغطية إلى نظرية بناء المترجم، بما في ذلك التحليل المعجمي والنحوي، بالإضافة إلى آليات نظام النوع وإدارة الواجهة. كما يفصل تقنيات تحسين الأداء المختلفة، وأدوات تشخيص وقت التشغيل لتتبع المكدس، وبدائيات إدخال/إخراج الشبكة.

    Details the internal initialization sequence of the Go runtime, including CPU detection and memory pool setup.

    HTMLcodegogolang
    عرض على GitHub↗4,032
  1. Home
  2. Programming Languages & Runtimes
  3. Runtime Initializations

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

  • Model Method InitializationsThe process of initializing specific execution paths, tensor metadata, and hardware delegates within a compiled model. **Distinct from Runtime Initializations:** Focuses on AI model-specific method and delegate initialization rather than general language runtime setup.
  • Processor AllocationsBootstrapping the execution environment by allocating a configurable number of processors based on available CPU cores. **Distinct from Runtime Initializations:** Distinct from Runtime Initializations: focuses on processor allocation based on CPU cores, not general environment configuration.
  • Security Environment VerificationsRuntime initialization sequences that verify environment integrity and detect debuggers. **Distinct from Runtime Initializations:** Focuses on security checks during startup, whereas Runtime Initializations generally covers environment configuration.