1 2 3 4 5 ··· 48 下一页
摘要: def ddt(path): with open(path, 'r', encoding='utf-8') as f: data = yaml.safe_load(f) return pytest.mark.parametrize('data', data) @ddt("./data/req.yam 阅读全文
posted @ 2026-03-03 16:40 iTao0128 阅读(2) 评论(0) 推荐(0)
摘要: https://bugstack.cn/md/road-map/arthas.html 阅读全文
posted @ 2026-02-11 16:36 iTao0128 阅读(4) 评论(0) 推荐(0)
摘要: 0. 插件 https://plugins.jetbrains.com/plugin/13581-arthas-idea/versions 1. 火焰图 图形介绍 这里的x轴代表采样总量(也就是此刻所有执行的耗时cpu的方法)。 这是注意的是x 轴并不代表时间,而是所有的调用方法合并后,按字母顺序排 阅读全文
posted @ 2026-02-11 16:36 iTao0128 阅读(5) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/hong-fithing/p/14098210.html 阅读全文
posted @ 2026-02-10 10:54 iTao0128 阅读(1) 评论(0) 推荐(0)
摘要: https://time.geekbang.org/column/article/178042 https://time.geekbang.org/column/article/182912 阅读全文
posted @ 2026-02-09 16:47 iTao0128 阅读(2) 评论(0) 推荐(0)
摘要: 方法1:生成报告时指定粒度 在生成HTML报告时通过命令行参数指定:(单位毫秒) jmeter -g results.jtl -o report_output_folder -Jjmeter.reportgenerator.overall_granularity=10000 或者使用generate 阅读全文
posted @ 2026-02-09 16:38 iTao0128 阅读(2) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/weixin_44707404/article/details/133889934 阅读全文
posted @ 2026-02-05 18:30 iTao0128 阅读(2) 评论(0) 推荐(0)
摘要: 模块下载 pip install langchain==0.3.7 -i https://pypi.tuna.tsinghua.edu.cn/simple pip install langchain-openai==0.2.3 -i https://pypi.tuna.tsinghua.edu.cn 阅读全文
posted @ 2025-12-24 18:59 iTao0128 阅读(9) 评论(0) 推荐(0)
摘要: 官网:https://fastapi.tiangolo.com/zh/#_2 源码:https://github.com/fastapi/fastapi 指定版本安装: 入门案例: from fastapi import FastAPI app = FastAPI() @app.get('/hell 阅读全文
posted @ 2025-11-20 23:00 iTao0128 阅读(11) 评论(0) 推荐(0)
摘要: https://pypi.tuna.tsinghua.edu.cn/simple 阅读全文
posted @ 2025-11-19 23:05 iTao0128 阅读(5) 评论(0) 推荐(0)
1 2 3 4 5 ··· 48 下一页