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

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

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेसMCP सर्वर
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 रिपॉजिटरी

Awesome GitHub RepositoriesTask Ordering

Mechanisms for sequencing tasks based on numeric priority levels to ensure critical work is processed first.

Distinct from Priority Queues: Focuses on the application of priority queues to task execution order, rather than the data structure implementation itself.

Explore 3 awesome GitHub repositories matching software engineering & architecture · Task Ordering. Refine with filters or upvote what's useful.

Awesome Task Ordering GitHub Repositories

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

    beanstalkd/beanstalkd

    6,697GitHub पर देखें↗

    Beanstalkd is a distributed work queue server designed for asynchronous job processing. It functions as a standalone server that distributes background tasks between producers and consumers to improve application responsiveness and throughput. The system organizes tasks using numeric priority levels to ensure critical work is processed first. It manages the job lifecycle through discrete states and uses a simple line-based text protocol over TCP for communication. To ensure reliability, the server persists job data to a sequential disk log, allowing the queue state to be recovered after a sy

    Implements numeric priority levels to ensure high-priority jobs are processed before lower-priority ones.

    C
    GitHub पर देखें↗6,697
  • gothenburgbitfactory/taskwarriorGothenburgBitFactory का अवतार

    GothenburgBitFactory/taskwarrior

    5,906GitHub पर देखें↗

    Taskwarrior is a command-line task manager that lets you create, modify, filter, and complete to-do items directly from the terminal. It stores all tasks in a single plain-text file for portability and manual editing, and includes a custom expression language for selecting tasks by status, priority, tags, and date ranges. The tool distinguishes itself through several integrated capabilities. It computes a numeric urgency score for each task based on weighted factors like age, tags, and due date to determine ordering. A recurrence template engine generates new task instances from a template af

    Computes a numeric urgency score for each task based on age, tags, and due date to determine ordering.

    C++gtdtask-managertaskwarrior
    GitHub पर देखें↗5,906
  • yeoman/yoyeoman का अवतार

    yeoman/yo

    3,959GitHub पर देखें↗

    Yo is a Node.js CLI framework and project template orchestrator used to automate the creation of standardized software projects. It functions as an interactive project generator and scaffolding runner that produces customized source code and manifests based on user input and predefined templates. The system utilizes a plugin-based architecture to discover and execute external setup tools. It distinguishes itself through a memory-first file system that resolves conflicts before committing changes to disk and a priority-queue task orchestration model to ensure the correct execution order of com

    Sequences tasks based on priority levels to ensure the correct execution order when running combined processes.

    JavaScript
    GitHub पर देखें↗3,959
  1. Home
  2. Software Engineering & Architecture
  3. Queue Implementations
  4. Priority Queues
  5. Task Ordering

सब-टैग एक्सप्लोर करें

  • Urgency-Based Task OrderingsComputing a numeric score for each task based on weighted factors like age, tags, and due date to determine ordering. **Distinct from Task Ordering:** Distinct from Task Ordering: uses a multi-factor urgency formula, not simple numeric priority levels.