XSLT存档  

不及格的程序员-八神

 查看分类:  ASP.NET XML/XSLT JavaScripT   我的MSN空间Blog
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 23 下一页
该文被密码保护。 阅读全文
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 不及格的程序员-八神 阅读(304) 评论(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 不及格的程序员-八神 阅读(40) 评论(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 不及格的程序员-八神 阅读(14) 评论(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:53 不及格的程序员-八神 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 在KTHREAD中,有几个成员是专门负责记录线程的栈的信息的。如StackBase内核态栈的栈基址,StackLimit内核态栈栈边界,LargeStack是否是大内核栈等,其中我们需要关注的是LargeStack。当线程刚被创建时,所有线程都不是GUI线程,只有当线程使用Windows子系统内核服 阅读全文
posted @ 2023-02-02 22:48 不及格的程序员-八神 阅读(83) 评论(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 不及格的程序员-八神 阅读(14) 评论(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 不及格的程序员-八神 阅读(53) 评论(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 不及格的程序员-八神 阅读(57) 评论(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 不及格的程序员-八神 阅读(245) 评论(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 不及格的程序员-八神 阅读(57) 评论(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 不及格的程序员-八神 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 分金条 一、一个经典的问题:你让工人为你工作 7 天,给工人的回报是一根金条。金条平分成相连的 7 段,你必须在每天结束时给他们一段金条,如果只许你两次把金条弄断,你如何给你的工人付费? 二、思路:1. 金条是可以找钱的,如工人有一段金条,付当天工钱时可以用2段去换工人的一段,不能说工人拿到金条了马 阅读全文
posted @ 2023-01-30 22:52 不及格的程序员-八神 阅读(48) 评论(0) 推荐(0) 编辑
摘要: $exception {"未能解析此远程名称: 'yxenskfsev.bosdsoft.com'"} Data: {System.Collections.ListDictionaryInternal} HResult: -2146233079 HelpLink: null IPForWatsonB 阅读全文
posted @ 2023-01-30 14:35 不及格的程序员-八神 阅读(25) 评论(0) 推荐(0) 编辑
摘要: string[12] 是参数的索引号 基于0的,所以这里是第13个参数有问题 --开关参数 declare @bFilter_cBillCode bit = 0 --是否过滤单号 declare @bFilter_cWareCode bit = 0--是否过滤商品编码 declare @bUpdat 阅读全文
posted @ 2023-01-30 14:30 不及格的程序员-八神 阅读(98) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-01-29 23:42 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 打开 Mac 触控板的三指拖移功能 对于支持力度触控的触控板,可以选择使用三指手势来拖移项目。 相应的设置名称会因你使用的 macOS 版本而有所不同: 选取苹果菜单  >“系统设置”(或“系统偏好设置”)。 点按“辅助功能”。 点按“指针控制”(或“鼠标与触控板”)。 点按“触控板选项”按钮。 阅读全文
posted @ 2023-01-29 20:26 不及格的程序员-八神 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 工作站和服务器垃圾回收 2022/09/22 垃圾回收器可自行优化并且适用于多种方案。 不过,你可以基于工作负载的特征设置垃圾回收的类型。 CLR 提供了以下类型的垃圾回收: 工作站垃圾回收 (GC) 是为客户端应用设计的。 它是独立应用的默认 GC 风格。 对于托管应用(例如由 ASP.NET 托 阅读全文
posted @ 2023-01-29 13:56 不及格的程序员-八神 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 深入理解IIS的多线程工作机制 首先让我们来看看IIS里面的这2个数字:最大并发连接数,队列长度。先说这2个数字在哪里看。 最大并发连接数:在IIS中选中一个网站,右键网站名称,在右键菜单中找到并点击【管理网站】->【高级设置】。打开对话框如下图: 队列长度:在IIS中选中【应用程序池】,在应用程序 阅读全文
posted @ 2023-01-29 13:44 不及格的程序员-八神 阅读(167) 评论(0) 推荐(0) 编辑
摘要: Windows性能查看器:系统的性能信息(I/O,IIS最大连接数,Sql) ,以及解决 asp.net IIS 一二百多用户并发 在测试过程中,我们经常需要知道“系统的资源利用情况”来监测我们的测试执行情况,来查看测试环境是否有效,测试结果是否可信,或者是在无人值守时保存结果,等我们值班时再来分析 阅读全文
posted @ 2023-01-29 13:21 不及格的程序员-八神 阅读(231) 评论(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 不及格的程序员-八神 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-01-28 09:15 不及格的程序员-八神 阅读(5) 评论(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 不及格的程序员-八神 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 一、什么是字节序 字节序(Byte Order)是指多字节数据在计算机内存中存储或者网络传输时各字节的存储顺序。其有两种存储方式:大端(Big-endian)和小端(Little-endian)。 二、端的起源 “endian” 这个词出自 Jonathan Swift 在1726 年写的讽刺小说《 阅读全文
posted @ 2023-01-26 22:37 不及格的程序员-八神 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 花指令实际上把它按照 “乱指令” 来理解可能更贴切一些。我们知道,汇编语言其实就是机器指令的符号化,从某种程度上看,它只是更容易理解一点的机器指令而已。每一条汇编语句,在汇编时,都会根据 cpu 特定的指令符号表将汇编指令翻译成二进制代码。 而日常应用中,我们通过 VC 的 IDE 或其它如 OD 阅读全文
posted @ 2023-01-20 09:34 不及格的程序员-八神 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 云计算 云计算将 IT 基础架构转变为一种实用程序: 您由此可通过互联网“插入”基础架构,并使用计算资源,而无需在内部安装和维护它们。 那么,究竟什么是“云”呢?简而言之,云就是一组可以通过因特网公开访问的计算机和服务器。这些硬件通常归第三方所有,放在一个或多个数据中心里联合运营。这些机器能够运行各 阅读全文
posted @ 2023-01-19 18:31 不及格的程序员-八神 阅读(100) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-01-19 16:31 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-01-19 16:30 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-01-19 16:27 不及格的程序员-八神 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 当你在64位Windows系统上抓32位进程的dmup文件时如果用的是64位任务管理器那么在用Windbg加载后要用!wow64exts.sw切换到X86模式下.如果不想做这步切换 就要用32位的任务管理器来生成dmp文件。 32位任务管理器在C:\Windows\SysWOW64\Taskmgr. 阅读全文
posted @ 2023-01-19 12:27 不及格的程序员-八神 阅读(585) 评论(0) 推荐(0) 编辑
摘要: JIT Debugger, Just In Time Debugger,JIT 调试器, Postmortem Debugger,事后调试器,指的是同一个概念 —— 事后调试器。如果把 Debugger 换成 Debugging,表示事后调试 原理探究 运行 process monitor,开启监视 阅读全文
posted @ 2023-01-18 16:56 不及格的程序员-八神 阅读(13) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 23 下一页