job-scheduling

There are 31 repositories under job-scheduling topic.

  • anushka23g/Learning-Made-Easy

    This project can help you understand the Data Structure and Algorithms in a more efficient manner. It aims at scheduling the studies for maximizing marks during exams. Most students face this problem during exams that what to study to get the best out of their limited time.

    Language:C++17681898
  • arasgungore/CMPE250-projects

    Five Java projects assigned for the Data Structures and Algorithms (CMPE 250) course in the Fall 2021-22 semester.

    Language:Java15201
  • JanPalasek/job-shop-scheduling

    Implementation of job-shop scheduling problem using C#.

    Language:C#13512
  • Lambels/cronjob

    Cron but with golang time specification. ⏰

    Language:Go12100
  • lehduong/Job-Scheduling-with-Reinforcement-Learning

    Learning in Noisy MDP (which is governed by stochastic, exogenous input processes) with input-dependent baseline

    Language:Python11200
  • factryflow/factryengine

    ⚙️ Effortless and efficient task scheduling tailored for production, built with numpy.

    Language:Python7031
  • kfrancischen/pslx

    Python Standard Library eXtension

    Language:Python5401
  • shaunak97/Construction-scheduling

    The project implements a construction project scheduler to keep track of all the buildings under construction using Min Heap and Red Black Trees. These Data Structures help identify the priority and progress of construction.

    Language:C++5100
  • DAToolset/1D-bin-packing

    Job scheduling using 1D bin-packing algorithm

    Language:Python4002
  • Faisal-AlDhuwayhi/OS-Process-Management

    The project is focused on simulating the multiprogramming of a specific operating system and dealing with CPU scheduling and Job scheduling

    Language:Java4101
  • lyy1994/auto

    A simple job scheduling tool to manage tasks and GPUs in a single machine with multiple GPUs.

    Language:Python4100
  • IDWork-Data-Integration-Project

    Flavio-96/IDWork-Data-Integration-Project

    Class project for "Data Integration on Web" class of Università di Salerno, Computer Science Master degree. The platform is built using the knowledge acquired during the course to provide a service with which it is easy to find the ideal job.

    Language:JavaScript2100
  • hgmauri/sample-task-scheduler

    Example code for using CRONOS in .NET 7

    Language:C#220
  • paganini2008/chaconne

    A lightweight distributed task scheduling framework based on SpringBoot framework. It not only has high availability and scalability but also is easy to customize your business application by API provided.

    Language:Java2202
  • bharathaiys/Build-A-City

    This is a job scheduling problem solved with minimum complexity. A new city is being constructed and a program is required to keep track of all the buildings that have been built. A building record has 3 fields: Building number, Executed time and Total time. The Min Heap is used to store the buildings based on Executed Time and the RBT stores it based on the Building Number. The building with the least Executed time is chosen to be worked on, it is worked on for either 5 days or till it has completed construction. After completion, it is removed from the data structure. The buildings are printed using the RBT.

    Language:C++1100
  • cemonal/QuartzRetryMechanism

    A library that extends Quartz.NET to provide a seamless job retry mechanism on failures.

    Language:C#0100
  • DynexMarketplace/job_sequencing

    The goal of the JobSequencing problem is as follows. Given workers and jobs, where each job has a designated length, assign each of the jobs to one of the workers such that largest total length assigned to a worker is minimized

    Language:Jupyter Notebook0100
  • kounger/ES_1-Lmax

    This Python script uses Evolution Strategy (ES) to minimize maximum lateness on a single machine (1||Lmax).

    Language:Python0100
  • LeohangRai/bull-queue-ts

    Bull queue implementation for job queues, scheduled jobs and asynchronous email sending

    Language:TypeScript0100
  • mhh1965/LSAM_Case_Study

    Data produced by LSAM for testing parallel file system

  • raihanfjr/job-scheduling-exhaustive-greedy-algorithm

    This repository contains simple implementation of Exhaustive Algorithm and Greedy Algorithm on simple job scheduling.

    Language:Java0200
  • ValeriaPineda23/Job-Scheduling

    Applying Dynamic Programming for Job Scheduling Problem

    Language:Python0100
  • wise-saint/Job_Scheduling

    Job scheduling : Greedy Algorithm versus Brute Force Algorithm. Comparison of time of complexities.

    Language:C++0201
  • XactSystems/command-scheduler

    Symfony Job Scheduler bundle

    Language:PHP0150
  • erayvaryeter/concurrency

    Provides a good example covering topics like multi threading, concurrency, job scheduling, mutex and semaphore.

    Language:CMake10
  • karlahrnndz/dp-scheduling-wsetup

    Implementation of dynamic programming for solving a job scheduling problem where jobs are deterministic but machines are able to transition from manufacturing one type of product to another, at the expense of some downtime.

    Language:Python10
  • meraf00/schema-mapper

    Backend code generator

    Language:TypeScript10
  • Shivam1432/Greedy-Algorithms

    solve using Java

    Language:Java10
  • shivamv12/NodeJsElasticTranscoder

    Implementation of AWS media transcoding cloud service (Elastic Transcoder) in Node (Express) Js.

    Language:JavaScript101
  • SimonIyamu/Weighted-Job-Scheduling

    The problem of Weighted Job Scheduling considers a set of jobs. Each job has a start time, a finish time and a profit. The goal is to find a subset of jobs with the maximum profit such that no two jobs in the subset overlap. My solution uses Dynamic Programming.

    Language:C++10