SMC takes a state machine stored in a .sm file and generates a State pattern in twelve programming languages. Includes: default transitions, transition args, transition guards, push/POP transitions and Entry/Exit actions. See User Manual for more info.
標簽: programming generates machine pattern
上傳時間: 2013-12-25
上傳用戶:gaome
一個用Java開發的Web郵局,可以使用戶通過瀏覽器訪問他們的POP/SMTP服務器,支持多種語言,MIME和虛擬域名!
上傳時間: 2014-01-05
上傳用戶:ynzfm
A user-space device driver can do many of the things that kernel drivers can t, such as perform a long-running computation, block while waiting for an event, or read files from the file system. Unlike kernel drivers, a user-space device driver can use other device drivers--that is, access the network, talk to a serial port, get interactive input from the user, POP up GUI windows, or read from disks. User-space drivers implemented using FUSD can be much easier to debug it is impossible for them to crash the machine, are easily traceable using tools such as gdb, and can be killed and restarted without rebooting even if they become corrupted. FUSD drivers don t have to be in C--Perl, Python, or any other language that knows how to read from and write to a file descriptor can work with FUSD. User-space drivers can be swapped out, whereas kernel drivers lock physical memory.
標簽: user-space can drivers perform
上傳時間: 2014-01-01
上傳用戶:saharawalker
用C實現棧的InitStack, empty, full, push, POP, clear, getPOP。的功能。
上傳時間: 2013-12-22
上傳用戶:yyyyyyyyyy
Normally a list view is updated by a user directly by selecting a list view item and then editing or deleting it. New items are usually added at the bottom of the list. This works fine since the user knows which items have been changed or deleted and where the new items will POP up. A drawback of it is that, if the list is sorted, then new items will not be displayed in a sorted way, instead they will be listed in the order of being created.
標簽: list view selecting Normally
上傳時間: 2017-07-02
上傳用戶:Pzj
GSM (Global System for Mobile communications: originally from Groupe Spécial Mobile) is the most POPular standard for mobile phones in the world. Its promoter, the GSM Association, estimates that 80 of the global mobile market uses the standard.[1] GSM is used by over 3 billion people across more than 212 countries and territories.[2][3] Its ubiquity makes international roaming very common between mobile phone operators, enabling subscribers to use their phones in many parts of the world
標簽: Mobile communications originally Global
上傳時間: 2017-07-15
上傳用戶:電子世界
按return鍵到后臺,調用POPallform的時候,首先執行deactive form,這樣在POP棧頂form的時候,下一個form將不會收到active事件,縮短響應return key事件的時間
上傳時間: 2017-07-19
上傳用戶:15736969615
由于工作需要,將本地文件發送到郵件備份代碼工具,通過STMP和POP協議來實現的
標簽:
上傳時間: 2017-08-29
上傳用戶:jyycc
DATAS SEGMENT w dw 0 keybuf db 255 db 0 db 255 dup(0) ;定義鍵盤輸入需要的緩沖區 DATAS ENDS STACKS SEGMENT db 200 dup(?) STACKS ENDS CODES SEGMENT ASSUME CS:CODES,DS:DATAS,SS:STACKS START: MOV AX,DATAS MOV DS,AX mov dx,offset keybuf ;用0a號功能,輸入一個字符串 mov ah,0ah ;用回車結束 int 21h mov dl,0ah ;再進行換行,以便在下一行顯示轉換后的字符串 mov ah,2 int 21h ; push ax ; push dx ; mov dl,cl ; mov ah,02 ; int 21h ; POP dx ; POP ax mov bx,offset keybuf+1 ;取出字符串的字符個數,作為循環的次數 mov cl,[bx] mov ch,0 mov ax,0 again: inc bx mov ax,[w] push bx mov bx,16 mul bx POP bx ;是小寫字母,則轉換為大寫字母 mov [w],ax mov dl,[bx] ;取出一個字符, cmp dl,'9' jbe lab1 cmp dl,'F' jbe lab2 sub dl,32 lab2: sub dl ,07h lab1: sub dl,30h add [w],dx loop again mov ax,[w] mov bx,-1 push bx mov bx,10 lab3 :mov dx,0 div bx push dx cmp ax,0 jnz lab3 lab5: POP dx cmp dx,-1 jz lab4 add dl,30h mov ah,02 int 21h jmp lab5 ;循環,處理完整個字符串 lab4: MOV AH,4CH INT 21H CODES ENDS END START
標簽: 匯編
上傳時間: 2015-04-02
上傳用戶:wcc0310
運行在Windows NT/2000/XP 下多線程方式對指定IP段(指定主機),或主機列表,進行漏洞、弱口令賬號、匿名用戶檢測的工具,掃描項目包括name、port、ftp、ssh、telnet、smtp、finger、iis、cgi、POP、rpc、ipc、imap、mssql、mysql、cisco、plugin...
上傳時間: 2016-06-30
上傳用戶:siyecao