[root@kube-etcdetcd]#etcdctl-Chttp://etcd:2379cluster-healthclustermaybeunhealthy:failedtolistmembersError:client:etcdclusterisunavailableormisconfigured;error#0:dialtcp:lookupetcdon114.114.114.114:53
分类:
其他好文 时间:
2018-05-24 16:36:07
阅读次数:
523
C#初学:项目实现 利用treeview实现左边菜单伸缩栏,右侧利用listview实现右侧数据显示,不同单项对应不同列表,当修改列表时,修改记录会显示在textbox文本框中。 1.实现treeview树形目录: 首先,在form整体控件上添加Load事件(每当用户加载窗体时发生),里面编写两个函 ...
A tree is a connected graph that doesn't contain any cycles. The distance between two vertices of a tree is the length (in edges) of the shortest path ...
分类:
其他好文 时间:
2018-05-24 16:35:24
阅读次数:
184
findById:根据id查询表数据 Executing (default): SELECT "id", "account", "password" FROM "account" AS "account" WHERE "account"."id" = 'test1'; findOne:根据条件查询表 ...
分类:
其他好文 时间:
2018-05-24 16:35:16
阅读次数:
409
这篇文档的目的是:让使用Git更轻松。 看完这篇文档你能做到的是: 1、简单的用Git管理项目。 2、怎样既要开发又要处理发布出去的版本bug情况。 SourceTree是一个免费的Git图形化管理工具,mac下也可以安装。 下载地址:https://www.sourcetreeapp.com/ 1 ...
分类:
其他好文 时间:
2018-05-24 16:34:58
阅读次数:
220
HttpClient简介HttpClient 功能介绍 1. 读取网页(HTTP/HTTPS)内容 2、使用POST方式提交数据(httpClient3) 3. 处理页面重定向 4 ...
分类:
Web程序 时间:
2018-05-24 16:34:42
阅读次数:
188
接触到了一个新的实现分页的功能,记录下来 第一种方法:() flask sqlalchemy里面包括分页查询首先记录一下此方法实现分页查询: Post.query.paginate(1,10) #第一个参数指示返回第几页的内容,第二页的参数表示每页展示的对象数量 Post.query.paginat ...
分类:
数据库 时间:
2018-05-24 16:34:35
阅读次数:
407
在node_modules文件夹下,找到react-scripts ==> config文件夹, 在该配置文件夹下找到 webpack.config.dev.js和webpack.config.prod.js。在file-loader之前添加style-loader, css-loader, sas ...
分类:
移动开发 时间:
2018-05-24 16:34:27
阅读次数:
163
最近项目上需要用到定时任务,目前采用spring+quartz架构实现 项目采用Maven管理 需要依赖的Jar包如下 quartz-1.8.5.jar commons-logging.jar spring-core-3.0.5.RELEASE.jar spring-beans-3.0.5.RELE ...
分类:
编程语言 时间:
2018-05-24 16:34:12
阅读次数:
253
1.开启gzip功能ln-s/usr/local/zlib/lib/libz.so/usr/lib/LoadFile/usr/lib64/libz.soLoadModuledeflate_modulemodules/mod_deflate.soLoadModuleheaders_modulemodules/mod_headers.so<ifmodulemod_deflate.c>Def
分类:
Web程序 时间:
2018-05-24 16:34:06
阅读次数:
206
class Solution { public: unordered_set res; // DFS may produce dup result, use set to filter. vector removeInvalidParentheses(string s) { // Calculate... ...
分类:
其他好文 时间:
2018-05-24 16:33:56
阅读次数:
159
本文主要解析下canal server的启动过程,希望能有所收获。 一、序列图 1.1 启动 1.2 停止 二、源码分析 整个server启动的过程比较复杂,看图难以理解,需要辅以文字说明。 首先程序的入口在CanalLauncher的main方法中。 2.1 加载配置文件 从canal.prope ...
分类:
其他好文 时间:
2018-05-24 16:33:47
阅读次数:
239
原理和架构系统分层就像Linux拥有内核(kernel)、核心系统类库、和可选的用户级工具,kubernetes也拥有功能和工具的层次。对于开发者来说,理解这些层次是非常重要的。kubernetes APIs、概念和功能都在下面的层级图中得到体现。环境配置增加节点DNS 别名cat <<EOF >>/etc/hosts192.168.209.160 k8a192.168.2
分类:
Web程序 时间:
2018-05-24 16:33:41
阅读次数:
206
华为ENSP模拟器 目前不是很稳定,51CTO学院华为方向高级讲师肖哥将在使用ensp过程中遇到的问题总结如下,各位看官注意啦
分类:
其他好文 时间:
2018-05-24 16:33:32
阅读次数:
1376
如何理解装饰器python 学习遇到的第一个难点是装饰器。装饰器的作用是不大规模改动代码的情况下,增加功能。作用:为已经存在的对象添加额外的功能特点:不需要对对象做任何的代码上的变动。以一个例子来讲装饰器 import timedef timer(func): def deco(): start_t ...
分类:
编程语言 时间:
2018-05-24 16:33:25
阅读次数:
151
需要注册微信公众号小程序:https://mp.weixin.qq.com/wxopen/waregister?action=step1 下载微信小程序开发IDE : https://developers.weixin.qq.com/miniprogram/dev/devtools/devtools ...
分类:
微信 时间:
2018-05-24 16:33:16
阅读次数:
266
1、在需要hover的标签上加上 transition: all .2s ease-in-out; 2、让高亮更有层次 .nav-items a{ opacity: .69; color:#fff; cursor: pointer; transition: all .2s ease-in-out;} ...
分类:
其他好文 时间:
2018-05-24 16:33:08
阅读次数:
178