上一页 1 ··· 92 93 94 95 96 97 98 99 100 ··· 121 下一页

2010年1月28日

经典线程死锁

摘要: 代码例子如下:public class TestDeadLock implements Runnable{ public int flag = 1; static Object S1 = new Object(), S2=new Object(); public void run() { System.out.println("flag="+flag); if(flag==1) { synchro... 阅读全文

posted @ 2010-01-28 16:47 中道学友 阅读(346) 评论(0) 推荐(0) 编辑

想知道SharePoint 2007中的每个Timer Job都是做什么的?

摘要: WSS3.0中默认的timer jobs.Timer job titleDescriptionSchedule typeCEIP Data CollectionGathers farm data for the Customer Experience Improvement Program.DailyChange LogDocuments changes to sites and pages in... 阅读全文

posted @ 2010-01-28 15:37 中道学友 阅读(1255) 评论(1) 推荐(0) 编辑

向SharePoint的ULS日志中写入自己的跟踪信息

摘要: SharePoint中自定义的webpart, event handler, workflow非常常见. 这些集成了的东西如果报错很难排查. 这篇文章列出介绍简单的使用ULS日志的方法.参考下面的资料来了解如何向ULS日志中写入信息==============SharePoint Trace Logs and the Unified Logging Service (ULS)http://webl... 阅读全文

posted @ 2010-01-28 12:49 中道学友 阅读(779) 评论(0) 推荐(0) 编辑

2010年1月27日

SharePoint 2007中的Permission Level与Permission之间的关系

摘要: MOSS和WSS3.0中的权限等级, 权限, 以及权限之间的依赖关系比较复杂, 不容易记住. 比如, 今天一个朋友问我, 说他对一个列表有读写权限(这个列表是他创建的), 要是他想给另外的一个用户只读权限, 问他最少应该拥有什么权限? 面临这样的问题时, 不要慌, 基本概念搞清楚, 然后再想想就八九不离十了. http://office.microsoft.com 上有一篇很好的总结文章. 对于... 阅读全文

posted @ 2010-01-27 22:00 中道学友 阅读(371) 评论(0) 推荐(0) 编辑

清除MOSS的Timer Job Cache的方法- Clear the SharePoint Configuration Cache

摘要: How to clear the file system cache on all servers in the server farm on which the Windows SharePoint Services Timer service is running? To do this, follow these steps: Stop the Timer service. To do this, follow these steps: Click Start, point to Administrative Tools, and then click Services. Right- 阅读全文

posted @ 2010-01-27 21:43 中道学友 阅读(1198) 评论(0) 推荐(0) 编辑

作业

摘要: http://technet.microsoft.com/en-us/magazine/2009.02.insidesharepoint.aspx?pr=blog http://msdn.microsoft.com/en-us/magazine/dd727509.aspx http://support.microsoft.com/kb/939308/en-us 阅读全文

posted @ 2010-01-27 17:39 中道学友 阅读(133) 评论(0) 推荐(0) 编辑

X64 Debugging汇编点滴

摘要: 32位与64位最主要的区别就是多了八个geneal的寄存器R8,R9,R10,R11...R15. 其他还有, 通用寄存器不再以E开头, 取而代之的是字母r. 比如说, EAX现在是rAX. 阅读全文

posted @ 2010-01-27 13:11 中道学友 阅读(417) 评论(0) 推荐(0) 编辑

SharePoint对于Workflow的历史信息清理的要点

摘要: 禁用workflow history的自动清除作业=========================Workflow是由一些列的事件组成的, 诸如workflow initiation, task creation, 和task completion. 当你添加一个workflow的时候, 一个workflow history数据库就被自动得创建出来, 用来跟踪workflow的事件. workflow history数据库存储包括日期, 状态, 参与者, 和描述等每个事件的关键信息. workflow history记录项存放在Sharepoint列表中, 这个列表与列表或者文档库是关联起来 阅读全文

posted @ 2010-01-27 01:07 中道学友 阅读(1473) 评论(0) 推荐(0) 编辑

2010年1月26日

Task Manager跟Performance Monitor的区别(Working set和Private bytes)

摘要: 在Performance monitor中可以通过private bytes和Virtual bytes来衡量程序的内存使用. 在task manager中, 也有Memory Usage和VM Size两项. 但是仔细比较后会发现Memory Usage并不是对应private bytes, VM Size也不是对应Virtual Bytes. 其实, task manager中的Memory Usage对应的是working set, VM Size对应的是private bytes. 因此如果使用task manager观察内存使用, 应该注意到这个差别.Working Set和Priv 阅读全文

posted @ 2010-01-26 13:47 中道学友 阅读(9336) 评论(6) 推荐(0) 编辑

[转]命令行下常用网络命令解释大全

摘要: 原文地址: http://blog.csdn.net/yinleiwudi/archive/2005/02/07/283679.aspx 1.Arp 显示和修改“地址解析协议”(ARP) 所使用的到以太网的 IP 或令牌环物理地址翻译表。该命令只有在安装了 TCP/IP 协议之后才可用。 arp -a [inet_addr] [-N [if_addr] arp -d inet_addr [if_a... 阅读全文

posted @ 2010-01-26 13:31 中道学友 阅读(542) 评论(0) 推荐(0) 编辑

上一页 1 ··· 92 93 94 95 96 97 98 99 100 ··· 121 下一页

导航

技术追求准确,态度积极向上