最新 最热

CISSP考试指南笔记:5.11 针对访问控制的攻击

Crack program hashes the dictionary words and compares the resulting message digest with the system password file that also stores its passwords in a one-way ha...

2021-03-02
0

面向对象程序设计基本概念

问题空间(problem space):是问题解决者对一个问题所达到的全部认识状态,它是由问题解决者利用问题所包含的信息和已贮存的信息主动地构成的。一般由3下面三个方面来定义:初始状态:开始时的不完全的信息或令人不满意的状况;目...

2021-01-20
0

marquee 标签参数详细说明

behavior: 设置文本如何滚动。属性值有3种: scroll - 循环滚动。默认值。 slide - 滚动一次。 alternate - 两端来回滚动。

2020-11-05
0

自定义你的 Confluence 6 站点

本部分对 Confluence 全站进行自定义的相关内容进行了说明。这部分只能是具有 Confluence 的管理员权限的用户才能进行操作 —— 系统管理员或者 Confluence 管理员。...

2020-09-24
0

设计模式之状态模式

Allow an object to alter its behavior when its internal state changes. The object will appear to change its class.

2020-08-10
0

Kubernetes HPA 控制器横向伸缩的关键实现

HPA 是 Kubernetes 中横向伸缩的实现,里面有很多可以借鉴的思想,比如延迟队列、时间序列窗口、变更事件机制、稳定性考量等关键机制, 让我们一起来学习下大佬们的关键实现。...

2020-06-19
0

C++核心准则ES.104:防止下溢

Decrementing a value beyond a minimum value can lead to memory corruption and undefined behavior.

2020-06-17
0

C++核心准则ES.103​:防止溢出​

Overflow usually makes your numeric algorithm meaningless. Incrementing a value beyond a maximum value can lead to memory corruption and undefined behavior.

2020-06-17
0

akka-typed(7) - cluster:sharding, 集群分片

在使用akka-typed的过程中发现有很多地方都简化了不少,变得更方便了,包括:Supervision,只要用Behaviors.supervise()把Behavior包住,很容易就可以实现这个actor的SupervisorStrategy.restartWithBackoff策略了。然后集群化...

2020-06-16
0

C++核心准则ES.40:避免复杂的表达式

Some of these expressions are unconditionally bad (e.g., they rely on undefined behavior). Others are simply so complicated and/or unusual that even good progra...

2020-05-20
0