码迷,mamicode.com
首页 >  
搜索关键字:run as administrator    ( 21581个结果
Docker常用标签
镜像 docker pull *** //拉取镜像 docker images //查看本地镜像 docker run *** //运行镜像(加-d 后台运行) docker rmi *** //删除镜像(加-f可强制删除) docker build -t jpress:latest . //编译镜 ...
分类:其他好文   时间:2021-05-24 03:24:25    阅读次数:0
Qt虚线
enum PenStyle { // pen style NoPen, SolidLine, DashLine, DotLine, DashDotLine, DashDotDotLine, CustomDashLine#ifndef Q_MOC_RUN , MPenStyle = 0x0f#endi ...
分类:其他好文   时间:2021-05-24 02:17:53    阅读次数:0
cisco常用配置
cisco常用配置 常用命令 Switch>En //进入特权模式 Switch#con //进入全局配置模式 Switch(config)#inter vlan 1(默认交换机的所有端口都在VLAN1中)// 创建并进入VLAN 1的接口视图 Switch(config-if)#ip addres ...
分类:系统相关   时间:2021-05-24 02:03:54    阅读次数:0
How do I run a Python script from C#?
How do I run a Python script from C#? The reason it isn't working is because you have UseShellExecute = false. If you don't use the shell, you will ha ...
分类:编程语言   时间:2021-05-24 01:04:39    阅读次数:0
Pytest测试框架(3)--参数设置、丰富的第三方插件 实现自定义执行
1。 调整用例执行顺序 默认按名称顺序执行。安装pip install pytest-ordering, 在测试方法上加装饰器@pytest.mark.last @pytest.mark.run(order=1) 2。遇到错误停止执行 -x 参数 pytest -x -v -s test_01.py ...
分类:其他好文   时间:2021-05-24 00:48:43    阅读次数:0
[Tips] docker快速部署nginx和一个静态网页
docker pull nginx:latest docker run -d -p 2002:80 --name abcnginx nginx:latest docker exec -ti abcnginx /bin/bash 然后更新下 apt-get update apt-get install ...
分类:Web程序   时间:2021-05-24 00:17:39    阅读次数:0
树莓派4B-搭建Jenkins
官网下载Jenkins https://www.jenkins.io/zh/download/ 构建jenkins镜像 # docker build -t jenkins:2.277.3 . from ubuntu:latest run sed -i 's/ports.ubuntu.com/mirr ...
分类:其他好文   时间:2021-05-04 16:25:44    阅读次数:0
haproxy env 安装与基础配置
1. 安装 Use docker、package or source installations to install 第三方仓库 https://pkgs.org/download/haproxy 1.1 use docker docker run -it --rm haproxy:2.2 hap ...
分类:其他好文   时间:2021-05-04 16:22:39    阅读次数:0
docker常用命令
安装镜像:docker pull 镜像名称 查看所有运行容器:docker ps -a 运行容器:docker run --name 容器名称 进入指定容器:docker exec -it 容器名称 bash 重启容器:docker restart 容器名称 停止所有容器:docker stop $ ...
分类:其他好文   时间:2021-05-04 15:53:31    阅读次数:0
IDEA开启热部署功能
1、【file】==》【settings】==》【build,execution,deployment】==》【compiler】==》勾选【build project automatically】。 2、【ctrl+shift+a】==》【actions】==》【registry】==》勾选【co ...
分类:其他好文   时间:2021-05-04 15:26:55    阅读次数:0
21581条   上一页 1 ... 14 15 16 17 18 ... 2159 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!