#!/usr/bin/env python # Author:Zhangmingda import gevent,time def func1(): print('第一个任务开始....') gevent.sleep(2) #模拟遇到IO操作,自动切换任务 print('第一个任务干完了!') de ...
分类:
其他好文 时间:
2018-07-31 17:17:29
阅读次数:
169
函数基础 一 定义函数的三种形式 1.1 无参函数 def foo(): print('from foo') foo() 1.2 有参函数 def bar(x,y): print(x,y) bar(1,2) 1.3 空函数 def func(): pass def upload(): pass de ...
分类:
编程语言 时间:
2018-07-30 21:30:56
阅读次数:
216
Net4.6 Task 异步函数 比 同步函数 慢5倍 踩坑经历 https://www.cnblogs.com/shuxiaolong/p/DotNet_Task_BUG.html 异步Task简单介绍 本标题有点 哗众取宠,各位都别介意(不排除个人技术能力问题) —— 接下来:我将会用一个小De ...
分类:
Web程序 时间:
2018-07-29 23:21:50
阅读次数:
244
js定时器整理(执行一次、重复执行) 在javascritp中,有两个关于定时器的专用函数,分别为: 1.倒计定时器:timename=setTimeout("function();",delaytime); 2.循环定时器:timename=setInterval("function();",de ...
分类:
Web程序 时间:
2018-07-28 16:48:59
阅读次数:
136
Polycarpus loves hamburgers very much. He especially adores the hamburgers he makes with his own hands. Polycarpus thinks that there are only three de ...
分类:
其他好文 时间:
2018-07-28 13:53:52
阅读次数:
164
原文: +++ MOG - Event Sensor (v1.1) +++By Moghunter https://atelierrgss.wordpress.com/ Sistema de distância de eventos.Dependendo da distância entre o j ...
分类:
其他好文 时间:
2018-07-28 13:37:38
阅读次数:
266
1.与服务器建立连接(达到效果:XShell和Xftp均可连接到服务器) 阿里云管理控制台提供的三种建立服务器连接方式: 使用浏览器发起安全连接(推荐) 客户端使用密钥进行连接 客户端使用账号密码进行连接 阿里云提供的用户指南: https://help.aliyun.com/document_de ...
分类:
数据库 时间:
2018-07-27 23:16:00
阅读次数:
396
约会安排 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65535/32768 K (Java/Others) Total Submission(s): 2637 Accepted Submission(s): 732 Problem De ...
分类:
其他好文 时间:
2018-07-26 23:27:08
阅读次数:
176
1.afd 网址:https://www.dwd.de/AFD/html-en/contents.html 2.问题:拷贝了一个主机A配置后(HOST_CONFIG主机项),修改为另一个主机B配置;然后在DIR_CONFIG中配置主机B的收发项;更新配置后发现收发没有反应,SYTEM_LOG.0日志 ...
分类:
其他好文 时间:
2018-07-26 13:15:50
阅读次数:
153
一、使用route命令添加route 命令 设置和查看路由表都可以用 route 命令,设置内核路由表的命令格式是: # route [add|del] [-net|-host] target [netmask Nm] [gw Gw] [[dev] If] 其中: add : 添加一条路由规则 de ...
分类:
系统相关 时间:
2018-07-25 23:54:27
阅读次数:
453