码迷,mamicode.com
首页 >  
搜索关键字:routine    ( 212个结果
创建多线程
//创建线程函数HANDLE CreateThread( LPSECURITY_ATTRIBUTES lpThreadAttributes, SIZE_T dwStackSize, LPTHREAD_START_ROUTINE lpStartAddress, ...
分类:编程语言   时间:2014-08-16 11:04:00    阅读次数:187
Multiple address space mapping technique for shared memory wherein a processor operates a fault handling routine upon a translator miss
Virtual addresses from multiple address spaces are translated to real addresses in main memory by generating for each virtual address an address space...
分类:移动开发   时间:2014-08-14 13:24:28    阅读次数:489
MySQL 存储过程删除大表
1、权限问题alter routine 编辑或删除存储过程create routine 建立存储过程execute 创建存储过程 2、存储过程相关的一些命令show procedure status\G 查看数据库中有哪些存储过程show procedure status where db = '....
分类:数据库   时间:2014-08-06 14:25:01    阅读次数:185
用完成例程(Completion Routine)实现的重叠I/O模型
/// 用完成例程(Completion Routine)实现的重叠I/O模型/// 异步IO模型/// 用完成例程来实现重叠I/O比用事件通知简单得多。在这个模型中,主线程只用不停的接受连接/// 即可;辅助线程判断有没有新的客户端连接被建立,如果有,就为那个客户端套接字激活一个/// 异步的WS...
分类:其他好文   时间:2014-08-03 18:00:25    阅读次数:250
Algorithm
The modern meaning for algorithm is quite similar to that of recipe, process, method, technique, procedure, routine, rigmarole, except that the word "...
分类:其他好文   时间:2014-07-16 19:15:58    阅读次数:184
postgres数据库查看用户权限
1、查看某用户的表权限select*frominformation_schema.table_privilegeswheregrantee=‘user_name‘;2、查看usage权限表select*frominformation_schema.usage_privilegeswheregrantee=‘user_name‘;3、查看存储过程函数相关权限表select*frominformation_schema.routine_privilege..
分类:数据库   时间:2014-07-15 11:01:54    阅读次数:916
《MySQL必知必会》读书笔记_4
PS:一个实际的存储过程案例CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_delete_article_by_id`(IN `id` int)BEGIN#Routine body goes here...DECLARE temp INT;SET @a...
分类:数据库   时间:2014-07-12 00:50:23    阅读次数:329
工作中线程的使用
1.HANDLE CreateThread( LPSECURITY_ATTRIBUTES lpThreadAttributes, // SD SIZE_T dwStackSize, // initial stack size LPTHREAD_START_ROUTINE lpStartAddress...
分类:编程语言   时间:2014-06-22 23:48:03    阅读次数:291
Codeforces Round #196 (Div. 2) B. Routine Problem
screen 尺寸为a:bvideo 尺寸为 c:d如果a == c 则 面积比为 cd/ab=ad/cb (ad c/d,则ad/bd > cb/db 则(ad > cb) screen尺寸可为 ad:bd, video的尺寸可为 cb:db 面积比为:cb*db/ad*bd = cb/ad...
分类:其他好文   时间:2014-06-13 17:11:40    阅读次数:236
编程知识点
printf命令模仿C程序库(library)里的printf()库例程(库函数)(library routine)。它几乎复制了该函数的所有功能。不过在Shell层级的版本上,会有些差异。由于printf的行为是由POSIX标准所定义,因此使用printf的脚本比使用echo移植性好。当在源程序中...
分类:其他好文   时间:2014-06-10 21:18:41    阅读次数:297
212条   上一页 1 ... 18 19 20 21 22 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!