docker核心架构 安装 docker 要求centos系统的内核版本高于3.10 查看版本 uname -r root 登录linux 更新 yum -y update 卸载旧版本 yum remove docker docker-common docker-selinux docker-eng ...
分类:
其他好文 时间:
2021-03-30 13:26:30
阅读次数:
0
1.路径配置的分类 在nginx中,一共有4种不同的路径配置方法 = - Exact match ^~ - Preferential match ~ && ~* - Regex match no modifier - Prefix match #路径完全一样则匹配 location = path { ...
分类:
其他好文 时间:
2021-03-26 15:34:02
阅读次数:
0
创建线程池 通过static代码块创建线程池: import com.google.common.util.concurrent.ThreadFactoryBuilder; import java.util.concurrent.ExecutorService; import java.util.c ...
分类:
编程语言 时间:
2021-03-26 15:19:53
阅读次数:
0
Dual-write overview Effective November 2020: Common Data Service has been renamed to Microsoft Dataverse. For more information, see Power Automate Blo ...
分类:
其他好文 时间:
2021-03-18 14:04:39
阅读次数:
0
Spring boot 中有时候需要控制配置类是否生效,使用 @ConditionalOnProperty 注解来控制 @Bean 是否生效。 例: @ConditionalOnProperty(prefix = "config",name = "enable",havingValue = "tru ...
分类:
其他好文 时间:
2021-03-17 14:53:37
阅读次数:
0
<?php namespace app\common\controller;use app\common\controller\WechatAuth; class PortalBase extends Base{ protected function _initialize() { parent:: ...
分类:
微信 时间:
2021-03-17 14:39:03
阅读次数:
0
一、单选框(radio)单选框的选择很简单,因为是单选,所以直接定位到元素后点击即可示例页面: 示例代码: from selenium import webdriver from selenium.webdriver.common.by import By driver = webdriver.Fi ...
分类:
其他好文 时间:
2021-03-10 12:56:10
阅读次数:
0
在python的selenium中,要模拟键盘操作,需要导入Keys类:from selenium.webdriver.common.keys import Keys Keys类用模拟键盘的什么行为呢?其实,可以模拟键盘的任何行为,如单个键,组合键等。 from selenium import we ...
分类:
其他好文 时间:
2021-03-09 13:39:53
阅读次数:
0
在学习使用docker-compose之前必须要了解YAML语言的用法。YAML语言是一种非常简单的语言,下篇会具体介绍。 Docker-compose简介 # Docker三剑客: docker-compose # 多容器编排工具,基于 Yaml 格式资源清单 docker-swarm # 集群化 ...
分类:
其他好文 时间:
2021-03-09 13:38:34
阅读次数:
0
犯了一个低级错误 将测试用例写在COMMON目录里,导致无法用pytest执行测试,代码执行了也 没有日志打印 回头想想 pytest用例 先找的是 包名为 test开头的 然后执行test的用例模块 所以需要用test关键字命名包、模块、以及用例名称!!!!! ...
分类:
其他好文 时间:
2021-03-09 13:24:31
阅读次数:
0