MemCheck Driver Memory Tool The MemCheck code is designed to provide Windows NT/2K/XP driver developers with a tool to help in the detection of the following memory handling issues: Buffer overrun Buffer corruption Buffer use after buffer release Double buffer releases
標(biāo)簽: MemCheck designed Windows develop
上傳時(shí)間: 2014-12-05
上傳用戶:weiwolkt
本原代碼集是對計(jì)算機(jī)圖形學(xué)的編程實(shí)踐,包括畫直線、反走樣直線、畫圓、畫橢圓、畫矩形、畫多邊形、矩形填充、多邊形填充、3D變換、光照、貼圖等。出于簡化編程的考慮,許多地方指定了常數(shù),未做通用處理。解壓縮后建立gui16目錄,在其下有原代碼和工程文件。在gui16下建立release目錄,其下有一可執(zhí)行文件及其所須的位圖及模型文件。如在release目錄之外執(zhí)行程序,必須復(fù)制所需位圖及模型文件。內(nèi)含
標(biāo)簽: 代碼 計(jì)算機(jī)圖形學(xué) 編程 實(shí)踐
上傳時(shí)間: 2015-03-19
上傳用戶:wuyuying
Locally weighted polynomial regression LWPR is a popular instance based al gorithm for learning continuous non linear mappings For more than two or three in puts and for more than a few thousand dat apoints the computational expense of pre dictions is daunting We discuss drawbacks with previous approaches to dealing with this problem
標(biāo)簽: polynomial regression weighted instance
上傳時(shí)間: 2013-11-28
上傳用戶:sunjet
The Kannel Open Source WAP and SMS gateway works as both an SMS gateway, for implementing keyword based services via GSM text messages, and a WAP gateway, via UDP. The SMS part is fairly mature, the WAP part is early in its development. In this release, the GET request for WML pages and WMLScript files via HTTP works, including compilation for WML and WMLScript to binary forms. Only the data call bearer (UDP) is supported, not SMS.
標(biāo)簽: gateway implementing SMS keyword
上傳時(shí)間: 2014-01-11
上傳用戶:2525775
Eclipse是開放源代碼的項(xiàng)目,你可以到www.eclipse.org去免費(fèi)下載Eclipse的最新版本,一般Eclipse提供幾個下載版本:Release,Stable Build,Integration Build和Nightly Build,建議下載Release或Stable版本,筆者用的是Build20020125(Stable版本)。Eclipse本身是用Java語言編寫,但下載的壓縮包中并不包含Java運(yùn)行環(huán)境,需要用戶自己另行安裝JRE,并且要在操作系統(tǒng)的環(huán)境變量中指明JRE中bin的路徑。安裝Eclipse的步驟非常簡單:只需將下載的壓縮包按原路徑直接解壓既可。
標(biāo)簽: Eclipse 開放源代碼 項(xiàng)目
上傳時(shí)間: 2014-01-24
上傳用戶:xiaohuanhuan
Description: C4.5Rule-PANE is a rule learning method which could generate accurate and comprehensible symbolic rules, through regarding a neural network ensemble as a pre-process of a rule inducer. Reference: Z.-H. Zhou and Y. Jiang. Medical diagnosis with C4.5 rule preceded by artificial neural network ensemble. IEEE Transactions on Information Technology in Biomedicine, 2003, vol.7, no.1, pp.37-42. 使用神經(jīng)網(wǎng)絡(luò)集成方法診斷糖尿病,肝炎,乳腺癌癥的案例研究.
標(biāo)簽: comprehensibl Description Rule-PANE accurate
上傳時(shí)間: 2013-11-30
上傳用戶:wcl168881111111
二維圖像離散余弦變換:數(shù)字圖像處理常用例程,可執(zhí)行文件在Release中,具體說明見Readme。
標(biāo)簽: 二維圖像 離散余弦 變換 數(shù)字圖像處理
上傳時(shí)間: 2015-04-17
上傳用戶:vodssv
有關(guān)RTDX應(yīng)用的例子。使用時(shí)請打開命令提示符窗口,再運(yùn)行release 目錄下的rtdxint.exe程序。此程序從COM接口指定的RTDX Channel讀取一個整數(shù)。
上傳時(shí)間: 2013-12-25
上傳用戶:kristycreasy
分區(qū)式存儲管理源代碼 一、可變分區(qū)存儲管理的基本策略 1)不預(yù)先劃分幾個固定分區(qū),分區(qū)的建立是在作業(yè)的處理過程中進(jìn)行的,各分區(qū)的大小由作業(yè)的空間需求量決定。 2)采用指針方式將各個空閑分區(qū)鏈接而成的鏈表,用以記錄主存分配現(xiàn)狀。 3)分配與回收算法按空閑分區(qū)鏈接方式的不同分類,有最佳、最壞、首次和下次適應(yīng)四種算法。 二、程序模擬的設(shè)計(jì) 1、基本思想 采用事件驅(qū)動模型。事件有: 1)申請主存事件,表示一個作業(yè)創(chuàng)建時(shí)提出的主存資源要求; 2)釋放主存事件,表示一個作業(yè)結(jié)束時(shí)其占用主存被回收。 2、數(shù)據(jù)結(jié)構(gòu)設(shè)計(jì) ...... typedef struct Event_DataType{事件數(shù)據(jù)類型的定義intEventType事件的類型 申請ASK或釋放RELEASE int OccurTime 事件發(fā)生的時(shí)間 char JobName 申請主存或被回收主存的作業(yè)名 int JobId 進(jìn)入系統(tǒng)的作業(yè)在作業(yè)表中相應(yīng)表項(xiàng)的編號 int SizeOfMemoryForAsk 作業(yè)申請占用主存的尺寸 int OccupyTimeOfMemoryForAsk 作業(yè)申請占用主存的時(shí)間長度 int WaitFlag 該事件是否等待過TRUE或FALSE
上傳時(shí)間: 2014-12-20
上傳用戶:cc1015285075
Software Testing, Second Edition provides practical insight into the world of software testing and quality assurance. Learn how to find problems in any computer program, how to plan an effective test approach and how to tell when software is ready for release. Updated from the previous edition in 2000 to include a chapter that specifically deals with testing software for security bugs, the processes and techniques used throughout the book are timeless. This book is an excellent investment if you want to better understand what your Software Test team does or you want to write better software.
標(biāo)簽: practical Software provides software
上傳時(shí)間: 2015-04-30
上傳用戶:bjgaofei
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1