码迷,mamicode.com
首页 >  
搜索关键字:sent    ( 733个结果
The last packet successfully received from the server was 20,519 milliseconds ago. The last packet sent successfully to the server was 0 milliseconds ago.
本地升级了下MySQL的版本,从5.6升为5.7,数据文件直接拷贝的,项目查询数据库报错: Could not retrieve transation read-only status server The last packet successfully received from the ser ...
分类:其他好文   时间:2018-03-27 23:01:42    阅读次数:308
1.7获取os信号
```go package main import ( "fmt" "os" "os/signal" "syscall" ) func main() { // Create the channel where the received // signal would be sent. The Not ...
分类:其他好文   时间:2018-03-17 23:24:17    阅读次数:225
TCP协议的三次握手和四次挥手
三次握手: 第一次握手:建立连接时,客户端发送syn包(syn=j)到服务器,并进入SYN_SENT状态,等待服务器确认;SYN:同步序列编号(Synchronize Sequence Numbers)。 第二次握手:服务器收到syn包,必须确认客户的SYN(ack=j+1),同时自己也发送一个SY ...
分类:其他好文   时间:2018-03-16 23:47:55    阅读次数:171
TCP连接的3次握手和4次挥手
三次握手: 3次握手的过程如下: 第一次握手:起初两端都处于CLOSED关闭状态,Client将标志位SYN置为1,随机产生一个值seq=x,并将该数据包发送给Server,Client进入SYN-SENT状态,等待Server确认; 第二次握手:Server收到数据包后由标志位SYN=1得知Cli ...
分类:其他好文   时间:2018-03-13 13:53:07    阅读次数:141
nginx内置变量
``` 变量名 简要说明: $args 请求中的参数; $binary_remote_addr 远程地址的二进制表示 $body_bytes_sent 已发送的消息体字节数 $content_length HTTP请求信息里的"Content-Length"; $content_type 请求信息里 ...
分类:其他好文   时间:2018-03-07 13:35:01    阅读次数:144
Long-Polling, Websockets, SSE(Server-Sent Event) 之间有什么区别?
链接:http://www.mamicode.com/info-detail-1327667.html https://www.jianshu.com/p/d3f66b1eb748?from=timeline&isappinstalled=0 ...
分类:Web程序   时间:2018-03-05 18:20:50    阅读次数:198
错误400-The request sent by the client was syntactically incorrect
出错部分是学习SpringMVC 时学习https://my.oschina.net/gaussik/blog/640164,在添加博客文章部分出现了这个问题。 The request sent by the client was syntactically incorrect 说的意思是:由客户端 ...
分类:其他好文   时间:2018-03-02 22:12:46    阅读次数:180
nginx配置-反向代理
续:nginx安装配置开启nginx请求日志同时解开http模块如下部分注释log_formatmain‘$remote_addr-$remote_user[$time_local]"$request"‘‘$status$body_bytes_sent"$http_referer"‘‘"$http_user_agent""$http_x_forwarded_for"‘;access_loglogs
分类:其他好文   时间:2018-02-27 23:38:16    阅读次数:182
We wanted {"required":["value"]} and you sent ["text","value","id","sessionId"]
重装python pycharm后再次执行以前执行没有问题的Appium脚本报错 We wanted {"required":["value"]} and you sent ["text","sessionId","id" 看了脚本也没有错啊 然后搜索了下,发现是selenium的版本太高了 只能往 ...
分类:其他好文   时间:2018-02-27 19:34:11    阅读次数:388
iOS中的crash防护(二)KVC造成的crash
接上篇《 iOS中的crash防护(一)unrecognized selector sent to instance》 我们攻克了找不到方法实现的crash,这一篇我这里主要分析一下在KVC常见的crash。以及防护措施。 [object setValue:nil forKey:key] value ...
分类:移动开发   时间:2018-02-22 10:50:40    阅读次数:494
733条   上一页 1 ... 19 20 21 22 23 ... 74 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!