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

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

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

4 مستودعات

Awesome GitHub RepositoriesPer-Task Indirect Reference Isolations

Uses per-thread pointers resolved at runtime so shared kernel code accesses only the data belonging to the currently running process.

Distinguishing note: No candidate covers the specific kernel pattern of per-task indirect reference isolation using per-thread pointers.

Explore 4 awesome GitHub repositories matching operating systems & systems programming · Per-Task Indirect Reference Isolations. Refine with filters or upvote what's useful.

Awesome Per-Task Indirect Reference Isolations GitHub Repositories

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

    balloonwj/CppGuide

    6,030عرض على GitHub↗

    CppGuide is a curated collection of educational resources and practical guides focused on C++ server development, Linux kernel internals, concurrent programming, network protocols, and security exploitation. It provides structured learning paths for backend developers, covering everything from interview preparation to building high-performance network servers and understanding operating system fundamentals. The guide distinguishes itself by offering in-depth, hands-on tutorials that walk through real-world implementations, including building a Redis-like server from scratch, designing custom

    Explains how the kernel resolves all references through per-task mappings to prevent direct object access.

    عرض على GitHub↗6,030
  • jerryzliu/dayflowالصورة الرمزية لـ JerryZLiu

    JerryZLiu/Dayflow

    5,751عرض على GitHub↗

    Dayflow is a privacy-focused productivity tool that records screen activity locally and analyzes it with on-device AI. It captures screen frames at one frame per second, stores everything in a local database, and processes all analysis entirely on the machine to keep data private. The system builds a searchable timeline of work activity and enables natural-language queries about past screen time. The tool distinguishes itself by offering runtime switching between local AI models and cloud providers, allowing users to balance accuracy, privacy, and performance. It automatically runs AI inferen

    Automatically purges old recordings based on configurable storage limits to prevent disk overflow.

    Swiftaichatgptclaude
    عرض على GitHub↗5,751
  • piscinajs/piscinaالصورة الرمزية لـ piscinajs

    piscinajs/piscina

    5,053عرض على GitHub↗

    Piscina is a Node.js worker thread pool that runs CPU-intensive JavaScript functions across multiple threads for parallel execution. It manages a dynamic pool of worker threads with configurable size, handling task submission, cancellation, and lifecycle management through a promise-based interface. The pool supports AbortController-based task cancellation, enabling clean termination of submitted or running tasks without disrupting other work. It enforces per-worker memory limits through V8 resource caps and applies backpressure with a configurable maximum queue size that emits a drain event

    Enforces per-worker heap memory limits using V8 resource caps to prevent memory exhaustion.

    TypeScriptmultithreadingnearform-researchnodejs
    عرض على GitHub↗5,053
  • nextest-rs/nextestالصورة الرمزية لـ nextest-rs

    nextest-rs/nextest

    2,828عرض على GitHub↗

    nextest is a high-performance test execution framework and Rust test runner designed to manage parallelism, retries, and timeouts. It serves as a test recording system that captures execution metadata and outputs into archives for later failure analysis and replay. The project distinguishes itself as a flakiness detection tool, identifying unstable tests through stress loops and automated retry policies. It also functions as a CI test orchestrator, capable of partitioning test suites across multiple workers and exporting results in standardized JUnit XML and JSON formats. The framework provi

    Caps the number and size of stored test run archives to prevent the local cache from consuming excessive disk space.

    Rustcargo-plugincargo-subcommandflaky-tests
    عرض على GitHub↗2,828
  1. Home
  2. Operating Systems & Systems Programming
  3. Per-Task Indirect Reference Isolations

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

  • Handle-to-Object ResolutionsResolves handles like file descriptors and PIDs into internal kernel objects via reference-counted, locked, or RCU-protected paths. **Distinct from Per-Task Indirect Reference Isolations:** Distinct from Per-Task Indirect Reference Isolations: focuses on the resolution of handles into objects, not the per-thread pointer indirection pattern.
  • Resource Limit Enforcements1 وسم فرعيRestricts what each task can see and do using per-task contexts, cgroups, and security modules, verifying every input and conversion. **Distinct from Per-Task Indirect Reference Isolations:** Distinct from Per-Task Indirect Reference Isolations: focuses on resource limits and cgroup enforcement, not just indirect reference isolation.