上一页 1 ··· 54 55 56 57 58 59 60 61 62 ··· 129 下一页
摘要: 记一次 .NET 某传感器采集系统 线程爆高分析 - 一线码农 - 博客园 (cnblogs.com) https://www.cnblogs.com/huangxincheng/p/17272068.html 一:背景 1. 讲故事 前段时间有位朋友微信找到我,说他的程序使用 hsl 库之后,采集 阅读全文
posted @ 2023-03-31 23:37 China Soft 阅读(63) 评论(0) 推荐(0)
摘要: 我很兴奋地告诉你,终于可以在浏览器中运行人脸识别了!这篇文章我将介绍 face-api.js ,这个类库构建于 tensorflow.js 之上。它实现了多个 CNNs(卷积神经网络)以解决人脸检测、人脸识别和人脸标识检测的问题,并进行了优化适用于网络和移动设备。 与往常一样,我们将看一个简单的代码 阅读全文
posted @ 2023-03-16 22:21 China Soft 阅读(649) 评论(0) 推荐(0)
摘要: namespace TestThread { internal class Program { static int count = 0; static object locker = new object(); static void Main(string[] args) { List<Task 阅读全文
posted @ 2023-03-15 22:25 China Soft 阅读(29) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/weixin_43465752/article/details/126940150 阅读全文
posted @ 2023-03-14 14:12 China Soft 阅读(13) 评论(0) 推荐(0)
摘要: 表示用于管理资源访问的锁定状态,可实现多线程读取或进行独占式写入访问 ReaderWriterLockSlim 类支持三种锁定模式:Read,Write,UpgradeableRead。这三种模式对应的方法分别是 EnterReadLock,EnterWriteLock,EnterUpgradeab 阅读全文
posted @ 2023-03-13 22:21 China Soft 阅读(226) 评论(0) 推荐(0)
摘要: https://blog.51cto.com/u_15077556/4245653 ReaderWriterLockSlim 读写锁其实 ReaderWriterLockSlim 与 ReaderWriterLock 比较像 1.某个线程进入读取模式时,此时其他线程依然能进入读取模式。假设此时一个线 阅读全文
posted @ 2023-03-13 22:21 China Soft 阅读(1400) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/mzl87/article/details/127670331 创建.NET程序Dump的几种姿势 Windows 平台 dotnet-dump (Windows) Windows 任务管理器 SysInternals - Process Explorer 阅读全文
posted @ 2023-03-13 14:59 China Soft 阅读(148) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/baozou_jianghuxing/article/details/125077779 需求背景: 公司内网的windows服务器因业务需要只需访问互联网指定的域名ip,其他的因出于系统网络安全考虑需要屏蔽阻止业务无关的其他所有域名和ip的访问。 实现方 阅读全文
posted @ 2023-03-11 17:50 China Soft 阅读(2411) 评论(0) 推荐(0)
摘要: https://andrewlock.net/exploring-dotnet-6-part-6-supporting-integration-tests-with-webapplicationfactory-in-dotnet-6/ This is the sixth post in the se 阅读全文
posted @ 2023-03-11 14:07 China Soft 阅读(64) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/uddiqpl/article/details/87560345 前言 今天与同事在讨论.Net下测试框架的时候,说到NUnit等大多数测试框架的SetUp以及TearDown方法并不是显得那么完美,所以在公司内部的项目中采用了Xunit框架。那么究竟是什 阅读全文
posted @ 2023-03-11 12:06 China Soft 阅读(169) 评论(0) 推荐(0)
上一页 1 ··· 54 55 56 57 58 59 60 61 62 ··· 129 下一页