XSLT存档  

不及格的程序员-八神

 查看分类:  ASP.NET XML/XSLT JavaScripT   我的MSN空间Blog
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 23 下一页
摘要: 在本机 IIS 进程中创建线程的默认最大堆栈大小为 256 KB 2021/08/14 本文介绍了由本机应用程序 IIS Microsoft Internet Information Services (创建线程的默认最大) 大小。 原始产品版本: Internet Information Serv 阅读全文
posted @ 2023-02-09 09:24 不及格的程序员-八神 阅读(128) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-02-06 23:49 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-02-06 23:45 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-02-06 23:40 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
摘要: Debugger data model, Javascript & x64 exception handling Date Fri 01 December 2017 By Axel "0vercl0k" Souchet Category debugging Tags debugging javasc 阅读全文
posted @ 2023-02-06 23:37 不及格的程序员-八神 阅读(49) 评论(0) 推荐(0)
摘要: WinDbg cheatsheet Did you know you can mark things in WinDbg in different colors to keep track of repeated values? I find it super useful when debuggi 阅读全文
posted @ 2023-02-06 23:35 不及格的程序员-八神 阅读(325) 评论(0) 推荐(1)
摘要: Learn Blog Archive ASP.NET Debugging ASP.NET Tips: Looking at the finalization queue 2008/04/28 3 分钟可看完 So in a previous post, we talked about Underst 阅读全文
posted @ 2023-02-06 11:01 不及格的程序员-八神 阅读(26) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-02-04 18:46 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-02-04 18:13 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
摘要: x64 调用约定 本部分介绍 x64 代码中一个函数(调用方)调用另一个函数(被调用方)的标准流程和约定。 调用约定默认值默认情况下,x64 应用程序二进制接口 (ABI) 使用四寄存器 fast-call 调用约定。 系统在调用堆栈上分配空间作为影子存储,供被调用方保存这些寄存器。 函数调用的参数 阅读全文
posted @ 2023-02-04 16:05 不及格的程序员-八神 阅读(880) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-02-03 13:01 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
摘要: .Net 64 位应用程序 编译应用程序时,您可以将其指定为在 Windows 64 位操作系统上作为本机应用程序或在 WOW64(Windows 64 位下的 Windows 32 位)下运行。 WOW64 是一种兼容性环境,它使 32 位应用能够在 64 位系统上运行。 WOW64 包括在所有 阅读全文
posted @ 2023-02-03 11:38 不及格的程序员-八神 阅读(81) 评论(0) 推荐(0)
摘要: Learn Blog Archive Ntdebugging Blog 使用英语阅读保存 Challenges of Debugging Optimized x64 Code 项目 2009/01/09 23 分钟可看完 If you have not had the luxury of debug 阅读全文
posted @ 2023-02-02 22:55 不及格的程序员-八神 阅读(29) 评论(0) 推荐(0)
摘要: How can I determine if a Win32 thread has terminated? Ask Question Asked 14 years, 2 months ago How can I determine if a Win32 thread has terminated? 阅读全文
posted @ 2023-02-02 22:52 不及格的程序员-八神 阅读(18) 评论(0) 推荐(0)
摘要: 在KTHREAD中,有几个成员是专门负责记录线程的栈的信息的。如StackBase内核态栈的栈基址,StackLimit内核态栈栈边界,LargeStack是否是大内核栈等,其中我们需要关注的是LargeStack。当线程刚被创建时,所有线程都不是GUI线程,只有当线程使用Windows子系统内核服 阅读全文
posted @ 2023-02-02 22:48 不及格的程序员-八神 阅读(157) 评论(0) 推荐(0)
摘要: Home Space What does kb show for 64 bit processes? I have recently made a mistake analyzing a callstack, because I didn't expect the application to be 阅读全文
posted @ 2023-02-02 11:03 不及格的程序员-八神 阅读(22) 评论(0) 推荐(0)
摘要: Enabling Postmortem Debugging User Mode Exception Handling Exceptions and Breakpoints The most common application errors are called exceptions. These 阅读全文
posted @ 2023-02-02 10:24 不及格的程序员-八神 阅读(134) 评论(0) 推荐(0)
摘要: Viewing the Call Stack in WinDbg The call stack is the chain of function calls that have led to the current location of the program counter. The top f 阅读全文
posted @ 2023-02-02 10:19 不及格的程序员-八神 阅读(126) 评论(0) 推荐(0)
摘要: void func(int Param1, int Param2) { int var1, var2; // stack memory layout at this point // [RSP] = var1 (DWORD) // [RSP+0x4] = var2 (DWORD) // [RSP+0 阅读全文
posted @ 2023-02-01 23:23 不及格的程序员-八神 阅读(524) 评论(0) 推荐(0)
摘要: Pick a few and find out where they are rooted (i.e. why they can’t be collected) Note: You may want to try a couple different ones. !gcroot <address o 阅读全文
posted @ 2023-02-01 22:19 不及格的程序员-八神 阅读(101) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-02-01 15:17 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-02-01 11:57 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-01-31 09:53 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-01-31 09:51 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
摘要: How to use the /userva switch with the /3GB switch to tune the User-mode space to a value between 2 GB and 3 GB (316739) The information in this artic 阅读全文
posted @ 2023-01-30 23:51 不及格的程序员-八神 阅读(66) 评论(0) 推荐(0)
摘要: 分金条 一、一个经典的问题:你让工人为你工作 7 天,给工人的回报是一根金条。金条平分成相连的 7 段,你必须在每天结束时给他们一段金条,如果只许你两次把金条弄断,你如何给你的工人付费? 二、思路:1. 金条是可以找钱的,如工人有一段金条,付当天工钱时可以用2段去换工人的一段,不能说工人拿到金条了马 阅读全文
posted @ 2023-01-30 22:52 不及格的程序员-八神 阅读(111) 评论(0) 推荐(0)
摘要: $exception {"未能解析此远程名称: 'yxenskfsev.bosdsoft.com'"} Data: {System.Collections.ListDictionaryInternal} HResult: -2146233079 HelpLink: null IPForWatsonB 阅读全文
posted @ 2023-01-30 14:35 不及格的程序员-八神 阅读(41) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-01-29 23:42 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
摘要: 打开 Mac 触控板的三指拖移功能 对于支持力度触控的触控板,可以选择使用三指手势来拖移项目。 相应的设置名称会因你使用的 macOS 版本而有所不同: 选取苹果菜单  >“系统设置”(或“系统偏好设置”)。 点按“辅助功能”。 点按“指针控制”(或“鼠标与触控板”)。 点按“触控板选项”按钮。 阅读全文
posted @ 2023-01-29 20:26 不及格的程序员-八神 阅读(159) 评论(0) 推荐(0)
摘要: 工作站和服务器垃圾回收 2022/09/22 垃圾回收器可自行优化并且适用于多种方案。 不过,你可以基于工作负载的特征设置垃圾回收的类型。 CLR 提供了以下类型的垃圾回收: 工作站垃圾回收 (GC) 是为客户端应用设计的。 它是独立应用的默认 GC 风格。 对于托管应用(例如由 ASP.NET 托 阅读全文
posted @ 2023-01-29 13:56 不及格的程序员-八神 阅读(110) 评论(0) 推荐(0)
摘要: 深入理解IIS的多线程工作机制 首先让我们来看看IIS里面的这2个数字:最大并发连接数,队列长度。先说这2个数字在哪里看。 最大并发连接数:在IIS中选中一个网站,右键网站名称,在右键菜单中找到并点击【管理网站】->【高级设置】。打开对话框如下图: 队列长度:在IIS中选中【应用程序池】,在应用程序 阅读全文
posted @ 2023-01-29 13:44 不及格的程序员-八神 阅读(344) 评论(0) 推荐(0)
摘要: Windows性能查看器:系统的性能信息(I/O,IIS最大连接数,Sql) ,以及解决 asp.net IIS 一二百多用户并发 在测试过程中,我们经常需要知道“系统的资源利用情况”来监测我们的测试执行情况,来查看测试环境是否有效,测试结果是否可信,或者是在无人值守时保存结果,等我们值班时再来分析 阅读全文
posted @ 2023-01-29 13:21 不及格的程序员-八神 阅读(303) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-01-29 13:06 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-01-29 12:58 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-01-29 10:10 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0)
摘要: There's going to be an awful lot more overclocking out there Raymond Chen November 7th, 20060 0 Last year, I told the story of overclocking being the 阅读全文
posted @ 2023-01-28 23:22 不及格的程序员-八神 阅读(22) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2023-01-28 09:14 不及格的程序员-八神 阅读(11) 评论(0) 推荐(0)
摘要: What is dwwin.exe? The genuine dwwin.exe file is a software component of Dr Watson Application Program Debugger by Microsoft Corporation.The name "dww 阅读全文
posted @ 2023-01-27 14:07 不及格的程序员-八神 阅读(172) 评论(0) 推荐(0)
摘要: 一、什么是字节序 字节序(Byte Order)是指多字节数据在计算机内存中存储或者网络传输时各字节的存储顺序。其有两种存储方式:大端(Big-endian)和小端(Little-endian)。 二、端的起源 “endian” 这个词出自 Jonathan Swift 在1726 年写的讽刺小说《 阅读全文
posted @ 2023-01-26 22:37 不及格的程序员-八神 阅读(70) 评论(0) 推荐(0)
摘要: 花指令实际上把它按照 “乱指令” 来理解可能更贴切一些。我们知道,汇编语言其实就是机器指令的符号化,从某种程度上看,它只是更容易理解一点的机器指令而已。每一条汇编语句,在汇编时,都会根据 cpu 特定的指令符号表将汇编指令翻译成二进制代码。 而日常应用中,我们通过 VC 的 IDE 或其它如 OD 阅读全文
posted @ 2023-01-20 09:34 不及格的程序员-八神 阅读(493) 评论(0) 推荐(1)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 23 下一页