XSLT存档  

不及格的程序员-八神

 查看分类:  ASP.NET XML/XSLT JavaScripT   我的MSN空间Blog
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 22 下一页
该文被密码保护。 阅读全文
posted @ 2023-02-26 17:46 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0) 编辑
摘要: WinDbg : An Introduction To Windows Heaps Heaps are used by applications which need to allocate and release memory dynamically. Even though the heap i 阅读全文
posted @ 2023-02-26 16:50 不及格的程序员-八神 阅读(10) 评论(0) 推荐(0) 编辑
摘要: Many a times data structs like arrays need parsing in windbg. These don't lend themselves as well as the LIST_ENTRY based structs do, because the debu 阅读全文
posted @ 2023-02-26 15:39 不及格的程序员-八神 阅读(12) 评论(0) 推荐(0) 编辑
摘要: Understand C++ vtable from assembly code (part 1) A glance at vtable implementation For simplicity, part 1 only discusses how vtable works with single 阅读全文
posted @ 2023-02-26 15:22 不及格的程序员-八神 阅读(11) 评论(0) 推荐(0) 编辑
摘要: Windbg: going from vftable to c++ class As part of an assignment, I am delving into the world of Internet Explorer, and am trying to figure out exactl 阅读全文
posted @ 2023-02-26 14:51 不及格的程序员-八神 阅读(21) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-02-26 14:39 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0) 编辑
摘要: Managed memory leaks in .NET On April 12, 2022 By Artem Razin In Uncategorized Managed memory leaks in C# Contents Managed Memory Leak – the definitio 阅读全文
posted @ 2023-02-26 13:16 不及格的程序员-八神 阅读(33) 评论(0) 推荐(0) 编辑
摘要: Memory leaks detection in a Windows Service written in C++ On January 25, 2020 By Artem Razin In Uncategorized Introduction This article will demonstr 阅读全文
posted @ 2023-02-26 13:12 不及格的程序员-八神 阅读(11) 评论(0) 推荐(0) 编辑
摘要: Deleaker is ready for Visual Studio 2022! On November 3, 2021 By Artem Razin In Uncategorized Since Microsoft announced the first preview of Visual St 阅读全文
posted @ 2023-02-26 13:10 不及格的程序员-八神 阅读(104) 评论(0) 推荐(0) 编辑
摘要: Unmanaged memory leaks in .NET On March 19, 2021 By Artem Razin In Uncategorized Unmanaged memory leaks in C# Contents Why do unmanaged memory leaks h 阅读全文
posted @ 2023-02-26 13:04 不及格的程序员-八神 阅读(65) 评论(0) 推荐(0) 编辑
摘要: How to fix memory leaks in C/C++ using WinDbg On May 30, 2021 By Artem Razin In Uncategorized Contents Introduction Examples of memory leaks The commo 阅读全文
posted @ 2023-02-26 12:46 不及格的程序员-八神 阅读(50) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-02-25 10:34 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 前文提要: 在VC6.0之后出现的VS系列开发工具都具有的调试功能:移动指针更改执行流,VC6不支持这个UI操作。 调试程序暂停时,源代码或“反汇编”窗口边距处的黄色箭头标记要运行的下一条语句的位置。 你可以通过移动此箭头来更改要运行的下一条语句。 你可以跳过代码,或者返回上一行。 在某些情况下移动 阅读全文
posted @ 2023-02-24 13:00 不及格的程序员-八神 阅读(236) 评论(0) 推荐(1) 编辑
该文被密码保护。 阅读全文
posted @ 2023-02-23 20:48 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-02-23 16:25 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0) 编辑
摘要: set _NT_SYMBOL_PATH = srv*F:\Yangl\DebuggingPaths\dbg*http://msdl.microsoft.com/download/symbols;set _NT_SOURCE_PATH = p1;p2; Summary of Steps Needed 阅读全文
posted @ 2023-02-23 14:13 不及格的程序员-八神 阅读(120) 评论(0) 推荐(0) 编辑
摘要: Problem We are publishing a lot of microservices on one machine, i.e.: 30 instances and every one use 150 – 300 mb. A lot of microservices use the sam 阅读全文
posted @ 2023-02-23 12:49 不及格的程序员-八神 阅读(16) 评论(0) 推荐(0) 编辑
摘要: Learn Previous Versions Windows Scripting Scripting Clinic How's My Driving? Monitoring Performance Using WMI Article 06/30/2006 31 minutes to read Gr 阅读全文
posted @ 2023-02-22 23:15 不及格的程序员-八神 阅读(20) 评论(0) 推荐(0) 编辑
摘要: WMI Scripting Primer: Part 1 Article 06/30/2006 25 minutes to read Greg Stemp, Dean Tsaltas, and Bob WellsMicrosoft Corporation Ethan WilanskyNetwork 阅读全文
posted @ 2023-02-22 23:14 不及格的程序员-八神 阅读(6) 评论(0) 推荐(0) 编辑
摘要: How to find what is in unmanaged memory in Dump by WinDBG I run for Dump File in WinDbg command !address -summary I results are something like this Ho 阅读全文
posted @ 2023-02-22 20:25 不及格的程序员-八神 阅读(54) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-02-20 23:11 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-02-20 23:07 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0) 编辑
摘要: Public and Private Symbols When a full-sized .pdb or .dbg symbol file is built by a linker, it contains two distinct collections of information: the p 阅读全文
posted @ 2023-02-20 16:39 不及格的程序员-八神 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 某正在运行的程序突然抛出异常,我们直接上Windbg查看异常记录,.exr -1;!gle;结果并没有相关信息,异常被截获后并没有抛出来,这个错误对话不是系统的而是本身程序代码弹出的。 kp查看UI线程调用栈 0:000> kp # ChildEBP RetAddr 00 00197eac 7713 阅读全文
posted @ 2023-02-20 11:27 不及格的程序员-八神 阅读(42) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-02-19 13:17 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 使用vs2017自带的诊断工具(Diagnostic Tools)诊断程序的内存问题 前言 一般来说.NET程序员是不用担心内存分配释放问题的,因为有垃圾收集器(GC)会自动帮你处理。但是GC只能收集那些不再使用的内存(根据对象是否被其它活动的对象所引用)来确定。所以如果代码编写不当的话,仍然会出现 阅读全文
posted @ 2023-02-19 11:08 不及格的程序员-八神 阅读(1275) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-02-19 10:18 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0) 编辑
摘要: How to resolve "Cannot debug pid , NTSTATUS 0xC0000048" - "An attempt to set a process's DebugPort or ExceptionPort was made ..." 2011/10/21 Once I fo 阅读全文
posted @ 2023-02-19 09:41 不及格的程序员-八神 阅读(24) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-02-18 20:38 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 记一次使用windbg排查内存泄漏的过程 一、背景 近期有一个项目在运行当中出现一些问题,程序顺利启动,但是观察一阵子后发现内存使用总量在很缓慢地升高, 虽然偶尔还会往下降一些,但是总体还是不断上升;内存运行6个小时候从33M上升到80M; 程序存在内存泄漏是确定无疑的了,大概出问题的方向也知道,就 阅读全文
posted @ 2023-02-18 17:47 不及格的程序员-八神 阅读(638) 评论(0) 推荐(0) 编辑
摘要: 虚拟列表控件 虚拟列表控件是具有 LVS_OWNERDATA 样式的列表视图控件。 此样式使控件能够支持最多为 DWORD 的项计数(默认项计数仅扩展到 int)。 但是,此样式具有的最大优势是,允许内存中任何时候都只有一部分数据项。 这样,虚拟列表视图控件就可以与大型信息数据库一起使用,而这些数据 阅读全文
posted @ 2023-02-17 16:23 不及格的程序员-八神 阅读(189) 评论(0) 推荐(0) 编辑
摘要: Fill a List with Large Amount of Data 2013.02.06 by Ovidiu Cucu In my opinion, making database queries in separate threads in order to avoid UI blocki 阅读全文
posted @ 2023-02-17 16:19 不及格的程序员-八神 阅读(7) 评论(0) 推荐(0) 编辑
摘要: https://codexpert.ro/blog/2013/11/04/fill-a-list-with-large-amount-of-data-part-2/ <a class="download-link" title="Version 1 " href="https://codexpert 阅读全文
posted @ 2023-02-17 14:59 不及格的程序员-八神 阅读(40) 评论(0) 推荐(0) 编辑
摘要: .NET内存性能分析指南 知道什么时候该担心,以及在需要担心的时候该怎么做 本文档的目的 本文旨在帮助 .NET 开发者,如何思考内存性能分析,并在需要时找到正确的方法来进行这种分析。本文中的 .NET 包括 .NET Framework 和 .NET Core。为了在垃圾收集器和框架的其他部分获得 阅读全文
posted @ 2023-02-17 11:57 不及格的程序员-八神 阅读(129) 评论(0) 推荐(0) 编辑
摘要: Learn Previous Versions Web Applications (ASP.NET) Infrastructure ASP.NET Performance Monitoring, and When to Alert Administrators Thomas MarquardtMic 阅读全文
posted @ 2023-02-16 14:30 不及格的程序员-八神 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 使用消息组件 2008年08月18日 本文内容 本节内容 相关章节 --> 更新:2007 年 11 月 使用 MessageQueue 组件,可以在应用程序中内置复杂的消息处理功能。使用 MessageQueue 组件的实例,可以在网络中轻松地向/从任何队列发送/接收消息。 XML Web ser 阅读全文
posted @ 2023-02-15 17:02 不及格的程序员-八神 阅读(81) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-02-14 19:38 不及格的程序员-八神 阅读(5) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-02-14 19:22 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-02-13 19:14 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-02-13 18:02 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 22 下一页