码迷,mamicode.com
首页 >  
搜索关键字:clock    ( 1623个结果
《Three.js 入门指南》- Three JS 功能预览
【部分中英文对照】 Cameras(照相机,控制投影方式) Camera OrthographicCamera 正交相机 PerspectiveCamera 透视相机 Core(核心对象) BufferGeometry 缓冲几何 Clock(用来记录时间) EventDispatcher 事件调度 ...
分类:Web程序   时间:2019-12-11 17:12:44    阅读次数:157
定义一个类描述数字时钟
from time import sleep#导入时间模块 class Clock(object): '时钟' '''创建时,分,秒3的构造方法''' def __init__(self,hour,minute,second): self.hour = hour self.minute = minu ...
分类:其他好文   时间:2019-12-11 15:51:15    阅读次数:102
centos7 自动同步时间
rm -rf /etc/localtime ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime vim /etc/sysconfig/clock ZONE="Asia/Shanghai" UTC=false ARC=false yum ins ...
分类:其他好文   时间:2019-12-11 13:13:53    阅读次数:453
定义一个类描述数字时钟
from time import sleep #时间模块引入sleep函数,用于缓冲 import os class Clock(object): def __init__(time,hour=0,minute=0,second=0): #时间初始化 time.hour = hour time.mi ...
分类:其他好文   时间:2019-12-09 13:45:19    阅读次数:106
定时任务突然中止,告警:Thread starvation or clock leap detected
1.背景 定时任务告警信息如下: 02:38:24.112 [HikariPool-1 housekeeper] WARN com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Thread starvation or clock leap detec ...
分类:其他好文   时间:2019-12-09 12:14:50    阅读次数:5166
使用 canvas画时钟
今天看了H5的canvas,练习使用下。待完善。。。 class Clock { constructor(canvas) { this.canvas = canvas; } draw() { let ctx = this.canvas.getContext("2d"); ctx.setDefault ...
分类:其他好文   时间:2019-12-09 01:09:25    阅读次数:81
python-内置模块
标准库 1、time和datetime import timeprint(time.time()) #时间戳# print(time.clock()) #返回处理器时间,3.3开始已废弃,改成了time.process_time()print(time.process_time()) #测量运算器处 ...
分类:编程语言   时间:2019-12-06 19:21:37    阅读次数:101
React 创建一个自动跟新时间的组件
componentDidMount声明周期函数 表示组件渲染完成后 componentWillUnmount声明周期函数 组件将要卸载 通常用于(为了防止内存泄漏 清除定时器) 11==>创建组件 Clock.js 组件名大写 12==》报错 Attempted import error: 'Clo ...
分类:其他好文   时间:2019-12-01 19:05:50    阅读次数:146
React 中 state 和 setState
如果数据需要修改,并且同时页面响应变化,我们需要放在 state 中,并且使用 setState 来修改数据,此处我们以一个钟表为例。 1.在 components 文件夹中,新建 Clock.js ,具体代码如下: 2.然后在 src index.js 导入组件,再使用组件,执行代码在浏览器查看结 ...
分类:其他好文   时间:2019-12-01 10:10:40    阅读次数:94
常用模块
时间模块#user:Administrator#date:2019/11/130013importtime#print(help(time))#print(time.time())#结果:1573655126.5573525从1970年到现在的时间#time.sleep(3)#print(time.clock())#计算CPU执行时间#print(time.gmtime())#世界标准时间time
分类:其他好文   时间:2019-11-28 15:10:12    阅读次数:73
1623条   上一页 1 ... 15 16 17 18 19 ... 163 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!