码迷,mamicode.com
首页 >  
搜索关键字:read    ( 19693个结果
Sqler 工具更新
新加入打分邮件,针对每台db 服务器应用情况分析打分,目前支持batch、duration、cpu 3个维度。后续会支持 read io、write io、network io 等。自动化,数字化是衡量一个团队技术底蕴。飞扬转mysql了,那么国内顶尖mssql dba团队非这个团队莫属(开玩笑)。...
分类:数据库   时间:2015-02-06 01:53:07    阅读次数:306
LeetCode --- 38. Count and Say
题目链接:Count and Say The count-and-say sequence is the sequence of integers beginning as follows: 1, 11, 21, 1211, 111221, ... 1 is read off as "one 1" or 11. 11 is read off as "two 1s" or 21. 2...
分类:其他好文   时间:2015-02-06 00:51:16    阅读次数:133
python学习笔记(九) - IO编程
一. 文件读写: 1. 读文件: try: f = open('D:\\1.txt', 'r') # 读取普通文件 f = open('D:\\1.jpg', 'rb') # 读取二进制文件 f.read() finally: if f: f.close() with open('D:\\1.txt', 'r') as f: # 使用with会...
分类:编程语言   时间:2015-02-05 21:58:42    阅读次数:246
android的Environment类
StringMEDIA_BAD_REMOVAL在没有挂载前存储媒体已经被移除。StringMEDIA_CHECKING正在检查存储媒体。StringMEDIA_MOUNTED存储媒体已经挂载,并且挂载点可读/写。StringMEDIA_MOUNTED_READ_ONLY存储媒体已经挂载,挂载点只读。...
分类:移动开发   时间:2015-02-05 20:15:30    阅读次数:195
macvim 安装连接整理
http://www.7do.net/resources-10250-1-1.html http://www.cfanz.cn/index.php?c=article&a=read&id=81066 http://jingyan.baidu.com/article/59a015e3a33404f7948865d2.html http://blog.csdn.net/poechant/arti...
分类:系统相关   时间:2015-02-05 16:36:12    阅读次数:207
递归打印级联目录
'; //如果 $row 还是目录,除去'.','..'目录if($row != '.' && $row != '..' && is_dir($path.'/'.$row)){$dir_i++; read_dir($path.'/'.$row); $dir_i--;}}closedir...
分类:其他好文   时间:2015-02-05 13:30:59    阅读次数:165
PAT1082. Read Number in Chinese
Given an integer with no more than 9 digits, you are supposed to read it in the traditional Chinese way. Output "Fu" first if it is negative. For exam...
分类:其他好文   时间:2015-02-05 13:15:38    阅读次数:295
ACE_linux:Reactor与Proactor两种模式的区别
一、概念:Reactor与Proactor两种模式的区别。这里我们只关注read操作,因为write操作也是差不多的。下面是Reactor的做法:某个事件处理器宣称它对某个socket上的读事件很感兴趣;事件分离者等着这个事件的发生;当事件发生了,事件分离器被唤醒,这负责通知先前那个事件处理器;事件...
分类:系统相关   时间:2015-02-04 18:32:46    阅读次数:1731
CocoStudio1.2.0.1做装备切换
尊重原创,源地址:http://www.cocoachina.com/bbs/read.php?tid=194122 CocoStuido sample----DemoMap 源代码地址   https://github.com/chukong/CocoStudioSamples   大家可以预先下载这个源代码, 等下要用到里面的图片资源哦     换装系统是游戏里面可以提升游戏内容的部...
分类:其他好文   时间:2015-02-04 16:44:28    阅读次数:238
mysql初级使用指南
mysqld --verbose --help:可以现实mysql的配置选项mysql 的配置文件my.cnf调用次序(mysqld --verbose --help 的输出里有以下打印):Default options are read from the following files in th...
分类:数据库   时间:2015-02-04 16:00:12    阅读次数:228
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!