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

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

Read-Write

  • Welcome to PMOS. PMOS is a set of modules, mostly written in Modula-2, to support multitasking. PMO

    Welcome to PMOS. PMOS is a set of modules, mostly written in Modula-2, to support multitasking. PMOS was designed primarily with real-time applications in mind. It is not an operating system in the conventional sense rather, it is a collection of modules which you can import into your own programs, and which in particular allow you to write multi-threaded programs.

    標簽: PMOS multitasking Welcome modules

    上傳時間: 2015-07-10

    上傳用戶:windwolf2000

  • 8051 monitor programm: - use external ram to run user program - use eeprom to save user program

    8051 monitor programm: - use external ram to run user program - use eeprom to save user program - provide single step debug, can read internal register and ram

    標簽: program user use external

    上傳時間: 2015-07-11

    上傳用戶:zhichenglu

  • Readers can pick up this book and become familiar with C++ in a short time. Stan has taken a very br

    Readers can pick up this book and become familiar with C++ in a short time. Stan has taken a very broad and complicated topic and reduced it to the essentials that budding C++ programmers need to know to write real programs. His case study is effective and provides a familiar thread throughout the book.

    標簽: familiar Readers become short

    上傳時間: 2015-07-20

    上傳用戶:thinode

  • 關于FPGA流水線設計的論文 This work investigates the use of very deep pipelines for implementing circuits in

    關于FPGA流水線設計的論文 This work investigates the use of very deep pipelines for implementing circuits in FPGAs, where each pipeline stage is limited to a single FPGA logic element (LE). The architecture and VHDL design of a parameterized integer array multiplier is presented and also an IEEE 754 compliant 32-bit floating-point multiplier. We show how to write VHDL cells that implement such approach, and how the array multiplier architecture was adapted. Synthesis and simulation were performed for Altera Apex20KE devices, although the VHDL code should be portable to other devices. For this family, a 16 bit integer multiplier achieves a frequency of 266MHz, while the floating point unit reaches 235MHz, performing 235 MFLOPS in an FPGA. Additional cells are inserted to synchronize data, what imposes significant area penalties. This and other considerations to apply the technique in real designs are also addressed.

    標簽: investigates implementing pipelines circuits

    上傳時間: 2015-07-26

    上傳用戶:CHINA526

  • THIS is really two books in one: a tutorial and a reference manual for JDBC, the application program

    THIS is really two books in one: a tutorial and a reference manual for JDBC, the application programming interface that makes it possible for programmers to access databases from Java. The goal is to be useful to a wide range of readers, from database novices to database experts. Therefore, we have arranged the book so that information needed only by experts is separated out from the basic material. We hope that driver developers as well as application programmers and MIS administrators will find what they need. Because different sections are aimed at different audiences, we expect that few people will read every page. We have sometimes duplicated explanations in an effort to make reading easier for those who do not read all sections. This book will be most helpful to those who have some knowledge of the Java programming language and SQL (Structured Query Language), but one doesn t need to be an expert in either to understand the basic concepts presented here.

    標簽: application reference tutorial program

    上傳時間: 2015-08-04

    上傳用戶:zhengzg

  • Structure the sources so that the compression and decompression code form a library usable by any

    Structure the sources so that the compression and decompression code form a library usable by any program, and write both gzip and zip on top of this library. This would ideally be a reentrant (thread safe) library, but this would degrade performance. In the meantime, you can look at the sample program zread.c.

    標簽: decompression compression Structure the

    上傳時間: 2015-08-06

    上傳用戶:jackgao

  • Ever wondered how all those COM components that you ve written through the years play along with the

    Ever wondered how all those COM components that you ve written through the years play along with the .NET runtime. If you are a diehard COM developer interested in knowing how Classic COM Components are positioned in the .NET world or how COM aware clients could consume .NET components, read on.

    標簽: components the wondered through

    上傳時間: 2013-12-18

    上傳用戶:kristycreasy

  • ACM試題An Easy Problem Description As we known, data stored in the computers is in binary form. The

    ACM試題An Easy Problem Description As we known, data stored in the computers is in binary form. The problem we discuss now is about the positive integers and its binary form. Given a positive integer I, you task is to find out an integer J, which is the minimum integer greater than I, and the number of 1 s in whose binary form is the same as that in the binary form of I. For example, if "78" is given, we can write out its binary form, "1001110". This binary form has 4 1 s. The minimum integer, which is greater than "1001110" and also contains 4 1 s, is "1010011", i.e. "83", so you should output "83".

    標簽: Description computers Problem binary

    上傳時間: 2013-12-11

    上傳用戶:libenshu01

  • This section contains a brief introduction to the C language. It is intended as a tutorial on the la

    This section contains a brief introduction to the C language. It is intended as a tutorial on the language, and aims at getting a reader new to C started as quickly as possible. It is certainly not intended as a substitute for any of the numerous textbooks on C. 2. write a recursive function FIB (n) to find out the nth element in theFibanocci sequence number which is 1,1,2,3,5,8,13,21,34,55,…3. write the prefix and postfix form of the following infix expressiona + b – c / d + e * f – g * h / i ^ j4. write a function to count the number of nodes in a binary tr

    標簽: introduction the contains intended

    上傳時間: 2013-12-23

    上傳用戶:liansi

  • 帶進度條的文件上傳(java+ajax源碼) 在寫代碼的時候

    帶進度條的文件上傳(java+ajax源碼) 在寫代碼的時候,還要用到關于servlet的包servlet-api.jar。   寫完后調試的過程中,老報錯:java.lang.NoClassDefFoundError: org/apache/commons/io/output/DeferredFileOutputStream,后來一查才知道少了commons-io-1.2.jar,加上后,就ok了。   關于獲取及顯示進度部分,用了我原來自己寫的一個ajax的應用架構,從中抽取了部分代碼出來,注意,js文件只適用于UTF-8編碼的頁面,因為現在我只寫UTF-8編碼的頁面了,國際化方便。  progressUpload.jar中,包含了commons-fileupload-1.1.1.jar,servlet-api.jar,commons-io-1.2.jar,在progressUpload.jar中,還包含一個屬性文件,里面是一些默認配置,可根據自己的需要修改。   由于有源碼,怎么用可以自己看源碼,此外,那個例子中也寫了,在此不再贅述。例子中只取到了FileItem,再將item保存一下就ok了,示例代碼: File upFile = new File(remoteFilePath) try \{ item.write(upFile) fileInfo.put("infotip", "上傳成功.") } catch (java.lang.Exception e) \{ fileInfo.put("infotip", "上傳失敗.") }

    標簽: java ajax 文件上傳 代碼

    上傳時間: 2015-09-01

    上傳用戶:ccclll

主站蜘蛛池模板: 饶平县| 云安县| 河北区| 繁昌县| 平原县| 大渡口区| 永寿县| 西青区| 静乐县| 景德镇市| 微山县| 许昌市| 巴南区| 南康市| 武宁县| 景泰县| 苗栗市| 栾川县| 仲巴县| 潞城市| 宿松县| 惠安县| 三河市| 静海县| 修武县| 澜沧| 高邑县| 湖口县| 阜平县| 吕梁市| 元氏县| 庆云县| 朝阳市| 澎湖县| 万源市| 阿合奇县| 湘阴县| 焉耆| 平原县| 大荔县| 洛川县|