摘要:
右键选择文件,选择文件上的IDE 2.选择重新扫描项目索引 3.选择删除软件包搜索项目缓存 4.选择删除软件包搜索全局缓存 阅读全文
摘要:
由于Loadrunner函数有限性,唯一值需要几个函数的字符串进行拼装,可实现多用户并发取得流水号、订单号等等数值的唯一性。具体可见下列方法: char OraderID[15]; srand(time{NULL}); sprintf(OraderID,"NO%s%s%s%s",lr_eval_st 阅读全文
摘要:
线程池的基类是 concurrent.futures 模块中的 Executor,Executor 提供了两个子类,即 ThreadPoolExecutor 和 ProcessPoolExecutor,其中 ThreadPoolExecutor 用于创建线程池,而 ProcessPoolExecut 阅读全文
摘要:
方法一: 使用as_completed函数 from concurrent.futures import ThreadPoolExecutor, as_completed from time import sleep def method(times): sleep(times) print('sl 阅读全文
摘要:
一、查询应用的端口 1、打开【任务管理器】,点击【查看】—>【选择列】,选中【PID(进程标识符)】 2、记录想要查询端口号的PID,比如: 打开【运行】—>输入【cmd】,打开【命令处理器】 输入【netstat -ano|findstr 6600】 52330和52331即为IExplorer的 阅读全文
摘要:
和 urllib 一样,多的介绍就不说了,直接上代码: import requests proxies = { "http": "http://user:pass@10.10.10.1:80", "https": "http://10.10.1.10:1080", } requests.get("h 阅读全文
摘要:
1. 指定域名不使用代理 import os import requests os.environ['NO_PROXY'] = 'stackoverflow.com' response = requests.get('http://www.stackoverflow.com') 2. 设置代理为No 阅读全文
摘要:
tkinter.simpledialog模块 函数 askfloat(title, prompt, **kw) askinteger(title, prompt, **kw) askstring(title, prompt, **kw) import tkinter.simpledialog imp 阅读全文
摘要:
第一步、在开始的功能表的搜索栏里输入 cmd,然后在搜索结果中的 cmd 按下右键,点选【以系统管理员身份运行】 第二步、在命令提示符窗口里输入下面命令然后按下Enter: powercfg –h off hiberfil.sys文件会自动消失。 如果想让这个文件不放在系统盘中,使用注册表编辑器 打 阅读全文
摘要:
from requests.adapters import HTTPAdapter from requests import Session import requests session = Session() # request 重试配置 重试一次 # 如果发生读取异常,则请求时间为 (重试次数 阅读全文