docker-compose.yaml version: "3" services: redis: image: redis:5.0.8 container_name: redis restart: always command: redis-server /etc/redis/redis.conf ...
分类:
其他好文 时间:
2021-06-02 19:51:51
阅读次数:
0
Schema ①扩展名 .xsd 本身是一份xml文档 ②对名称空间(namespace)支持的很好 ③ 支持的类型比dtd跟丰富约束的更细致 可以支持自定义的类型 ④ schema正在逐步替换dtd 在android中清单文件和布局文件 用到了schema约束技术 ①xml的约束技术 作用 规范x ...
分类:
其他好文 时间:
2021-06-02 19:49:55
阅读次数:
0
原题链接 考察:数位dp 思路: 求回文数字的个数. dfs参数: 1.pos 枚举到第几位 2.len 回文数的长度. 其实不需要变量记录是否合法,不合法的不取搜就行了. ##Code #include <iostream> #include <cstring> using namespace s ...
分类:
其他好文 时间:
2021-06-02 19:35:00
阅读次数:
0
using System;using System.Collections.Generic;using System.Text;using System.Text.RegularExpressions;namespace ConsoleApplication1{class Class1{privat ...
分类:
其他好文 时间:
2021-06-02 19:27:51
阅读次数:
0
using system;using system.collections.generic;using system.linq;using system.text;using system.threading.tasks;namespace consoleapplication3{ class pr ...
分类:
其他好文 时间:
2021-06-02 19:26:59
阅读次数:
0
using system;using system.collections.generic;using system.linq;using system.text;using system.threading.tasks; namespace consoleapplication3{ class p ...
分类:
其他好文 时间:
2021-06-02 19:26:24
阅读次数:
0
经过前六章的学习,我们对docker有了比较深入的认识 这章主要从一下几方面讲: 总体步骤: 搜索镜像 拉取镜像 查看镜像 启动镜像 停止容器 移除容器 安装tomcat: docker hub 上面查找tomcat镜像: docker search tomcat 从docker hub上拉取tom ...
分类:
其他好文 时间:
2021-06-02 18:53:15
阅读次数:
0
1. 拉取镜像 docker pull tomcat 2.查看镜像 docker images 3.Docker运行tomcat镜像首先创建挂载目录 mkdir /usr/local/gep/tomcat/ 运行tomcat镜像 docker run --name='gep_tomcat' \ -i ...
分类:
其他好文 时间:
2021-06-02 18:48:15
阅读次数:
0
#include <bits/stdc++.h> #define please return #define ac 0 using namespace std; using ll = long long ; bool vis[1003]; void solve() { int n,m; cin>>n ...
分类:
编程语言 时间:
2021-06-02 18:28:48
阅读次数:
0
反射提供描述程序集、模块和类型的对象(Type 类型)。 可以使用反射动态地创建类型的实例,将类型绑定到现有对象,或从现有对象中获取类型,然后调用其方法或访问器字段和属性。 如果代码中使用了特性,可以利用反射来访问它们 namespace assembly_name { public class a ...