-
junitperf-1.9.1
Junitperf实际是基于junit的包装,通过编写用于junitperf的单元测试,我们也可使测试过程自动化。(Junitperf actually junit-based packaging, through the preparation for the junitperf unit testing, we also can automate the testing process.)
- 2010-01-04 15:57:29下载
- 积分:1
-
BPR_Original
说明: 用Java语言写的经典推荐算法-BPR,常用做各大推荐算法的baseline.(The classic recommendation algorithm written in Java language - BPR, is commonly used as the baseline for major recommendation algorithms, it may be helpful for your study.)
- 2020-09-24 19:07:48下载
- 积分:1
-
cmpp2.0
java 开发的cmpp2.0程序,支持上行,下行发送(java cmpp2.0 program)
- 2020-12-25 16:39:04下载
- 积分:1
-
816938
用于管理RocketMQ3,2,6集群服务,直接将war包放在tomca里()
- 2017-09-22 07:15:35下载
- 积分:1
-
mblog
mblog 毕业设计用的还没有完善,请大家多指点(mblog graduate design is not yet perfect, please keep pointing)
- 2014-02-04 10:56:33下载
- 积分:1
-
Corner
This is imagej plugin for image processing
- 2015-07-17 03:29:59下载
- 积分:1
-
WebSphere
WebSphere快速入门.pdf 送给正在学习WebSphere的朋友。(WebSphere)
- 2010-07-23 20:27:57下载
- 积分:1
-
caishuzi
安卓java模拟系统发送短信的功能,获得系统的权限。(The android Java simulation system, the function of the text get the permissions system.)
- 2015-04-29 08:44:57下载
- 积分:1
-
project2
设计一个简单的课程管理系统(CourseManager)。主要功能包括:
课程信息的录入。主要包括:课程号(no)、课程名(name)、学分(grade)等;
课程信息的查询。根据课程号、课程名和学分等查询课程的信息。注意:查询结果可能不唯一。
课程信息的修改。根据课程号查询到指定课程的信息,再用新的内容替换。
课程信息的删除。根据课程号删除指定课程的信息。
设计时,采用层次化设计法,将类分为界面层(ui)、功能层(business)和持久层(persistence)3层,放在不同子包中。整个系统的代码放在exe4_2包中。(Design a simple course management system (CourseManager). Key features include:
Entry course information. Including: course number (no), course name (name), credits (grade) and the like
Queries course information. Information based curriculum, course name and credit and other inquiries courses. Note: query results may not be unique.
Modify course information. Inquiry based curriculum to the specified courses, and then replaced with new content.
Remove course information. Remove a specified course of information based curriculum.
Design, the use of hierarchical design method, the class is divided into the interface layer (ui), the functional layer (business) and persistence (persistence) 3 layers in different sub-packages. The system code in the exe4_2 package.)
- 2015-05-30 18:38:59下载
- 积分:1
-
Process
java进程调度(优先级)进程调度算法:采用最高优先数优先的调度算法(即把处理机分配给优先数最高的进程)和先来先服务算法。每个进程有一个进程控制块( PCB)表示。进程控制块可以包含如下信息:进程名、优先数、到达时间、需要运行时间、已用CPU时间、进程状态等等。
进程的优先数及需要的运行时间可以事先人为地指定(也可以由随机数产生)。进程的到达时间为进程输入的时间。进程的运行时间以时间片为单位进行计算。每个进程的状态可以是就绪
W(Wait)、运行R(Run)、或完成F(Finish)三种状态之一。就绪进程获得
CPU后都只能运行一个时间片。用已占用CPU时间加1来表示。如果运行一个时间片后,进程的已占用
CPU时间已达到所需要的运行时间,则撤消该进程,如果运行一个时间片后进程的已占用CPU时间还未达所需要的运行时间,也就是进程还需要继续运行,此时应将进程的优先数减1(即降低一级),然后把它插入就绪队列等待CPU。每进行一次调度程序都打印一次运行进程、就绪队列、以及各个进程的
PCB,以便进行检查。 (Java process scheduling)
- 2018-11-29 23:13:42下载
- 积分:1