关于TCP协议 TCP/IP协议分层模型 可以看到,TCP协议位于运输层,TCP将用户数据打包构成报文段,它发送数据时启动一个定时器,另一端收到数据进行确认,对失序的数据重新排序,丢弃重复的数据。TCP提供一种面向连接的可靠的字节流服务,面向连接意味着两个使用TCP的应用(B/S)在彼此交换数据之前 ...
分类:
其他好文 时间:
2019-12-25 22:01:00
阅读次数:
75
A self-dividing number is a number that is divisible by every digit it contains. For example, 128 is a self-dividing number because 128 % 1 == 0, 128 ...
分类:
其他好文 时间:
2019-12-24 17:05:35
阅读次数:
90
https://www.codebyamir.com/blog/java-developers-guide-to-ssl-certificates Overview When developing web applications, we often need to integrate with o ...
分类:
编程语言 时间:
2019-12-24 13:59:37
阅读次数:
103
转自:https://www.cnblogs.com/dtmobile-ksw/p/11988132.html 安装Flink standalone集群 1.下载flink https://flink.apache.org/downloads.html 2.官网参考 https://ci.apach ...
分类:
其他好文 时间:
2019-12-24 11:58:40
阅读次数:
87
We mean the world to our children and when we let them down, it’s a tragedy. A simple promise we make in a rush and break afterward may mean nothing t ...
分类:
其他好文 时间:
2019-12-24 10:11:41
阅读次数:
82
项目的GitHub地址 前端地址: 后端地址: 针对之前提到的问题进行思考和总结 1. GitHub的issue不够 在开发过程中的问题,通过线上qq群讨论结束后就结束,并没有及时反馈到issue上,导致项目的issue不够,不能完整的体现项目整个的进展过程。issue的及时性相比于线上qq讨论要更 ...
分类:
其他好文 时间:
2019-12-23 22:42:08
阅读次数:
111
出处: 深入理解 Java 虚拟机-如何利用 VisualVM 对高并发项目进行性能分析 ...
分类:
其他好文 时间:
2019-12-23 16:33:25
阅读次数:
63
创建缓存对象 参考:https://www.khronos.org/registry/OpenCL/sdk/1.0/docs/man/xhtml/clCreateBuffer.html // 创建缓存对象 cl_mem clCreateBuffer ( cl_context context, //上 ...
分类:
其他好文 时间:
2019-12-23 00:20:51
阅读次数:
118
Data Helpers Data Helpers Data helpers are used to output data from your site. Use this reference list to discover what each handlebars helper can do ...
分类:
其他好文 时间:
2019-12-22 22:59:27
阅读次数:
193
定义函数的方法两种 函数声明 function fnName(arg0, arg1, arg2) { //函数体 } 重要特征:函数声明提升 函数表达式 let fnName = function(arg0, arg1, arg2) { //函数体 } 即创建一个匿名函数(因为function关键字 ...
分类:
其他好文 时间:
2019-12-22 18:47:14
阅读次数:
80