-
基于NIOS II的ISP1362和DM9000A工程
资源描述基于NIOS II SOPC的ISP1362和DM9000A工程。应用软件QUARTUS,IDE.
- 2022-03-01 10:28:35下载
- 积分:1
-
ep1c20 LEON3 for改变FPGA的补丁。
leon3 patch for altera ep1c20 FPGA.
- 2022-01-30 10:09:41下载
- 积分:1
-
of the book is to make the C
这本书的目的是让C蛇贪吃
- 2022-02-01 21:45:39下载
- 积分:1
-
这是一个用labview开发的基于声卡的频谱分析软件
这是一个用labview开发的基于声卡的频谱分析软件-This is a development with LabVIEW-based sound card spectrum analysis software
- 2022-09-25 20:50:03下载
- 积分:1
-
compiler pascal
小型pascal语音编译器,包含词法分析工具FLEX和语法分析工具Bison-compiler pascal
- 2022-07-25 20:46:05下载
- 积分:1
-
江西理工大学兰小机的精品课程,主要是基于C#的AE开发
江西理工大学兰小机的精品课程,主要是基于C#的AE开发-Jiangxi Polytechnic University Portland courses in small machine products, mainly based on C# development of AE
- 2022-05-15 11:08:12下载
- 积分:1
-
Learning when to do a graphics gadgets to simulate the 8 planets of the solar sy...
学习图形学时做的一个小玩意,模拟了太阳系8大行星的公转与自转,有兴趣的可以-Learning when to do a graphics gadgets to simulate the 8 planets of the solar system revolution and rotation, are interested in can
- 2022-08-14 09:12:12下载
- 积分:1
-
series of the Super Mario Sunshine procedures
编的超级玛利的程序-series of the Super Mario Sunshine procedures
- 2022-09-27 23:30:04下载
- 积分:1
-
一个小型专家系统
书籍识别系统
- 2022-12-27 05:50:03下载
- 积分:1
-
CoStream 无缓存 Pipe Stream
翻译 maninwest@Codeforge 作者:Sergey Nozhenko@CodeProject介绍:CoStream 是的 PipeStream 无缓存替代选择。背景在生产者/消费者模式下,如果我们知道一个消费者确定要读取stream 读到结束或者如果不能读到结束就处理,那么同步stream 就不需要维护自己的内部缓存,完全依赖于 Read 方法调用者的缓存。在Read 方法中,CoStream 保存到目标缓存的引用并等待,直至完成。而 write 方法从源缓存中复制数据到目标缓存,会给读取者发送信号缓存已准备就绪或者需要等待期 Read 调用(如果来源缓存中有未消耗的数据剩下或者返回到Writer 调用者)。使用代码CoStream 不能在单个话题中使用。应该至少有两个,读取和写入话题。两者都需要关闭(或处理)stream,一边对方可以继续到结束。测试程序在 XmlDocument 中加载了一些 xml 文件。然后将其写入到 CoStream 的实例Static CoStream costream = new TestCoStream();
static string outpath;
static void Main(string[] args)
{
// ...
XmlDocument doc = new XmlDocument();
doc.Load(args[0]);
outpath = args[1];
var reading_thread = new Thread(ReaderBody);
reading_thread.Start();
using (var pipe = XmlWriter.Create(costream, new XmlWriterSettings { CloseOutput = true }))
doc.Save(pipe);
reading_thre
- 2022-03-17 17:34:17下载
- 积分:1