码迷,mamicode.com
首页 >  
搜索关键字:sleep_on    ( 4174个结果
python 协程 - asyncio-subprocess 并发执行命令
1. 10秒钟测试ip段所有IP的连通性 (base) [root@wlt-overseas-middleware-master ~]# cat su-asyncio-re-cancel.py import asyncio import time import re # call shell cmd ...
分类:编程语言   时间:2021-02-16 12:27:26    阅读次数:0
线程同步(重点)
来源:https://www.bilibili.com/video/BV1V4411p7EF?p=20 感谢老师! package com.hao.syn; //三个线程操作同一个资源 //线程不安全,出现负数。。。sleep放大不安全情况 public class UnsafeBuyTickets ...
分类:编程语言   时间:2021-02-15 12:33:30    阅读次数:0
分享一个MySQL binlog 远程备份脚本
从MySQL5.6开始,mysqlbinlog支持将远程服务器上的binlog实时复制到本地服务器上。 mysqlbinlog的实时二进制复制功能并非简单的将远程服务器的日志复制过来,它是通过MySQL 5.6公布的Replication API实时获取二进制事件。本质上,就相当于MySQL的从服务 ...
分类:数据库   时间:2021-02-04 12:24:34    阅读次数:0
thread/process pool
from concurrent.futures import ThreadPoolExecutor,ProcessPoolExecutorimport timedef func(i): print('star', i) time.sleep(2) return f'over,{i}'def cb(r ...
分类:其他好文   时间:2021-02-03 10:35:48    阅读次数:0
记录分析python程序运行时间的几种方法
方法1 import datetimeimport timestarttime = datetime.datetime.now()#long runningtime.sleep(2)endtime = datetime.datetime.now()str="run time: %d seconds" ...
分类:编程语言   时间:2021-01-27 14:08:10    阅读次数:0
两个协程交替打印
题记: 请使用两个协程交替输出AaBbCcDdEeFf.....,要求协程1只能输出ABC......,协程2只能输出abc..... 自己实现了个代码,测试没问题,不知道是不是最优 代码如下: package main import ( "fmt" "sync" "time" ) //两个goro ...
分类:其他好文   时间:2021-01-26 12:33:35    阅读次数:0
How to repeat loop n times in Bash
for (( i=0; i<10; ++i)); do [ -e filename ] && break sleep 10 done ...
分类:其他好文   时间:2021-01-21 10:41:13    阅读次数:0
Java并发
Java 并发 Java 并发 一、使用线程 实现 Runnable 接口 实现 Callable 接口 继承 Thread 类 实现接口 VS 继承 Thread 二、基础线程机制 Executor Daemon sleep() yield() 三、中断 InterruptedException ...
分类:编程语言   时间:2021-01-16 11:56:57    阅读次数:0
线程通信-全局变量-标准库threading
from threading import Thread from time import sleep a = 1 def foo(): global a a = 1000 def bar(): sleep(1) print("a = ",a) t1 = Thread(target = foo) t ...
分类:编程语言   时间:2021-01-13 10:50:50    阅读次数:0
聊聊并发,进程通信方式,go协程简单应用场景
知道并发,并行,线程,协程概念吗?或者知道大概含义吗? 有线程为什么还要有协程?区别是什么? 『进程』通信方式知道几种?有没有超过3种? golang『协程』通信方式推荐? 使用并发的目的是为什么?是能帮我们解决什么问题吗? ...
分类:系统相关   时间:2021-01-12 10:28:29    阅读次数:0
4174条   上一页 1 ... 6 7 8 9 10 ... 418 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!