虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

often

  • Memtest86 is thorough, stand alone memory test for Intel/AMD x86 architecture systems. BIOS based m

    Memtest86 is thorough, stand alone memory test for Intel/AMD x86 architecture systems. BIOS based memory tests are only a quick check and often miss failures that are detected by Memtest86.

    标签: architecture thorough Memtest systems

    上传时间: 2014-11-30

    上传用户:hn891122

  • This note describes some key aspects of what C++ is and of how C++ has developed over the years. The

    This note describes some key aspects of what C++ is and of how C++ has developed over the years. The spective is that of an experienced C++ user looking at C++ as a practical tool. No attempts are made to compare C++ to other languages, though I have tried to answer some questions that I have often heard asked by Lisp programmers.

    标签: describes developed aspects years

    上传时间: 2015-09-15

    上传用户:haoxiyizhong

  • Many applications in computer graphics require complex, highly detailed models. However, the level

    Many applications in computer graphics require complex, highly detailed models. However, the level of detail actually necessary may vary considerably. To control processing time, it is often desirable to use approximations in place of excessively detailed models.

    标签: applications computer graphics detailed

    上传时间: 2014-11-22

    上传用户:拔丝土豆

  • OpenSS7 This the fourth public release of the OpenSS7 Master Package. See README in the release for

    OpenSS7 This the fourth public release of the OpenSS7 Master Package. See README in the release for a sub-package listing. Most of the sub-packages in the release are production grade for Linux Fast-STREAMS. All existing validation test suites run clean on supported distributions and architectures. It is unlikely that the OpenSS7 Master Package will be released as frequently as before. Sub-packages will be released more often. To rebuild the master package with a new sub-package release, simply replace the directory to which the sub-package belongs with the unpacked sub-package release and then rebuild the master package. This release provides support for recent distributions and tool chains.

    标签: OpenSS7 release the Package

    上传时间: 2015-10-28

    上传用户:cc1

  • Web technology is not evolving in comfortable and incremental steps, but i s turbulent, erratic, and

    Web technology is not evolving in comfortable and incremental steps, but i s turbulent, erratic, and often rather uncomfortable. It is estimated that the Internet, arguably the most important part of the new technological environment, has expanded by about 2000 % and that is doubling in size every six to ten months. In recent years, the advance in computer and web technologies and the decrease in their cost have expanded the means available to collect and store data. As an intermediate consequence, the amount of information (Meaningful data) stored has been increasing at a very fast pace.

    标签: comfortable incremental technology and

    上传时间: 2015-11-05

    上传用户:Shaikh

  • 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

  • Uniform random number generators by Agner Fog, 2001 - 2007 randomc.zip contains a C++ class li

    Uniform random number generators by Agner Fog, 2001 - 2007 randomc.zip contains a C++ class library of uniform random number generators of good quality. The random number generators found in standard libraries are often of a poor quality, insufficient for large Monte Carlo calculations. This C++ implementation provides random number generators of a much better quality: Better randomness, higher resolution, and longer cycle lengths. The same random number generators are available as libraries coded in assembly language for higher speed. These libraries can be linked into projects coded in other programming languages under Windows, Linux, BSD, etc. The library files are available in the archive asmlib.zip. Non-uniform random number generators are provided in stocc.zip.

    标签: generators contains Uniform randomc

    上传时间: 2014-12-01

    上传用户:royzhangsz

  • As science advances, novel experiments are becoming more and more complex, requiring a zoo of contro

    As science advances, novel experiments are becoming more and more complex, requiring a zoo of control devices and electronics executing complicated sequences of steps. Device availability and monetary constrains usually lead to a highly heterogeneous setup with components from several different manufacturers using many different protocols and interfacing mechanisms. This often results in control software being puzzled together to use and provide a multitude of interfacing and control functionality, each using their own calling conventions, data structures, etc. To make matters worse, usually a group of relatively independent programmers is trying to write and maintain the code base. often this causes extensive duplication of effort as program segments are hard to reuse, since unpredictable changes to the segments by the original authors might compromise other code using these segments.

    标签: more experiments requiring advances

    上传时间: 2013-12-24

    上传用户:qilin

  • The second volume in the Write Great Code series supplies the critical information that today s comp

    The second volume in the Write Great Code series supplies the critical information that today s computer science students don t often get from college and university courses: How to carefully choose their high-level language statements to produce efficient code. Write Great Code, Volume 2: Thinking Low-Level, Writing High-Level, teaches software engineers how compilers translate high-level language statements and data structures into machine code. Armed with this knowledge, a software engineer can make an informed choice concerning the use of those high-level structures to help the compiler produce far better machine code--all without having to give up the productivity and portability benefits of using a high-level language

    标签: information the critical supplies

    上传时间: 2014-02-21

    上传用户:luke5347

  • I ve written some many years ago dynamic Huffman algorithm to compress and decompress data. It is ma

    I ve written some many years ago dynamic Huffman algorithm to compress and decompress data. It is mainly targeted to data with some symbols occuring more often than the rest (e.g. having some data file consisted of 3 different symbols and their total number of occurence in that file s1(1000), s2(200), s3(30) so the total length of file is 1000+200+30=1230 bytes, it will be encoded assigning one bit to s1 and 2 bits to s2, s3 so the encoded length will be 1*1000+2*(200+30)=1460 bits=182 bytes). In the best case the file consisted of just one symbol will be encoded with compression ratio as 1:8. Huffman coding is used in image compression, however in JPEG2000 arithmetic codec is imployed.

    标签: decompress algorithm compress Huffman

    上传时间: 2016-05-16

    上传用户:aysyzxzm