XSLT存档  

不及格的程序员-八神

 查看分类:  ASP.NET XML/XSLT JavaScripT   我的MSN空间Blog
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 23 下一页
该文被密码保护。 阅读全文
posted @ 2023-03-10 16:01 不及格的程序员-八神 阅读(22) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-03-10 15:59 不及格的程序员-八神 阅读(11) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-03-10 15:58 不及格的程序员-八神 阅读(8) 评论(0) 推荐(0)
摘要: Surviving the Release Version And the world crumbles to dust. You get memory access failures, dialogs don't come up, controls don't work, results come 阅读全文
posted @ 2023-03-09 22:00 不及格的程序员-八神 阅读(107) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-03-07 10:42 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-03-05 23:31 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-03-05 19:48 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-03-05 19:44 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
摘要: 对标题给出一个简而言之的结论:MFC经过几次的效能更新的版本,修复一些问题还会产生另一个问题 Realse版本的CString保留了所有512字节以下申请字符串的缓冲区,并未释放,说是为了减少内存碎片增加性能。 Struct { CStrng title; int a; .... }IoriStru 阅读全文
posted @ 2023-03-04 21:42 不及格的程序员-八神 阅读(185) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-02-26 23:05 不及格的程序员-八神 阅读(1) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-02-26 21:53 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
摘要: Creating double-precision integer multiplication with a quad-precision result from single-precision multiplication with a double-precision result Raym 阅读全文
posted @ 2023-02-26 20:55 不及格的程序员-八神 阅读(31) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-02-26 19:30 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-02-26 18:49 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
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 不及格的程序员-八神 阅读(53) 评论(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 不及格的程序员-八神 阅读(19) 评论(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 不及格的程序员-八神 阅读(63) 评论(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 不及格的程序员-八神 阅读(29) 评论(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 不及格的程序员-八神 阅读(66) 评论(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 不及格的程序员-八神 阅读(45) 评论(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 不及格的程序员-八神 阅读(222) 评论(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 不及格的程序员-八神 阅读(121) 评论(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 不及格的程序员-八神 阅读(100) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-02-25 10:34 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
摘要: 前文提要: 在VC6.0之后出现的VS系列开发工具都具有的调试功能:移动指针更改执行流,VC6不支持这个UI操作。 调试程序暂停时,源代码或“反汇编”窗口边距处的黄色箭头标记要运行的下一条语句的位置。 你可以通过移动此箭头来更改要运行的下一条语句。 你可以跳过代码,或者返回上一行。 在某些情况下移动 阅读全文
posted @ 2023-02-24 13:00 不及格的程序员-八神 阅读(274) 评论(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 不及格的程序员-八神 阅读(242) 评论(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 不及格的程序员-八神 阅读(25) 评论(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 不及格的程序员-八神 阅读(49) 评论(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 不及格的程序员-八神 阅读(15) 评论(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 不及格的程序员-八神 阅读(86) 评论(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 不及格的程序员-八神 阅读(68) 评论(0) 推荐(0)
摘要: 某正在运行的程序突然抛出异常,我们直接上Windbg查看异常记录,.exr -1;!gle;结果并没有相关信息,异常被截获后并没有抛出来,这个错误对话不是系统的而是本身程序代码弹出的。 kp查看UI线程调用栈 0:000> kp # ChildEBP RetAddr 00 00197eac 7713 阅读全文
posted @ 2023-02-20 11:27 不及格的程序员-八神 阅读(67) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-02-19 13:17 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
摘要: 使用vs2017自带的诊断工具(Diagnostic Tools)诊断程序的内存问题 前言 一般来说.NET程序员是不用担心内存分配释放问题的,因为有垃圾收集器(GC)会自动帮你处理。但是GC只能收集那些不再使用的内存(根据对象是否被其它活动的对象所引用)来确定。所以如果代码编写不当的话,仍然会出现 阅读全文
posted @ 2023-02-19 11:08 不及格的程序员-八神 阅读(2529) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 23 下一页