一、下载centos镜像 1.搜索centos并下载 docker search centos 2. 下载纯净版的centos docker pull docker.io/centos 3. 下查看下载的镜像 docker images 二、创建容器 1. 创建 docker run -dit -- ...
分类:
其他好文 时间:
2020-06-10 19:32:00
阅读次数:
58
今天在使用 yum 命令进行包的下载时候,Linux 提示 没有可用的软件包~ 如下: [root@localhost share]# yum -y install wordpress 已加载插件:fastestmirror, product-id, search-disabled-repos, s ...
分类:
其他好文 时间:
2020-06-10 19:05:17
阅读次数:
649
docker search mssql 查找mssql镜像 docker pull microsoft/mssql-server-linux 拉去mssql镜像 docker images 查看镜像 docker run -e 'ACCEPT_EULA=Y' -e 'SA_PASSWORD=Abca ...
分类:
数据库 时间:
2020-06-10 13:01:51
阅读次数:
141
KMP看书是很难懂的......相信我,推荐一个易懂视频 https://www.bilibili.com/video/BV1jb411V78H?from=search&seid=9395428282072905815 1.为什么只用研究模式串?因为发生不匹配时,模式串当前下标之前的内容和被查找串的 ...
分类:
编程语言 时间:
2020-06-10 12:57:56
阅读次数:
86
A. Matrix Game 题目链接:https://codeforces.ml/contest/1365/problem/A 对矩阵把不可操作的行列除去,得到一个h×w的矩阵 由于每当一个人操作一次,就会占去一行一列,最多操作比较h,w得较小的数为操作次数,当为奇数Ashish赢,偶数Vivek ...
分类:
其他好文 时间:
2020-06-09 23:16:53
阅读次数:
84
英文版:https://www.elastic.co/guide/index.html,内容较新 中文版:https://www.elastic.co/guide/cn/elasticsearch/guide/current/index.html 基于2.x,内容老旧 ...
分类:
其他好文 时间:
2020-06-09 22:03:52
阅读次数:
60
一、查询操作 查询语句基本语法 以下语句类似于mysql的: select * from xxx.yyy.topic where 条件1,条件2,...条件N GET xxx.yyy.topic/logs/_search{ "query": { "bool": { 这里面是限制条件,不写则查所有数据 ...
分类:
其他好文 时间:
2020-06-09 20:20:56
阅读次数:
94
这场比赛的题都偏水,比赛的时候切了 A ~ E A Matrix Game 刚开始看错题了,以为是不能相邻,然后就不会了. 又读了一遍题,发现不能同行或同列,那就判断一下奇偶性就行了. code: #include <bits/stdc++.h> #define ll long long #defi ...
分类:
其他好文 时间:
2020-06-09 16:36:17
阅读次数:
59
#include<iostream> #include<cstdio> using namespace std; int a[105];//以数组的的形式记录拆分,便于接下来的搜索与回溯 bool b[100]={0}; int n; int tot=0; void search(int,int); ...
分类:
其他好文 时间:
2020-06-09 16:15:58
阅读次数:
95
The Google search engine has two important features that help it produce high precision results. First, it makes use of the link structure of the Web ...
分类:
Web程序 时间:
2020-06-09 14:21:52
阅读次数:
82