In AKS, the absolute maximum number of nodes that a cluster can have depends on a few configurations, including whether the node is in a VM State Set ...
分类:
其他好文 时间:
2021-01-08 11:41:16
阅读次数:
0
一、kiali 组件分析 使用如下命令查看 kiali pod 详情: kubectl edit pod -n istio-system $(kubectl get pods -n istio-system | grep -i kiali | awk '{print $1}') kiali pod ...
分类:
其他好文 时间:
2021-01-08 10:42:23
阅读次数:
0
React的生命周期从广义上分为三个阶段:挂载、渲染、卸载 挂载卸载过程 1.1.constructor() 1.2.componentWillMount() 1.3.componentDidMount() 1.4.componentWillUnmount () 更新过程 2.1. componen ...
分类:
其他好文 时间:
2021-01-07 12:35:36
阅读次数:
0
1、单页面,head标签里增加属性: <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=3.5, user-scalable=yes"> /*注释*/ ...
分类:
移动开发 时间:
2021-01-07 11:54:59
阅读次数:
0
这次和大家讲讲分布式事务的 BASE 理论,保证通俗易懂。为了阅读顺畅,开始之前先请大家记住几个名词: BASE——Basically Available(基本可用),Soft state(软状态),Eventually consistent(最终一致性) 2PC——两阶段提交 不用懂,先记住就好了 ...
分类:
其他好文 时间:
2021-01-07 11:44:51
阅读次数:
0
1.itertools Python的内建模块itertools提供了非常有用的用于操作迭代对象的函数。 首先,我们看看itertools提供的几个“无限”迭代器: >>> import itertools >>> natuals = itertools.count(1) >>> for n in ...
分类:
编程语言 时间:
2021-01-06 12:07:57
阅读次数:
0
delphi yaml https://github.com/lim417dev/Neslib.Yaml Neslib.Yaml - A YAML library for Delphi Neslib.Yaml is a library for parsing and emitting YAML an ...
Object Oriented ProgrammingAssignment 4 Jacqui ChettyJob CandidatesMarks available: 100Percentage of overall marks from this assignment: 20%Date issue ...
分类:
其他好文 时间:
2021-01-05 11:12:12
阅读次数:
0
mac自带的terminal是比较简陋的,zsh简直就是最好的救药。可以通过插件的方式来自动匹配命令,提高效率。还可以配置语法高亮,输错时会显示红色。 第一步,进入 zsh 插件目录,并 clone 项目到此目录中: cd "$ZSH_CUSTOM/plugins" git clone https: ...
分类:
系统相关 时间:
2021-01-04 11:27:44
阅读次数:
0
- Representational State Transfer,简称REST,即表述性的状态传递。
- 是一组对架构的约束条件和原则。RESTful API即充满表述性状态传递的API。
- REST是设计风格,而不是标准。
- REST常基于HTTP、URI和XML以及HTML等。
- RES... ...