码迷,mamicode.com
首页 >  
搜索关键字:high availability    ( 2775个结果
依赖倒置原则
一、依赖倒置原则定义 1、上层模块不应该依赖底层模块,它们都应该依赖于抽象。(High level modules should not depend upon low level modules. Both should depend upon abstractions.)2、抽象不应该依赖于细节 ...
分类:其他好文   时间:2020-03-21 14:35:49    阅读次数:71
深入理解依赖倒置原则
何为依赖导致原则? Robert C. Martin在他的著作《敏捷软件开发:原则、模式与实践》中有这样的两句描述 1.High-level modules should not depend onlow-level modules. Both should depend on abstractio ...
分类:其他好文   时间:2020-03-21 00:05:03    阅读次数:70
初识CAP
记录一下对CAP的理解,CAP理论是分布式系统的基本理论,已得到证明,分布式系统最多只能满足其中的两个。 CAP基本概念 CAP是三个特性关键字的简写。 (1)C:Consistency,一致性 (2)A:Availability,可用性 (3)P:Partition tolerance,分区容忍性 ...
分类:其他好文   时间:2020-03-17 19:52:18    阅读次数:97
springboot 项目依赖 es包版本异常
在项目pom.xml中加入依赖 <dependency> <groupId>org.elasticsearch.client</groupId> <artifactId>elasticsearch-rest-high-level-client</artifactId> <version>7.6.1< ...
分类:编程语言   时间:2020-03-15 22:25:39    阅读次数:268
D - Pair of Topics
The next lecture in a high school requires two topics to be discussed. The ii-th topic is interesting by aiaiunits for the teacher and by bibi units f ...
分类:其他好文   时间:2020-03-14 23:59:09    阅读次数:158
ImageNet Classification with Deep Convolutional Neural Network(AlexNet)论文翻译
@[toc] 0. Abstract We trained a large, deep convolutional neural network to classify the 1.2 million high resolution images in the ImageNet LSVRC 2010 ...
分类:Web程序   时间:2020-03-14 19:53:58    阅读次数:70
深入分析二分查找及其变体
1—一般二分查找 一般的二分查找代码如下: int search(int A[], int n, int target){ int low = 0, high = n-1; while(low <= high) { // 注意:若使用(low+high)/2求中间位置容易溢出 int mid = l ...
分类:其他好文   时间:2020-03-10 19:58:20    阅读次数:57
Tian Ji -- The Horse Racing / HDU - 1052
Here is a famous story in Chinese history. "That was about 2300 years ago. General Tian Ji was a high official in the country Qi. He likes to play hor ...
分类:其他好文   时间:2020-03-09 20:48:05    阅读次数:56
D. Buy Low Sell High
"D. Buy Low Sell High" 题意 给定 n 个数字表示接下来 n 天的的股价,每天可以选择买一份股票,卖一份股票或者什么都不做,最开始拥有零份股票,有足够多的钱,问 n 天之后能获得的最大收益。 思路 很明显,看完题意,你能想到的做法是低价买入高价卖出,但是问题出现在如果现在就卖出 ...
分类:其他好文   时间:2020-03-09 13:35:01    阅读次数:42
iar、keil(ac5+ac6)编译效果小记
stm32F103et6平台,cubemx生成的两个IDE工程 1、均无开启任务优化 iar8.32如下: keil5.29 ac5编译器 : keil5.29 ac6编译器 : 同样的代码,不开优化的情况下,ac6反而代码空间比较大 2、开启最高优化: iar:high(size) keil5.2 ...
分类:其他好文   时间:2020-03-06 11:09:21    阅读次数:120
2775条   上一页 1 ... 18 19 20 21 22 ... 278 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!