亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

lower-Level

  • FIST可堆疊文件系統

    FIST可堆疊文件系統,linux文件系統修改相關的開源軟件,使得對linux文件系統功能的改進很簡單了 The FiST (File System Translator) system combines two methods to solve the above problems in a novel way: a set of stackable file system templates for each operating system, and a high-level language that can describe stackable file systems in a cross-platform portable fashion. Using FiST, stackable file systems need only be described once. FiST s code generation tool, fistgen, compiles a single file system description into loadable kernel modules for several operating systems (currently Solaris, Linux, and FreeBSD). The project demonstrates that with FiST, code size and development time are reduced significantly, while imposing a small performance overhead of only 1-2%. These benefits are achieved, as well as portability, without changing existing operating systems or file system.

    標簽: FIST 堆疊 文件系統

    上傳時間: 2014-01-10

    上傳用戶:xsnjzljj

  • Returns weighted percentiles of a sample given the weight vector w % The idea is to give more empha

    Returns weighted percentiles of a sample given the weight vector w % The idea is to give more emphasis in some examples of data as compared to % others by giving more weight. For example, we could give lower weights to % the outliers. % The motivation to write this function is to compute percentiles for Monte % Carlos simulations where some simulations are very bad (in terms of goodness % of fit between simulated and actual value) than the others and to give % the lower weights based on some goodness of fit criteria.

    標簽: percentiles weighted Returns sample

    上傳時間: 2016-01-28

    上傳用戶:小儒尼尼奧

  • Boosting is a meta-learning approach that aims at combining an ensemble of weak classifiers to form

    Boosting is a meta-learning approach that aims at combining an ensemble of weak classifiers to form a strong classifier. Adaptive Boosting (Adaboost) implements this idea as a greedy search for a linear combination of classifiers by overweighting the examples that are misclassified by each classifier. icsiboost implements Adaboost over stumps (one-level decision trees) on discrete and continuous attributes (words and real values). See http://en.wikipedia.org/wiki/AdaBoost and the papers by Y. Freund and R. Schapire for more details [1]. This approach is one of most efficient and simple to combine continuous and nominal values. Our implementation is aimed at allowing training from millions of examples by hundreds of features in a reasonable time/memory.

    標簽: meta-learning classifiers combining Boosting

    上傳時間: 2016-01-30

    上傳用戶:songnanhua

  • Developing internationalized products is a continuous balancing act. Developers and their managers o

    Developing internationalized products is a continuous balancing act. Developers and their managers often grossly underestimate the level of effort and attention to detail required to create either a world-ready, single-binary application ready for use in many different markets, or high-quality, foreign-language editions of a product. If you are a developer, make sure your management understands what is involved.

    標簽: internationalized Developing Developers continuous

    上傳時間: 2014-12-05

    上傳用戶:TRIFCT

  • This fourth edition of the definitive reference to JavaScript, a scripting language that can be embe

    This fourth edition of the definitive reference to JavaScript, a scripting language that can be embedded directly in web pages, covers the latest version of the language, JavaScript 1.5, as supported by Netscape 6 and Internet Explorer 6. The book also provides complete coverage of the W3C DOM standard (Level 1 and Level 2), while retaining material on the legacy Level 0 DOM for backward compatibility

    標簽: JavaScript definitive reference scripting

    上傳時間: 2013-12-25

    上傳用戶:xuanchangri

  • Easy-to-Use, Ultra-Tiny, Differential, 16-Bit Delta Sigma ADC With I2C Interface The LTC2453 is an

    Easy-to-Use, Ultra-Tiny, Differential, 16-Bit Delta Sigma ADC With I2C Interface The LTC2453 is an ultra-tiny, fully differential, 16-bit, analog-to-digital converter. The LTC2453 uses a single 2.7V to 5.5V supply and communicates through an I2C interface. The ADC is available in an 8-pin, 3mm x 2mm DFN package. It includes an integrated oscillator that does not require any external components. It uses a delta-sigma modulator as a converter core and has no latency for multiplexed applications. The LTC2453 includes a proprietary input sampling scheme that reduces the average input sampling current several orders of magnitude lower than conventional delta-sigma converters. Additionally, due to its architecture, there is negligible current leakage between the input pins.

    標簽: Differential Easy-to-Use Ultra-Tiny Interface

    上傳時間: 2014-01-08

    上傳用戶:鳳臨西北

  • 本書特色 全面覆蓋了RHCT(Red Hat Certified Technician)、Comp TlA’s Linux+和LPl(Linux Professional Institute)Leve

    本書特色 全面覆蓋了RHCT(Red Hat Certified Technician)、Comp TlA’s Linux+和LPl(Linux Professional Institute)Level l 三大Linux人證考試的內容和要點。   講解了重要的命令行工具(包括shell腳本與文本處理命令)以及最新的圖形界面管理工具和應用程序。   “理論與實踐密切相結合”,每章都附有復習題與可操作性強的實踐項目項,使得讀者可以在牢固掌握基礎知識的同時,在動手實踐能力上也能獲得較大的提高。   本書致力于Linux系統管理這一主題,為有志于在Lmux領域有所發展的讀者提供了一份不可多得的參考教材。

    標簽: Linux Professional Technician Certified

    上傳時間: 2013-12-26

    上傳用戶:fxf126@126.com

  • 卡內基·梅隆大學的軟件工程系列教材之六

    卡內基·梅隆大學的軟件工程系列教材之六,系統編程(System-Level Programming)

    標簽: 大學 軟件工程 教材

    上傳時間: 2016-02-11

    上傳用戶:cx111111

  • The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical)

    The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical) of any level of nesting to XML format and vice versa. For example, >> project.name = MyProject >> project.id = 1234 >> project.param.a = 3.1415 >> project.param.b = 42 becomes with str=xml_format(project, off ) "<project> <name>MyProject</name> <id>1234</id> <param> <a>3.1415</a> <b>42</b> </param> </project>" On the other hand, if an XML string XStr is given, this can be converted easily to a MATLAB data type or structure V with the command V=xml_parse(XStr).

    標簽: converts Toolbox complex logical

    上傳時間: 2016-02-12

    上傳用戶:a673761058

  • Compact Flash Support For Nios II 5.0, To download supporting materials for this new Compact Flash s

    Compact Flash Support For Nios II 5.0, To download supporting materials for this new Compact Flash support, download the following .zip file, extract to a computer with Quartus II 5.0 & Nios II 5.0 installed, and proceed to use the hardware and/or software examples of your choice to proceed. Additional information is available in the readme.txt document, included in the top-level of the .zip file

    標簽: Compact Flash supporting materials

    上傳時間: 2016-02-13

    上傳用戶:gmh1314

主站蜘蛛池模板: 陆丰市| 巴南区| 葫芦岛市| 鄄城县| 衡阳县| 赤峰市| 新昌县| 南开区| 高淳县| 睢宁县| 万山特区| 晋宁县| 东莞市| 黎城县| 福贡县| 防城港市| 巩留县| 略阳县| 松原市| 玉田县| 黑龙江省| 堆龙德庆县| 丹巴县| 四会市| 平和县| 宝丰县| 石首市| 平陆县| 霍州市| 威信县| 左云县| 宝兴县| 克什克腾旗| 志丹县| 融水| 图们市| 衡阳县| 上蔡县| 丰宁| 台南市| 务川|