CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - scheduling

搜索资源列表

  1. Throughput-Maximizing-Multiuser-Scheduling-with.r

    0下载:
  2. We address the problem of downlink multiuser scheduling in practical wireless networks under a desired fairness constraint. Wireless networks such as LTE, WiMAX and WiFi provide partial channel knowledge at the base station/access point by me
  3. 所属分类:3G develop

    • 发布日期:2017-03-30
    • 文件大小:222899
    • 提供者:gau
  1. Multi-machine-scheduling-problem

    0下载:
  2. 用贪心算法解决多机调度问题,采用C++编程 -Multi-machine scheduling problem greedy
  3. 所属分类:Data structs

    • 发布日期:2017-03-24
    • 文件大小:876160
    • 提供者:lydia
  1. Random-scheduling-algorithm

    0下载:
  2. 感知网络中基于随机 逼近的机会调度设计 -Random scheduling algorithm
  3. 所属分类:matlab

    • 发布日期:2017-04-02
    • 文件大小:889452
    • 提供者:袁金钟
  1. Disk-scheduling-algorithm

    0下载:
  2. 最全最实用的磁盘调度算法,C语言编写。简单但功能齐全。运行无误。-Disk scheduling algorithm
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-01
    • 文件大小:1490
    • 提供者:持之以恒
  1. Disk-scheduling-

    0下载:
  2. 编程序实现下述磁盘调度算法,并求出每种算法的平均寻道长度: 1、先来先服务算法(FCFS) 2、最短寻道时间优先算法(SSTF) 3、扫描算法(SCAN) 4、循环扫描算法(CSCAN)-Disk scheduling
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-16
    • 文件大小:202670
    • 提供者:jhy
  1. Optimization-of-workflow-scheduling-in-Utility-Ma

    0下载:
  2. Grid computing could be the future computing paradigm for enterprise applications, one of its benefits being that it can be used for executing large scale applications. Utility Management Systems execute very large numbers of workflows with very
  3. 所属分类:software engineering

    • 发布日期:2017-03-23
    • 文件大小:680248
    • 提供者:nemanja
  1. Scheduling-algorithm

    0下载:
  2. 维护计划与排程算法源代码,用于解决最短路径问题-Maintenance planning and scheduling algorithm, the source code used to solve the shortest path problem
  3. 所属分类:software engineering

    • 发布日期:2017-04-01
    • 文件大小:794
    • 提供者:shanshan
  1. Disk-scheduling

    0下载:
  2. ① 理解和掌握常用的磁盘调度算法的内容和原理。磁盘是可被多个进程共享的设备。当有 多个进程都请求访问磁盘时,应采用一种适当的调度算法,以使各个进程对磁盘的平均访问(主要是寻道)时间最小。 ② 通过本实验,使用先来先服务算法、最短寻道时间优先算法、扫描算法,模拟实现一个简单的磁盘调度系统。 -The understanding and grasp of the commonly used disk scheduling algorithm content and principle.
  3. 所属分类:OS Develop

    • 发布日期:2017-03-27
    • 文件大小:1562
    • 提供者:苡莣
  1. Process-priority-scheduling

    0下载:
  2. 优先数调度算法常用于批处理系统中。在进程调度中,每次调度时,系统把处理机分配给就绪队列中优先数最高的进程。-A number of priority scheduling algorithm commonly used in a batch system. In the process of scheduling, every scheduling, the ready queue system allocated to the processor the highest priority in
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-29
    • 文件大小:1276
    • 提供者:苡莣
  1. scheduling

    3下载:
  2. 多道批处理系统两级调度的模拟,实现一个的多道批处理系统的两级调度。通过具体的作业调度、进程调度、内存分配等功能的实现,加深对多道批处理系统的两级调度模型和实现过程的理解。 -Many way batch system simulation of two level scheduling, realize a multi-channel batch system of the two levels of scheduling. Through the specific job scheduling
  3. 所属分类:Process-Thread

    • 发布日期:2016-12-27
    • 文件大小:1368064
    • 提供者:longer
  1. scheduling

    0下载:
  2. Rate-Monotonic Analysis for Real-Time Industrial Computing! The project is simulate a scheduling process on the CPU for real time processing OS!
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-19
    • 文件大小:5378183
    • 提供者:styven
  1. scheduling

    0下载:
  2. 本文对MBMS的信道映射,网络结构,MAC层调度都有一定的描述,比较全面。-MBMS channel mapping, network structure, the MAC layer scheduling has a certain descr iption is more comprehensive.
  3. 所属分类:Communication

    • 发布日期:2017-04-03
    • 文件大小:899599
    • 提供者:zhangyanhong
  1. the-resource-scheduling

    0下载:
  2. 该论文介绍了云计算环境下的资源调度方法。-this paper introduces the resource scheduling in cloud computing environment
  3. 所属分类:Development Research

    • 发布日期:2017-05-13
    • 文件大小:3217838
    • 提供者:li
  1. Processor-scheduling-algorithm

    0下载:
  2. 1.设定系统中有五个进程,每一个进程用一个进程控制块表示。 2. 输入每个进程的“优先数”和“要求运行时间”, 3.为了调度方便,将五个进程按给定的优先数从大到小连成就绪队列。用一单元指出队列首进程,用指针指出队列的连接情况。 4. 处理机调度总是选队首进程运行。采用动态优先数算法,进程每运行一次优先数就减“1”,同时将运行时间减“1”。 5.若要求运行时间为零,则将其状态置为“结束”,且退出队列。 6.运行所设计程序,显示或打印逐次被选中进程的进程名以及进程控制块的动态变化
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-28
    • 文件大小:1341
    • 提供者:
  1. Process-scheduling

    0下载:
  2. 长春理工大学操作系统试验代码——进程调度(2009级)-Changchun University of Science and Technology operating system test code- the process of scheduling (2009)
  3. 所属分类:OS Develop

    • 发布日期:2017-03-28
    • 文件大小:174090
    • 提供者:黄丁宝
  1. Disk-Scheduling-Alogorithms

    0下载:
  2. 操作系统磁盘调度算法 操作系统磁盘调度算法-Operating system, disk scheduling algorithm operating system, disk scheduling algorithms operating system disk scheduling algorithm
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:57941
    • 提供者:panpan
  1. Three-kinds-of-scheduling-algorithm

    0下载:
  2. Three kinds of scheduling algorithm
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-27
    • 文件大小:1226
    • 提供者:chenzhenzhen
  1. scheduling

    0下载:
  2. 操作系统中进程调度与资源分配算法(即银行家算法)的可视化演示程序,使用Java编写,GUI为SWING-Operating system process scheduling and resource allocation algorithm (ie, the banker' s algorithm), visual presentation program, written in Java, GUI SWING
  3. 所属分类:OS Develop

    • 发布日期:2017-03-21
    • 文件大小:17519
    • 提供者:frank
  1. the-process-of-scheduling-algorithm-

    0下载:
  2. 进程调度算法,包括先来先服务,短进程优先,高响应比优先,时间片轮转调度,优先级调度算法,-Process scheduling algorithms, including the first come first served, short process priority, high-response than the priority, round-robin scheduling, priority scheduling algorithm, the process of scheduli
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:1133398
    • 提供者:殷学廉
  1. process-scheduling

    0下载:
  2. 广工 操作系统实验 进程调度 试验一 2011年-Extension work, the operating system process scheduling test of a 2011 experiment
  3. 所属分类:OS Develop

    • 发布日期:2017-03-28
    • 文件大小:173252
    • 提供者:kilo
« 1 2 ... 10 11 12 13 14 1516 17 18 19 20 ... 50 »
搜珍网 www.dssz.com