上一页 1 2 3 4 5 6 ··· 10 下一页
摘要: 在linux上拉取项目代码后,发现每次git pull都需要输入用户名和密码,设置全局的都没有用,终于找到解决方法,直接用以下的命令即可。 git config --global credential.helper store 使用此命令后还会需要输入一次用户名和密码,但是下一次就不需要了 阅读全文
posted @ 2023-02-08 13:59 等一念 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 解决办法:进入到Fiddler-->Rules-->Customize Rules 1.在main()方法上方添加: static function DoReattach(o: Object, ea: EventArgs) { ScheduledTasks.ScheduleWork("reattac 阅读全文
posted @ 2022-12-23 09:51 等一念 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 原理:通过inspect方法获取类的所有方法,再将过滤的ddt用例加入套件 for item in inspect.getmembers(CaseConvertAndUpdateModel,inspect.isfunction): if 'test_ConvertAndUpdateModel_15_ 阅读全文
posted @ 2022-12-08 11:49 等一念 阅读(38) 评论(0) 推荐(0) 编辑
摘要: pip config set global.index-url https://www... 阅读全文
posted @ 2022-11-09 15:10 等一念 阅读(7) 评论(0) 推荐(0) 编辑
摘要: python程序员的环境搭建 1.创建虚拟环境 python -m venv tutorial-env 2.激活虚拟环境 tutorial-env\Scripts\activate.bat 3.库安装 pip install Django 创建Django项目 python -m django st 阅读全文
posted @ 2022-10-27 11:11 等一念 阅读(29) 评论(0) 推荐(0) 编辑
摘要: Linux crontab -e 定时任务,或者开机任务可通过这个进行 @reboot sleep 120s && /sbin/iptables -P INPUT ACCEPT && /sbin/iptables -P FORWARD ACCEPT && /sbin/iptables -F && / 阅读全文
posted @ 2022-09-26 10:54 等一念 阅读(22) 评论(0) 推荐(0) 编辑
摘要: docker run -dit --privileged=true --restart=always -v /home/test:/home -p 8086:8080 --name=autotest 0429a3daccd0 /bin/bash --privileged=true:挂载宿主机目录,不 阅读全文
posted @ 2022-06-14 10:07 等一念 阅读(834) 评论(0) 推荐(0) 编辑
摘要: 一、什么是 Actuator Spring Boot Actuator 模块提供了生产级别的功能,比如健康检查,审计,指标收集,HTTP 跟踪等,帮助我们监控和管理Spring Boot 应用。 这个模块是一个采集应用内部信息暴露给外部的模块,上述的功能都可以通过HTTP 和 JMX 访问。 因为暴 阅读全文
posted @ 2022-05-13 10:30 等一念 阅读(7262) 评论(0) 推荐(1) 编辑
摘要: 阅读全文
posted @ 2022-04-14 09:46 等一念 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 步骤1.设置保护分支 2.给组员配置权限 阅读全文
posted @ 2022-04-02 17:19 等一念 阅读(37) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 10 下一页