E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Threading
python利用线程生成不同尺寸的缩略图
利用线程生成缩略图读取当前路径下的png文件,在当前路径下生成64*64,128*128和32*32的缩略图"""importglobimportosimport
threading
fromPILimportImagedefgenerate_thumbnail
while10
·
2022-12-27 02:59
python
python
python 广播屏幕 类似腾讯会议 杭电python网络编程
服务端importsocketimport
threading
importtimeimportsysimportzlibimportnumpyasnpfromPILimportImageGrabserver
alasnot
·
2022-12-26 01:55
1024程序员节
网络
python
多线程并行搜索文件
usingSystem;02usingSystem.IO;03usingSystem.Linq;04usingSystem.
Threading
.Tasks;0506classProgram07{08staticvoidMain
devgis
·
2022-12-24 16:29
Python多进程并发与同步机制超详细讲解
多进程多进程是通过multiprocessing包来实现的,multiprocessing.Process对象(和多线程的
threading
.Thr
·
2022-12-24 12:06
opencv调用海康工业相机
importsysimport
threading
importmsvcrtimportcv2importnumpyasnpfromctypesimport*importcv2importnumpyasnpimportcv2ascvimportnumpyasnpsys.path.append
江湖夜雨十年灯。。。
·
2022-12-23 23:12
opencv
python
计算机视觉
二、多并发实现接口压力测试
接口压力测试importbase64importloggingimportos,cv2,timeimporturllib,globimportnumpyasnpimportrequests,time,json,
threading
YAYA视觉
·
2022-12-23 16:59
flask
Python
深度学习
python
Python多线程与同步机制浅析
threading
模块中包含了丰富的多线程支持功能:
threading
.currentThread():返回当前线程;
threading
.enumerate():返回包含
·
2022-12-23 06:35
Python -
threading
- 函数防抖(debounce)
文章目录1概念2装饰器2.1函数工厂2.2装饰器简介3函数防抖1概念函数防抖(debounce),就是指触发事件后,在n秒内函数只能执行一次,如果触发事件后在n秒内又触发了事件,则会重新计算函数延执行时间。常见的如实时检索框,每次输入字符都会导致推荐的结果改变,但是实际上只需要输入完成后的文本。如果不设置防抖,会每次输入一个字符就搜索一次数据库,导致性能浪费。2装饰器2.1函数工厂假设有以下需求:
Doct.Y
·
2022-12-22 15:23
python
开发语言
性能优化
python多线程单停
工具类import
threading
,time,inspect,ctypesdef_async_raise(tid,exctype):"""raisestheexception,performscleanupifneeded
绅士1993
·
2022-12-22 08:29
快速入门
python
1024程序员节
手把手教你用python多线程绘制跨年烟花
手把手教你用python多线程绘制跨年烟花在本项目中,我们使用了`
threading
`库创建了一个新线程,在该线程中绘制跨年烟花。
babyai996
·
2022-12-22 08:28
python基础
python
matplotlib
开发语言
C# Modbus Rtu
usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.
Threading
.Tasks
qq_41940013
·
2022-12-21 11:18
c#
microsoft
开发语言
【Python】tkinter应用之抽奖程序
实现效果程序代码importitertoolsimportrandomimport
threading
importtimeimporttkinterimporttkinter.messageboxro
张牧之!
·
2022-12-21 08:41
Python
python
开发语言
C# 生成随机数数组
C#生成随机数数组usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.
Threading
.Tasks
廷益--飞鸟
·
2022-12-21 01:01
C#
c# 模拟第三方程序按钮的单击
usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.
Threading
.Tasks
weixin_39926429
·
2022-12-21 01:59
c#
visual
studio
c#
开发语言
NaN 和 Infinity
usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Reflection;usingSystem.Text;usingSystem.
Threading
.Tasks
aixun4106
·
2022-12-21 01:24
c#
C#+数据库
usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.
Threading
.Tasks
段子子
·
2022-12-21 00:14
数据库
c#
sql
【Python】读取文件时显示 ‘NoneType‘ object has no attribute ‘shape‘
ExceptioninthreadThread-16:Traceback(mostrecentcalllast):File“/opt/conda/envs/python35-paddle120-env/lib/python3.7/
threading
.py
卡布达吃西瓜
·
2022-12-20 20:48
Python
python
开发语言
Python 使用tcp协议模拟 在线对话聊天(即时通讯)
程序分为两部分,我将这两部分分别称作客户端和主机端.这两个程序将分别在两台计算机上运行已达到即时通讯的效果.由于条件限制这里博主就直接用一台计算机来模拟这个过程.主机端代码:importsocketimport
threading
importtimes
.叹服
·
2022-12-20 15:40
Pyhon
tcp/ip
python
网络协议
网络通信
python(多线程、异常)
一、多线程(1)from
threading
importThreaddefFoo(arg):print(arg)print('before')#线程和函数建立关系t1=Thread(target=Foo,
风雨呼呼
·
2022-12-20 07:49
Python多线程
Python多线程
threading
Python高级教程笔记:多线程初步pythonGIL详解
buyue__
·
2022-12-20 07:43
Python
python
Python中的多线程(史上最简单易懂版)
主要内容:1.python中显示当前线程信息的属性和方法#coding:utf-8#导入
threading
包import
threading
if__name__=="__main__":print("当前活跃线程的数量
时代&信念
·
2022-12-20 07:09
Python学习
python
unity3d:UGUI层级设置有几种方式,最终是设置了什么
SortingOrderSortingLayerRenderQueue最终设置了什么渲染流水线相关附Canvas组件反编译源码usingSystem;usingSystem.Runtime.CompilerServices;usingSystem.
Threading
四夕立羽
·
2022-12-19 22:12
UGUI
unity3d
UGUI层级设置
SortingOrder
RenderQueue
SortingLayer
python核心编程
多线程进程1.概念2.多进程实现一个并发的socket的server3.开启进程的另一种方法4.process类的其他方法5.守护进程6.锁7.队列生产者消费者模型8.异步阻塞生产者消费者模型线程1.
threading
L-xykeen
·
2022-12-19 00:59
python之路
python
「C#」异步编程玩法笔记-Thread、ThreadPool、Task
任务并行库(TPL)说的是System.
Threading
和System.
Threading
.Tasks空间中的一组公共类型和API。
Raink_LH
·
2022-12-18 19:07
假装会写C#
c#
开发语言
.net
python
threading
多线程实例
感知项目需要在sort中夹杂其他任务,跟踪结点的消息发送频率在15Hz以上,如果采用单线程的话会大大拖累sort的速度,因此采用
threading
实现双线程,本贴用一个例子来简述该过程。
We1Y!
·
2022-12-18 10:05
经验教训
Ros
python
Unity 3d 实现AI随机行走
效果图下面是代码usingSystem.Collections;usingSystem.Collections.Generic;usingUnityEngine;usingSystem.
Threading
TodayIsSundayy
·
2022-12-18 09:36
unity3d
unity
c#
ai
游戏引擎
【xv6 RISC-V】xv6操作系统原理解析与源代码阅读报告
用户代码ii)内核代码2.陷阱(trap)(1)基本原理(2)源代码分析3.内存管理(memorymanagement)(1)基本原理i)页表与地址转换ii)地址空间(2)源代码分析4.多线程(multi
threading
Elecshe_ep
·
2022-12-17 15:00
阅读报告
risc-v
unix
c语言
yolov5train.py注释
importargparseimportloggingimportmathimportosimportrandomimporttimefromcopyimportdeepcopyfrompathlibimportPathfrom
threading
importThreadimportnumpyasnpimporttorch.distributedasdistimporttorch.nnasnnimp
Recursi
·
2022-12-17 14:41
yolo
深度学习
pytorch
09-多线程和队列
(注意点:是4个线程一共发送100个请求,不是每个线程发送100个,不要理解错了importtimeimportrequestsimport
threading
classThrea
一夜白头催人泪
·
2022-12-16 23:05
工具
开发
python
java
开发语言
发送QQ邮件
usingSystem.Linq;usingSystem.Net.Mail;usingSystem.Text;usingSystem.Text.RegularExpressions;usingSystem.
Threading
.Tasks
想起你的日子
·
2022-12-16 17:42
C#
c#
C# Fleck Socket
87208870C#服务端代码如下:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.
Threading
.Tasks
想起你的日子
·
2022-12-16 17:42
HTML
C#
c#
javascript
C# OpenCv DNN 人脸检测
usingOpenCvSharp.Dnn;usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.
Threading
.Tasks
天天代码码天天
·
2022-12-16 15:51
C#
c#
opencv
车牌识别系统论文python_毕业设计 python opencv实现车牌识别 界面
importtkinterastkfromtkinter.filedialogimport*fromtkinterimportttkimportimg_functionaspredictimportcv2fromPILimportImage,ImageTkimport
threading
importtimeimportimg_m
焚海炖鱼
·
2022-12-16 11:32
车牌识别系统论文python
C# 常用算法 递归
Koch分形集;求阶乘usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.
Threading
.Tasks
钢铁男儿
·
2022-12-15 21:49
C#程序设计
c#
算法
开发语言
C# 常用算法 迭代
Jullia集;求平方根usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.
Threading
.Tasks
钢铁男儿
·
2022-12-15 21:48
C#程序设计
c#
算法
开发语言
C#蓝牙链接+传输文件
usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.
Threading
.T
李小晨同学
·
2022-12-15 21:11
windows
c#
bluetooth
c#低能耗蓝牙连接
特意分享给大家界面:连接成功核心代码usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.
Threading
.Tasks
️公子
·
2022-12-15 21:11
个人创作
sql
c#
开发语言
Himall商城信息类型枚举
usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Linq;usingSystem.Text;usingSystem.
Threading
.Tasks
GZM888888
·
2022-12-15 21:38
himall商城
c#
java
.net
C# 实现蓝牙检测及蓝牙设备信息获取代码
usingSystem.Net.Sockets;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.
Threading
CXYLVCHF
·
2022-12-15 21:37
c#
蓝牙
python多线程实现案例_python多线程Event实现红绿灯案例
代码:#__author__=‘STEVEN‘#coding=utf-8importtime,
threading
#开启事件event=
threading
.Event()count=0classLighter
weixin_39995280
·
2022-12-15 08:47
python多线程实现案例
python获取连接过的WiFi密码-多线程进阶版
:JCS#@Email:
[email protected]
#@File:get_wifi.py#@Softwre:PyCharmimportosimportsubprocess#获取wifi列表from
threading
importThreadclassG
jcs ssc
·
2022-12-15 05:42
Python
python
开发语言
Python之多线程爬虫实践
多线程爬虫实践一、多线程的介绍及
threading
的基本使用1.什么是多线程?
梓梓子chen
·
2022-12-14 04:46
python
爬虫
开发语言
【python】分享一个多线程爬虫爬取表情包的代码
需要用到的库:requests、lxml、os、
threading
、queue多线程爬虫可比单线程爬虫爬取速度多了好几倍,单线程就好比是一辆车来回运输货物,而多线程则是多辆车同时运输货物。
晋升阁
·
2022-12-14 04:05
python
爬虫
开发语言
python多线程爬虫
具体及注释看下方代码:import
threading
#导入线程的库i
吃猫的鱼python
·
2022-12-14 04:34
python
爬虫
开发语言
python高效爬虫(一、多线程)
分别用线程去执行不同的函数通过队列相互通信,函数间解耦2案例#coding=utf-8importrequestsfromlxmlimportetreefromqueueimportQueueimport
threading
classQiubai
Dannys彬彬
·
2022-12-14 04:02
python多任务模式
python爬虫
python
python爬虫之多线程爬虫
python中的多线程使用的是
threading
模块。我们来看下面的一个例子,importtimedefdrinking():forxinrange(3):print("正在喝啤酒:%s"%x)tim
ForsetiRe
·
2022-12-14 03:30
python
队列
多线程
python 多进程(multiprocessing)详解
python提供的multiprocessing模块用于开启子进程,并在子进程中执行特定任务(eg:函数),该模块与多线程模块
threading
的编程接口类似。
风吹半夏灬
·
2022-12-13 12:38
python
python
多进程
C#获取程序运行时间
第一种方法利用System.DateTime.NowstaticvoidMain(string[]args){DateTimebeginTime=DateTime.Now;//获取开始时间System.
Threading
.Thread.Sleep
QQVQQ...
·
2022-12-13 08:21
c#
创建
threading
.Thread对象
defprintHello():whileTrue:print("Thisisthehello
threading
...")time.sleep(1)defprintNihao():whileTrue:print
天一天666
·
2022-12-12 17:55
java
servlet
javascript
C# 自定义按钮及其事件处理
usingSystem.ComponentModel;usingSystem.Drawing;usingSystem.Data;usingSystem.Linq;usingSystem.Text;usingSystem.
Threading
.Tasks
花开莫与流年错_
·
2022-12-12 11:51
C#
C#
事件
回调
上一页
32
33
34
35
36
37
38
39
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他