码迷,mamicode.com
首页 >  
搜索关键字:sync mirror    ( 6902个结果
数据结构-模板-并查集(路径压缩+按秩合并)
所谓并查集就是将编号为1~n的n个对象划分为不相交集合,在每个集合中,选择其中的某个元素代表所在集合在这个集合中,并查集的操作有初始化,合并,查找。 #include<bits/stdc++.h> using namespace std; #define IOS ios::sync_with_std ...
分类:其他好文   时间:2021-04-20 15:31:02    阅读次数:0
算法-初次尝试-模拟退火
我对模拟退火的初步理解,还没深入了解过。这里只是用模拟退火求函数极值。 题目:https://vjudge.net/problem/HDU-2899 #include<bits/stdc++.h> using namespace std; #define IOS ios::sync_with_std ...
分类:编程语言   时间:2021-04-20 15:29:36    阅读次数:0
kubernetes(k8s)阿里云yum源
cat <<EOF > kubernetes.repo[kubernetes]name=Kubernetesbaseurl=https://mirrors.aliyun.com/kubernetes/yum/repos/kubernetes-el7-x86_64enabled=1gpgcheck=1 ...
分类:Web程序   时间:2021-04-16 11:56:03    阅读次数:0
vue中 $emit的简单使用
这里记录两种自己接触过的 1.子组件通知父组件 先通过import方法在父组件中引入子组件,这里我是将子组件(页面)扩展成全局dialog引入的 引入的流程如下 <el-dialog :visible.sync="dialogFormContactVisible" :fullscreen="true ...
分类:其他好文   时间:2021-04-16 11:51:25    阅读次数:0
ExecutorCompletionService
CompletionService和ExecutorCompletionService的实现 使用executor提交任务,接收类型future.get()获取结果的顺序是线程执行先后的顺序。 使用ExecutorCompletionService提交任务,CompletionService的tak ...
分类:其他好文   时间:2021-04-15 12:21:07    阅读次数:0
egg和koa洋葱模型
一个请求通过经过中间件最后生成响应 基于koa2的demo const Koa = require('koa'); const app = new Koa(); const PORT = 3000; // #1 app.use(async (ctx, next)=>{ console.log('wa ...
分类:其他好文   时间:2021-04-15 12:19:38    阅读次数:0
CentOS搭建局域网YUM源
先搭建本地YUM源 确认系统版本 [root@moke ~]# cat /etc/redhat-release CentOS Linux release 7.2.1511 (Core) [root@moke ~]# 准备资源: http://mirror.nsc.liu.se/centos-stor ...
分类:其他好文   时间:2021-04-15 12:18:08    阅读次数:0
zookeeper 集群安装部署
1:准备三台服务器hadoop2、hadoop3、hadoop4。zookeeper集群部署最好是奇数个节点,目的是增加容错率(集群需要保证半数以上机器正常)和防止脑裂。 2:准备zookeeper压缩包,官网下载地址:http://mirror.bit.edu.cn/apache/zookeepe ...
分类:其他好文   时间:2021-04-15 12:08:25    阅读次数:0
Log File Sync …. It may not be your headache DBAs !!!
Log File Sync …. It may not be your headache DBAs !!! My company got a new customer for our product and around 2-3 months ago all setup was formed for ...
分类:数据库   时间:2021-04-14 12:41:13    阅读次数:0
【解决】Could not GET 'https://maven.google.com
现象 解决方案 1. 由于Google被墙导致的问题 参考 配置阿里云源修改maven的源地址。 2. 由于错误配置代理导致的问题(提示400) 查看工程目录下的gradle.properties和C:/Users/用户名/.gradle/目录下的gradle.properties是否存在下面的内容 ...
分类:Web程序   时间:2021-04-12 12:07:10    阅读次数:0
6902条   上一页 1 ... 7 8 9 10 11 ... 691 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!