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

蟲(chóng)蟲(chóng)首頁(yè)| 資源下載| 資源專輯| 精品軟件
登錄| 注冊(cè)

Text-Overflow

  • 短信程序

    短信程序,用于無(wú)線數(shù)據(jù)傳輸功能,是TEXT格式的

    標(biāo)簽: 短信 程序

    上傳時(shí)間: 2014-01-26

    上傳用戶:924484786

  • The ability to create groups of reports, and grant users access to reports by group. The ability to

    The ability to create groups of reports, and grant users access to reports by group. The ability to generate reports as PDF, XLS, HTML, and CSV files. The ability to generate bar, pie and xy charts for inclusion in reports. The ability to schedule and email PDF, XLS, and CSV reports. The ability to define reusable report parameters. Available parameter types include Date, Text, and Query Parameters. The ability to create multiple DataSources for use in generating reports. Support for JNDI DataSources and internal connection pooling via Commons-DBCP is included. The ability to upload and hot deploy new reports. Web based administration of users, groups, reports, parameters, and datasources. Cross platform database support via Hibernate based persistence layer. Available in a preconfigured bundle with Apache Tomcat.

    標(biāo)簽: ability reports The to

    上傳時(shí)間: 2014-01-14

    上傳用戶:franktu

  • In each step the LZSS algorithm sends either a character or a <position, length> pair. Among t

    In each step the LZSS algorithm sends either a character or a <position, length> pair. Among these, perhaps character "e" appears more frequently than "x", and a <position, length> pair of length 3 might be commoner than one of length 18, say. Thus, if we encode the more frequent in fewer bits and the less frequent in more bits, the total length of the encoded text will be diminished. This consideration suggests that we use Huffman or arithmetic coding, preferably of adaptive kind, along with LZSS.

    標(biāo)簽: algorithm character position either

    上傳時(shí)間: 2014-01-27

    上傳用戶:wang0123456789

  • The Kannel Open Source WAP and SMS gateway works as both an SMS gateway, for implementing keyword b

    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

  • java寫(xiě)的局域網(wǎng)廣播系統(tǒng).本軟件包括2個(gè)部分:局域網(wǎng)廣播系統(tǒng)——服務(wù)端

    java寫(xiě)的局域網(wǎng)廣播系統(tǒng).本軟件包括2個(gè)部分:局域網(wǎng)廣播系統(tǒng)——服務(wù)端,局域網(wǎng)廣播系統(tǒng)——接收端,服務(wù)端是通過(guò)網(wǎng)絡(luò)連接,與一些固定的計(jì)算機(jī)相連形成局域網(wǎng)進(jìn)行彼此間的信息發(fā)送,實(shí)現(xiàn)通信功能。可以發(fā)送計(jì)算機(jī)中存儲(chǔ)的文本文件,只對(duì)以文本文擋(text)上文字進(jìn)行識(shí)別;接收端是通過(guò)網(wǎng)絡(luò)連接,在指定的局域網(wǎng)中接收固定計(jì)算機(jī)播放的消息。

    標(biāo)簽: java 局域網(wǎng) 廣播系統(tǒng)

    上傳時(shí)間: 2015-03-29

    上傳用戶:tuilp1a

  • 本程序需在DOS下運(yùn)行。每運(yùn)行一次可執(zhí)行程序random.exe

    本程序需在DOS下運(yùn)行。每運(yùn)行一次可執(zhí)行程序random.exe,即可顯示任意兩個(gè) 16進(jìn)制數(shù)的加法或減法表達(dá)式及其運(yùn)算結(jié)果。在減法運(yùn)算中,如果被減數(shù)小于減數(shù),顯示 “Divide Overflow”的提示信息。

    標(biāo)簽: random DOS exe 程序

    上傳時(shí)間: 2013-12-31

    上傳用戶:梧桐

  • 關(guān)于tts語(yǔ)音引擎的使用方法!很多軟件具有英文發(fā)音和朗讀功能

    關(guān)于tts語(yǔ)音引擎的使用方法!很多軟件具有英文發(fā)音和朗讀功能,它們都使用了MSTTS(Microsoft Text To Speech)技術(shù)。微軟遵照COM的標(biāo)準(zhǔn),提供了一套Speech API來(lái)對(duì)MSTTS進(jìn)行編程。要在程序中使用這套API,必須確保系統(tǒng)已經(jīng)安裝了MSTTS和Spchapi軟件包。   Speech API可以作為類型庫(kù)引用到Delphi中,方法是:打開(kāi)Project選單下的Import Type Litrary,點(diǎn)擊“Add”加入Windows\Speech目錄下的Vtxauto.tlb文件,在Delphi的Import目錄中就會(huì)生成VTxtAuto—TLB.pas文件,其中定義了VTxtAuto—TLB單元,把它加到Uses成員中來(lái)。設(shè)計(jì)如圖2所示的窗口,定義全局變量: var VoTxt:IVTxtAuto   然后在Form的OnCreate事件中加入:   VoTxt:=CoVTxtAuto_.Create   VoTxt.Register(′′,′Speech Test′) {注冊(cè)}   “Read”按鈕代碼為:   VoTxt.Speak(Memo1.Lines.Text,10) {朗讀}   “Stop”按鈕代碼為:   VoTxt.StopSpeaking {停止朗讀}   至此,應(yīng)用程序已具有朗讀功能,10表示使用普通語(yǔ)氣。借住VoTxt的屬性和方法,我們還可以控制閱讀速度和語(yǔ)氣,實(shí)現(xiàn)暫停、跳句等功能,Speech API編程就這么簡(jiǎn)單。

    標(biāo)簽: tts 語(yǔ)音 引擎 多軟件

    上傳時(shí)間: 2014-01-21

    上傳用戶:13681659100

  • This firmware translates a PS/2 mouse to a USB mouse. The translator firmware is entirely interrup

    This firmware translates a PS/2 mouse to a USB mouse. The translator firmware is entirely interrupt driven (with the exception of sending the data via USB to the host.) An interrupt is generated when the PS/2 start bit is received, at which time the firmware will begin its receive routine. In addition to this interrupt, every 168ms a timer overflow interrupts the main program and implements one state of the mouse state machine. This state machine handles sending bytes to and translating bytes received from the PS/2 mouse automatically. All of this is done in the background while the main program runs in the foreground. The only operation that the main program implements is sending mouse data to the PC via USB.

    標(biāo)簽: firmware mouse translates translator

    上傳時(shí)間: 2015-04-26

    上傳用戶:cuiyashuo

  • 這用java語(yǔ)言模擬一個(gè)銀行的操作系統(tǒng)

    這用java語(yǔ)言模擬一個(gè)銀行的操作系統(tǒng),main-class:run 圖形界面模式:加參數(shù)-graphic 文字模式:加參數(shù)-text Client.txt存放客戶信息 Compte.txt存放賬戶信息 Operation.txt賬號(hào)使用信息 這個(gè)版本是法語(yǔ)版的

    標(biāo)簽: java 語(yǔ)言 模擬 操作系統(tǒng)

    上傳時(shí)間: 2015-05-09

    上傳用戶:hzy5825468

  • VHDL 關(guān)于2DFFT設(shè)計(jì)程序 u scinode1 ∼ scinode9.vhd: Every SCI node RTL vhdl code. The details can be

    VHDL 關(guān)于2DFFT設(shè)計(jì)程序 u scinode1 ∼ scinode9.vhd: Every SCI node RTL vhdl code. The details can be seen in the following section. u 2dfft.vhd: The top module includes these scinodes and form a 3x3 SCI Torus network, and it support these sub-modules scinode1∼ scinode9 reset and clk and global_cnt signals to synchronous the sub-modules to simplify the overall design. u proj2.wfc: VSS simulation result that is the same as the ModelSim simulation result. u Pro2_2.wfc: VSS simulation result of another test pattern can’t cause overflow situation.

    標(biāo)簽: scinode1 scinode details 2DFFT

    上傳時(shí)間: 2014-12-02

    上傳用戶:15071087253

主站蜘蛛池模板: 镇原县| 富宁县| 错那县| 扎鲁特旗| 旅游| 平南县| 大丰市| 乐清市| 沽源县| 阳西县| 楚雄市| 扬中市| 酉阳| 肥乡县| 宜州市| 秦皇岛市| 瑞安市| 游戏| 金溪县| 辛集市| 环江| 武强县| 旬邑县| 青海省| 商南县| 项城市| 漾濞| 乐山市| 安塞县| 杭州市| 双流县| 万盛区| 台江县| 营山县| 东乌珠穆沁旗| 广灵县| 菏泽市| 黑龙江省| 尚义县| 大同县| 德令哈市|