-
RAIDframe: A Rapid
Prototyping Tool for
RAID Systems
Raidsim磁盘模拟器,可以模拟磁盘的各种操作,例如读预取,Catch块替换等,非常好用,而且很不好找,希望对大家有点帮助。-RAIDframe: A Rapid
Prototyping Tool for
RAID Systems
- 2022-02-20 07:56:29下载
- 积分:1
-
an all static pages generated content, the freedom to customize the extension, t...
1、全静态生成的内容页,扩展名自由定制,自由选择! 2、后台无限管理等级,自由定制,权限自由分配,让你体验真正的多用户管理! 3、无限分类! 4、超自由的的模版设计,内置标签库,让你完全自由的设计网站页面。 5、优秀的网站上传附件管理模块,可以让你的网站最大程度的减少垃圾文件。 6、自带可视化 HTML 编辑器,就像在Word里编辑文章一样。 7、索引页自动分页,成静态文件保存。 8、静态页面多种生成方式,可最大程度的减少页面生成的耗用时间。 9、首页自动生成,自由修改。 10、共享模块采用JS调用,一次编辑,处处使用,同步更新。(可选) access数据库全面优化,修复v1.0 bug N个-an all static pages generated content, the freedom to customize the extension, the freedom of choice! 2, background unlimited management hierarchy, free customization, free distribution of authority and let you experience a true multi-user management! 3, unlimited classification! 4, the ultra-free design templates, built-in labels, so as you complete freedom of design website pages. 5, excellent website upload Annex management module, allows you to the website of the largest reductions in the garbage documents. 6, onboard visual HTML editor, as in Word edit the same article. 7, index page automatic paging, static documents into preservation. 8, static pages generated a variety of ways, the
- 2022-08-16 02:17:26下载
- 积分:1
-
ping命令是用来查看网络上另一个主机系统的网络连接是否正常的一个工具。ping命令的工作原理是:向网络上的另一个主机系统发送ICMP报文,如果指定系统得到了报...
ping命令是用来查看网络上另一个主机系统的网络连接是否正常的一个工具。ping命令的工作原理是:向网络上的另一个主机系统发送ICMP报文,如果指定系统得到了报文,它将把报文一模一样地传回给发送者,这有点象潜水艇声纳系统中使用的发声装置。-ping command is used to view the network to another host system
- 2022-08-02 19:41:17下载
- 积分:1
-
实现通常代理服务器的基本功能。可以通过简单的参数设置实现网络中各客户端机器共享代理上网,同时可以监控网络状况。...
实现通常代理服务器的基本功能。可以通过简单的参数设置实现网络中各客户端机器共享代理上网,同时可以监控网络状况。-proxy server usually achieve the basic functions. Through a simple set of parameters to achieve the network client machines to share Internet access agents, but can also monitor network status.
- 2022-11-26 12:10:03下载
- 积分:1
-
此程序是我自己开发的连锁超市方案中数据交换的应用实例,所以客户端和服务端的代码有点多,但多是与通信本身无关,所实现的功能是将本地Local文件夹与远程Remot...
此程序是我自己开发的连锁超市方案中数据交换的应用实例,所以客户端和服务端的代码有点多,但多是与通信本身无关,所实现的功能是将本地Local文件夹与远程Remote文件夹的.rs文件互相进行传送。-this program is my own development of the supermarket chain data exchange program of the application, client and server-side code a bit more, but most of the communication itself has nothing to do with, the functions of local folders Local and Remote Remote folders. Rs documents transmitted each other.
- 2023-04-11 19:40:04下载
- 积分:1
-
Remote Network Programming, counting on some network programming worth learning!
Remote网络编程,对一些刚接触网络编程的值得学习!-Remote Network Programming, counting on some network programming worth learning!
- 2022-08-24 01:02:18下载
- 积分:1
-
使用IO完成端口异步通讯的VC源代码
使用IO完成端口异步通讯的VC源代码- Uses IO to complete the port asynchronous communication the VC
source code
- 2023-01-08 13:40:03下载
- 积分:1
-
这是一个Ping程序,它是一个Winsole程序,因此在编译成功后,应该打开“开始”菜单的“运行”对话框然后单击“浏览”按钮,在该工程Debug和Release...
这是一个Ping程序,它是一个Winsole程序,因此在编译成功后,应该打开“开始”菜单的“运行”对话框然后单击“浏览”按钮,在该工程Debug和Release目录下得到可执行文件的路径和文件名,并在后面加入命令行参数:要Ping的IP地址。--This is a Ping program, it is a Winsole program, After compiled successfully, you may open the "running" dialog box of "start" menu, then click "browse" button, you can get path and execution filename at Debug and Release catalog of this project.Command parameter is added after it:IP address of you need ping
- 2022-02-18 14:08:42下载
- 积分:1
-
基于C#的简单workflow_engine实现
基于C#的简单workflow_engine实现-Based on a simple C# implementation workflow_engine
- 2023-02-21 03:10:03下载
- 积分:1
-
网络的相关知识,网络程序的编写,Socket是连接应用程序与网络驱动程序的桥梁,Socket在应用程序中创建,通过bind与驱动程序建立关系。此后,应用程序送给...
网络的相关知识,网络程序的编写,Socket是连接应用程序与网络驱动程序的桥梁,Socket在应用程序中创建,通过bind与驱动程序建立关系。此后,应用程序送给Socket的数据,由Socket交给驱动程序向网络上发送出去。计算机从网络上收到与该Socket绑定的IP+Port相关的数据后,由驱动程序交给Socket,应用程序便可从该Socket中提取接收到的数据。网络应用程序就是这样通过socket进行数据的发送与接收的。TCP与UDP的工作原理与编写过程,如何在程序中链接库文件。一个字符界面的聊天程序。-network of the knowledge, network program, Socket is a link between the application and network drivers for the bridge, Socket in the application process to create, Driving through bind with the procedures established relations. Since then, Socket applications presented data from the socket to the network driver to send out. Computer network received from the socket and bundled IP Port-related data, from driver to Socket, applications from the Socket can extract the data receiver. Web applications is through this socket for data transmission and reception. TCP and UDP Principle and the work of the preparation process, and how to process link libraries. A character based chat program.
- 2023-01-29 23:25:03下载
- 积分:1