码迷,mamicode.com
首页 >  
搜索关键字:err    ( 12054个结果
结构体位制详解 -- C
#include #include #include //基本概念 /* struct _M { (1) 类型 参数名 : 占位大小; (2) 类型 : 占位大小; } (1) 类型 -- int,unsigned(32位),short,char。 参数名 -- 同个结构体里面不能重名参数。 占位大小 -- 不能大于类型最最大位数。 (2) 一般用于寄存器中保留位 */ //占位大小问题: /* err -- int类型是3...
分类:其他好文   时间:2014-07-31 13:24:26    阅读次数:337
几种并发服务器模型的实现:多线程,多进程,select,poll,epoll
#include #include #include #include #include #include #include #include #include #include "rio.h"#include #include #define ERR_EXIT(m) \ do { \ ...
分类:编程语言   时间:2014-07-31 02:35:06    阅读次数:411
Mysql学习(一)文件
1.参数文件2.日志文件 错误日志文件 xxx.err文件(xxx一般代表主机名) 慢查询日志文件 1).一般是设置一个阈值,将执行时间超过该值的sql语句记录到慢查询日志里面 需要设置long_query_time参数(5.1版本后单位微秒),开关为log_slo...
分类:数据库   时间:2014-07-30 23:29:15    阅读次数:317
Go学习——网络
端口扫描: package?main import?( "fmt" "net" "strconv" ) func?main()?{ service?:=?"localhost:" //从1号端口扫描到1000号 for?port?:=?1;?port?<?1000;?port++?{ _,?err?:=?net...
分类:其他好文   时间:2014-07-29 16:24:10    阅读次数:195
graph driver-device mapper-02driver基本操作
// 清除thin pool 1.1 func (d *Driver) Cleanup() error { // 停止thin pool err := d.DeviceSet.Shutdown() return err } // 当加载新镜像时,添加一个新thin device // id为containerid或imageid 1.2 func (d *Driver) Create(i...
分类:移动开发   时间:2014-07-26 02:59:46    阅读次数:302
graph driver-device mapper-03thin pool基本操作
// 在thin pool中创建一个新thin device // 调用路径:driver.Create() 1.1 func (devices *DeviceSet) AddDevice(hash, baseHash string) error { //查找父device baseInfo, err := devices.lookupDevice(baseHash) if err != n...
分类:移动开发   时间:2014-07-26 02:53:26    阅读次数:347
webservice通过soap协议出现不能加载wsdl文件解决办法
PHP在用SOAP协议做接口的时候,经常会碰到如下问题,不是不成功,而是偶尔不成功,实在让人费解!ERR:SOAP-ERROR:ParsingWSDL:Couldn‘tloadfrom‘http://www.xxxxx.com/member/member_sync.php?wsdl‘:failedtoloadexternalentity"http://www.xxxxx.com/member/member_sync.php?ws..
分类:Web程序   时间:2014-07-24 17:54:07    阅读次数:354
Nodejs之socket广播
nodejs发送udp广播还是蛮简单的,我们先写个服务器用于接收广播数据,代码如下:var dgram = require("dgram");var server = dgram.createSocket("udp4");server.on("error", function (err) { co....
分类:Web程序   时间:2014-07-23 11:41:26    阅读次数:226
pythonxml-rpc记录(游戏自动发布)
#!/usr/bin/python#-*-encoding=utf-8-*-####################################fromSimpleXMLRPCServerimportSimpleXMLRPCServerfromSocketServerimportThreadingMixInimportsubprocess,os.path,os,statimportre,getopt,sysERR_INSECURE=‘[INSECURE_NAME]‘ERR_NO_SCRIPT=‘[NO_S..
分类:编程语言   时间:2014-07-21 15:26:17    阅读次数:300
MongoDB的“not master and slaveok=false”错误解决
在客户端操作MongoDB时经常会如下错误:SECONDARY> show collections;Fri Jul 18 17:36:53 uncaught exception: error: { "$err" : "not master and slaveok=false", "code" : 1...
分类:数据库   时间:2014-07-19 15:34:56    阅读次数:514
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!