码迷,mamicode.com
首页 >  
搜索关键字:shell time expr wait    ( 86807个结果
计算登录时间
direct(current time and current queue number, 25 queue number equals 1 minute) reverse(target time and current queue number, 25 queue number equals 1 ...
分类:其他好文   时间:2021-06-28 21:06:27    阅读次数:0
Shell简明教程
简介 sh是Unix最初使用的shell,Linux默认为bash,是sh的扩展。 source <FileName>:在当前bash环境下,读取并执行FileName中的命令,该FileName可以无执行权限,该命令可以用命令.代替; sh <FileName>或者bash <FileName>: ...
分类:系统相关   时间:2021-06-28 20:30:05    阅读次数:0
selenium 多窗口处理与网页frame
多窗口处理 点击某些链接,会重新打开一个窗口,对于这种情况。想在薪页面操作,就得先切换窗口了。 获取窗口得唯一标识用句柄表示,所以只需要切换句柄,就可以在多个页面进行操作了 1、 先获取到当前得窗口句柄(drive.current_window_handle) 2、 再获取到所有得窗口句柄(driv ...
分类:Web程序   时间:2021-06-28 20:24:55    阅读次数:0
【物理应用】基于matlab计步【含Matlab源码 524期】
一、简介 基于matlab计步 二、源代码 %对原始观测得到的数据进行获取 clc, clear; %加速度数组 accspe_data = []; time_record = []; fid=fopen('sensor_normal.txt', 'r', 'n', 'utf-8'); %初始赋值使 ...
分类:其他好文   时间:2021-06-28 20:19:46    阅读次数:0
golang 1. hello.go
package main //程序的包名 /* import "fmt" import "time" */ import ( "fmt" "time" ) //main函数 func main() { //函数的{ 一定是 和函数名在同一行的,否则编译错误 //golang中的表达式,加";", 和 ...
分类:其他好文   时间:2021-06-28 20:07:48    阅读次数:0
GO的Rand随机数不一样
package main import ( "fmt" "math/rand" "sync" "time" ) var wg sync.WaitGroup func f1(i int) { wg.Done() fmt.Println(i) } func main() { rand.Seed(time ...
分类:其他好文   时间:2021-06-28 19:53:07    阅读次数:0
opencv之图像的加载、显示和保存
简介 加载图像: cv::imread() 创建图像窗口: cv::namedWindow() 显示图像:cv::imshow() 保存图像:cv::imwrite() 测试代码 #include <opencv2/opencv.hpp> //总的头文件 // #include <opencv2/c ...
分类:其他好文   时间:2021-06-28 19:38:49    阅读次数:0
SpringBoot-指标监控
1、SpringBoot Actuator 1、简介 未来每一个微服务在云上部署以后,我们都需要对其进行监控、追踪、审计、控制等。SpringBoot就抽取了Actuator场景,使得我们每个微服务快速引用即可获得生产级别的应用监控、审计等功能。 <dependency> <groupId>org. ...
分类:编程语言   时间:2021-06-28 19:28:31    阅读次数:0
快速排序
1. 原理: 递归:函数自己调用自己 1 function fn() { 2 fn(); 3 } 4 fn();//会导致栈溢出 1 function fn() { 2 setTimeout(fn,0); 3 } 4 fn();//不会导致栈溢出 2. 代码实现: 3.时间复杂度: 空间复杂度: ...
分类:编程语言   时间:2021-06-28 19:12:32    阅读次数:0
python打印九九乘法表
脚本如下: # @Time : 2021/6/26 13:31# @Author : cici#左上行号参数row = 1#右上行号2row2 = 1#左下行号3row3 = 9#右下行号4row4 = 9while row <= 9 and row2 <= 9: #列号参数 col = 1 whi ...
分类:编程语言   时间:2021-06-28 19:05:56    阅读次数:0
86807条   上一页 1 ... 4 5 6 7 8 ... 8681 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!