06 2023 档案
摘要:import gevent from gevent import monkey monkey.patch_all() from minio import Minio import time, random import uuid def get_client(): """ 连接minio :retu
阅读全文
摘要:canndy_test.py import cv2 import numpy as np def matchImg(imgPath1, imgPath2): imgs = [] # 原始图像,用于展示 sou_img1 = cv2.imread(imgPath1) sou_img2 = cv2.im
阅读全文
摘要:from minio import Minio from multiprocessing import Process import time def upload_file(): # 创建minio客户端 client = Minio(endpoint="xxx.xxx.xxx.xxx:xxx",
阅读全文
摘要:from minio import Minio file_name = '3e09ca66d9444906935b0171e26891f1.mp4' file_path = r'E:\集成资料\视频素材' barrel = "testdata" def upload_file(): # 创建mini
阅读全文
摘要:问题: 通过cd 进入jmeter 目录中,执行脚本 bin/jmeter -n -t xxxxx.jmx -l ../50.jtl出现以下问题 解决方法: 修改文件权限 chmod +x bin/jmeter 修改后再次执行可正常启动
阅读全文