码迷,mamicode.com
首页 >  
搜索关键字:case when    ( 16729个结果
你有没有乱用“leader”,担当是个好东西
PS:此文为个人认知,不足处请多多批评。 近期在一线leader(经理)身上发现了几个case,然后又回想起前几年自己做的一些傻事,可能都属于明面上leader不会说什么,但私下会有情绪的类型: Case 1:下游背锅——声量小的成本。 有一次作为技术负责人跟一个产品线leader(某一条产品线负责 ...
分类:其他好文   时间:2021-07-28 21:26:45    阅读次数:0
Hello World Hexo
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in ...
分类:其他好文   时间:2021-07-23 17:39:58    阅读次数:0
shell脚本练习1——条件语句(if 、case语句的应用)
1.检查用户家目录中的 test.sh 文件是否存在,并且检查是否有执行权限 #!/bin/bash if [ -e ~/test.sh ];then echo "test.sh文件存在" if [ -x ~/test.sh ];then echo "test.sh文件有执行权限" else ech ...
分类:系统相关   时间:2021-07-19 16:31:26    阅读次数:0
junit5|并行测试
一、需求背景 1、自动化测试:一个自动化测试脚本有成千上万条用例,每次执行的时间在小时级别,leader说为了能先于用户知道线上的问题,能否加快脚本的执行速度 2、功能测试:不使用jmeter等工具,使用junit5实现来测试接口是否存在线程安全以及分布式线程安全问题,是否有做幂等性处理 二、解决方 ...
分类:其他好文   时间:2021-07-12 17:52:37    阅读次数:0
检测configMap,重载Pod内的业务容器
Usage: 使用sidecar模式,跟业务进程运行在同一个Pod内,检测到configMap更新后,会自动触发Hook - name: prometheus-server-configmap-reload image: 'jimmidyson/configmap-reload:v0.3.0' ar ...
分类:其他好文   时间:2021-07-05 19:01:41    阅读次数:0
修改tmux背景色
https://www.it1352.com/1873377.html #!/bin/sh if [ -n "$TMUX" ]; then case "$1" in prod_*) tmux selectp -P bg=red ;; esac fi ssh "$@" tmux selectp -P ...
分类:其他好文   时间:2021-07-05 17:23:38    阅读次数:0
Docker(39)- docker 实战二之安装 Tomcat
背景 参考了狂神老师的 Docker 教程,非常棒! https://www.bilibili.com/video/BV1og4y1q7M4?p=15 直接运行容器 本地找不到镜像会自动下载 --rm Automatically remove the container when it exits ...
分类:其他好文   时间:2021-07-01 16:48:43    阅读次数:0
Pytest(1)安装与入门
pytest介绍 pytest是python的一种单元测试框架,与python自带的unittest测试框架类似,但是比unittest框架使用起来更简洁,效率更高。根据pytest的官方网站介绍,它具有如下特点: 非常容易上手,入门简单,文档丰富,文档中有很多实例可以参考 能够支持简单的单元测试和 ...
分类:其他好文   时间:2021-06-30 17:58:59    阅读次数:0
eclipse中的Quick Type Hierarchy快速类型层次结构
For example, if an interface is selected when you invoke the Quick Type Hierarchy, the list displays all the known classes that implement the interfac ...
分类:系统相关   时间:2021-06-30 17:33:09    阅读次数:0
ideavim插件配置文件
ideavim插件配置 set scrolloff=3 " 3 lines above/below cursor when scrolling " 突出显示当前行 set cursorline " 在状态栏显示正在输入的命令 set showcmd " Emulated Plugins set su ...
分类:系统相关   时间:2021-06-29 16:11:42    阅读次数:0
16729条   1 2 3 4 ... 1673 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!