码迷,mamicode.com
首页 >  
搜索关键字:sleep    ( 4174个结果
selenium webDriver属性
1 from selenium import webdriver 2 from time import sleep 3 import random 4 class testCase(object): 5 def __init__(self): 6 url = 'http://www.baidu.co ...
分类:Web程序   时间:2021-05-24 06:36:25    阅读次数:0
实战多线程交互
一段有问题的代码,大概20%的概率,bStartSend的值的改变没有被检查到 //线程一直循环,等待消息 while (true) { if (bStartSend) { LogInfo("bStartSend=true"); StartMotor(ref ErrMsg, ref recvMsg, ...
分类:编程语言   时间:2021-05-24 04:57:32    阅读次数:0
爬虫进阶(四)——多任务协程爬取
基于Flask的示例 Server端 from flask import Flask,render_template import time app = Flask(__name__) @app.route('/bobo') def index_bobo(): time.sleep(2) retur ...
分类:其他好文   时间:2021-05-24 02:55:58    阅读次数:0
python 协程
import asyncio import time async def say_after(delay, what): """使用 async 声明函数""" await asyncio.sleep(delay) print(what) async def main(): # 一个一个执行 pri ...
分类:编程语言   时间:2021-05-24 02:55:21    阅读次数:0
一个关于线程安全的示例
public class ThreadDemo { //1.定义一个静态变量,因为静态变量是线程共享的 public static int count = 0; //2.定义一个自增的方法 public static void add() { try { Thread.sleep(1);//让程序睡 ...
分类:编程语言   时间:2021-05-24 02:11:00    阅读次数:0
java多线程
实现进程的两种方式 继承Thread类 实现Runable接口 设置获取线程名 getName() setName() 设置获取线程优先级 setPriority(优先级大小) getPriority() 线程控制 sleep() 休眠 setDaemon() 设置守护线程 join() 等待线程 ...
分类:编程语言   时间:2021-05-04 16:12:02    阅读次数:0
第五篇 进程&线程&协程
多进程 1 #方式一: 2 # from multiprocessing import Process 3 # import time 4 # 5 # def task(name): 6 # print('%s is running' %name) 7 # time.sleep(3) 8 # pri ...
分类:编程语言   时间:2021-05-04 15:51:14    阅读次数:0
JavaScript 定时函数【setInterval()】
相当于sleep 1秒 setTimeout(function () { console.log('我被调用了'); setTimeout(arguments.callee, 1000); }, 1000); 相当于sleep 1秒 【程序不会挂住,直接运行接下来的代码】 setInterval(f ...
分类:编程语言   时间:2021-05-04 15:35:41    阅读次数:0
点亮PICO板载LED灯
一、目标 会PICO引脚的使用 点亮LED 二、上程序 import machine import utime led_onboard = machine.Pin(25, machine.Pin.OUT) while True: led_onboard.value(1) utime.sleep(5) ...
分类:其他好文   时间:2021-05-03 12:32:04    阅读次数:0
ReentrantLock和synchronized
package com.atguigu.boot.com.atguigu; import java.io.IOException; import java.util.concurrent.TimeUnit; import java.util.concurrent.locks.Lock; import ...
分类:其他好文   时间:2021-05-03 11:52:44    阅读次数:0
4174条   上一页 1 2 3 4 5 6 ... 418 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!