[TOOL]ui快速转python.bat 继承 ...
分类:
其他好文 时间:
2019-11-19 15:48:08
阅读次数:
102
本机安装教程(ubuntu) https://wiki.onosproject.org/display/ONOS/Developer+Quick+Start 1. 安装bazel: https://docs.bazel.build/versions/master/install ubuntu.htm ...
分类:
其他好文 时间:
2019-11-17 14:48:28
阅读次数:
118
递归: 1、函数自己调用自己 2、要有结束递归的条件 def print_num(n): if n < 0: return print(n) print_num(n-1) print("******") print_num(3) 执行结果: 3 2 1 0 **** **** **** **** 解 ...
分类:
编程语言 时间:
2019-11-17 10:59:34
阅读次数:
59
QUIC(Quick UDP Internet Connections,快速UDP互联网连接)是Google提出的一种基于UDP改进的通信协议,其目的是降低网络通信的延迟,提供更好的用户互动体验。 QUIC的主要特点包括:具有SPDY(SPDY是谷歌研制的提升HTTP速度的协议,是HTTP/2.0的 ...
分类:
其他好文 时间:
2019-11-16 15:00:32
阅读次数:
124
So, it is most likely the most crucial portion of the years spent researching for a college degree. You may be good at writing, hunting information, a ...
分类:
其他好文 时间:
2019-11-14 22:15:13
阅读次数:
94
https://reacttraining.com/react-router/web/guides/quick-start https://react-guide.github.io/react-router-cn/ ...
分类:
其他好文 时间:
2019-11-14 15:22:49
阅读次数:
76
zookeeper zookeeper下载地址 http://www.apache.org/dyn/closer.cgi/zookeeper ?随便选择一个提供的路径 我们只需要关注zookeeper目录中的bin目录和conf配置目录就OK了,第一件事我们要做的就是修改配置文件。 zookeepe ...
分类:
编程语言 时间:
2019-11-13 11:20:07
阅读次数:
116
快速排序 2019-11-10 11:43:52 by冲冲 1、概念 快速排序(Quick Sort)使用分治法策略。 ① 基本思想是,选择一个基准数,通过一趟排序将要排序的数据分割成独立的两部分;其中一部分的所有数据都比另外一部分的所有数据都要小。然后,再按此方法对这两部分数据分别进行快速排序,整 ...
分类:
编程语言 时间:
2019-11-10 17:51:56
阅读次数:
93
Back in August, Compose.io announced the addition of JavaScript as an internal language for all new PostgreSQL deployments. This was thanks to the PL/ ...
分类:
其他好文 时间:
2019-11-09 22:10:32
阅读次数:
155
zookeeper 注册中心 Zookeeper 是 Apacahe Hadoop 的子项目,是一个树型的目录服务,支持变更推送,适合作为 Dubbo 服务的注册中心,工业强度较高,可用于生产环境,并推荐使用 [1]。 流程说明: 服务提供者启动时: 向 /dubbo/com.foo.BarServ ...
分类:
其他好文 时间:
2019-11-09 17:13:22
阅读次数:
101