码迷,mamicode.com
首页 >  
搜索关键字:run    ( 19056个结果
SQLPlus Error handle
SQLPlus directive "WHENEVER SQLERROR EXIT 1" will return a specified code when any SQL error throwed when run a sql file.Then we can catch the return ...
分类:数据库   时间:2014-08-18 18:06:22    阅读次数:279
nginx获取url参数
在文件src\http\ngx_http_core_module.c的函数ngx_http_core_run_phases(ngx_http_request_t *r)里面,添加如下代码://声明部分 ngx_str_t* name; ngx_http_variable_value_t*...
分类:其他好文   时间:2014-08-18 17:56:22    阅读次数:1094
Median of Two Sorted Arrays
①原题 There are two sorted arrays A and B of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)). ②乡村英语翻译一下 给你两个...
分类:其他好文   时间:2014-08-18 16:40:32    阅读次数:155
05gdb入门(上)
n 基本框架:a) Gdb功能b) 运行程序c) 查看源码d) 设置断点(break)与观察点(watch)e) 单步调试f) Gdb常用命令总结5.1 gdb功能1)启动程序:Run(r),另外启动程序的时候还可以带上参数(argv[1],argv[2]……)2) 设置断点:设置断点:brea.....
分类:数据库   时间:2014-08-18 16:12:12    阅读次数:250
设置内部sdcard存储下限
Run application, SQLiteFullException happend when devices memory is full....
分类:其他好文   时间:2014-08-18 14:30:52    阅读次数:135
UBuntu14.04安装Qt5.3.1
1. Qt5.3.1下载地址为:http://qt-project.org/,选择”Qt 5.3.1 for Linux 32-bit”版本,文件名是”qt-opensource-linux-x86-5.3.1.run”;2. 进入qt-opensource-linux-x86-5.3.1.run目...
分类:其他好文   时间:2014-08-17 21:18:42    阅读次数:280
动态原型模式,解决原型创建对象的时候未封装问题
//动态原型模式function Box(name,age){ this.name = name; this.age = age; this.family = ['哥哥','姐姐','妹妹']; if(typeof this.run != 'function'){ ...
分类:其他好文   时间:2014-08-17 18:17:42    阅读次数:176
cf 459E
cf459E这题说的是给定一个n点m条边的带边权的有向图,从中找出一条路径(可以带环),该路径包含的边数最多,并且要求路径中的权值必须严格递增,然后对边进行排序完个后采用dp去解特殊判断一下边权值相等的时候就ok了#include #include #include #include /* run ...
分类:其他好文   时间:2014-08-17 16:48:12    阅读次数:183
原型创建对象
//原型创建对象function Box(){};Box.prototype.name = 'Lee';Box.prototype.age = 100;Box.prototype.run = function(){ return this.name + this.age + 'running....
分类:其他好文   时间:2014-08-17 15:30:22    阅读次数:179
构造函数创建对象
//构造函数创建对象function Box(name,age){ //创建一个对象 this.name = name; //添加一个属性 this.age = age; this.run = function(){ return this...
分类:其他好文   时间:2014-08-17 15:25:42    阅读次数:137
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!