码迷,mamicode.com
首页 >  
搜索关键字:largest number    ( 27910个结果
清理jenkins构建
def jobName = "预发布-Server-5050" //删除小于64的构建历史 def maxNumber = 25 Jenkins.instance.getItemByFullName(jobName).builds.findAll { it.number <= maxNumber } ...
分类:其他好文   时间:2021-03-31 12:32:54    阅读次数:0
JS中小数保留的问题(处理循环浮点数的方法)
首先,我们知道计算机是做二进制运算的,因此我们将十进制的数转化成二进制,最后二进制运算完再转化成十进制是有精度丢失的。 例如 - 0.1 + 0.7 = 0.799999999999999 解决方法: 主动保留n为小数,得到数据类型是字符 - ` num = num.toFixed(n); - 转成 ...
分类:Web程序   时间:2021-03-31 12:06:43    阅读次数:0
[LeetCode] 1088. Confusing Number II 易混淆数之二
We can rotate digits by 180 degrees to form new digits. When 0, 1, 6, 8, 9 are rotated 180 degrees, they become 0, 1, 9, 8, 6 respectively. When 2, 3, ...
分类:其他好文   时间:2021-03-30 12:50:16    阅读次数:0
opencv-VideoWrite
VideoWriter的作用是保存录制的视频 学习心得: VideoCapture capture(0);之后 可以·进行一系列操作- 如: 获取所抓捕的视频的长、宽 视频帧数和每秒处理的帧数(fps) int frame_width = capture.get(CAP_PROP_FRAME_WID ...
分类:其他好文   时间:2021-03-29 12:53:21    阅读次数:0
Docker常用指令(创建sqli-labs靶场)
以创建sqli-labs靶场为例子记录一下docker的常用指令 1. 镜像 1.2 查找镜像 docker search sqli-labs 1.3 获取镜像 docker pull sqli-labs 1.4 登录/退出第三方仓库 docker login/logout [ 仓库地址 ] 1.5 ...
分类:数据库   时间:2021-03-29 12:47:16    阅读次数:0
C语言实现顺序栈
#include <stdio.h> #define NUMBER 100 int push(int* a, int top, int data) { a[++top] = data; return top; } int pop(int* a, int top) { if (top == -1) { ...
分类:编程语言   时间:2021-03-29 12:23:07    阅读次数:0
centos启动加载内核模块的方法
以内核模块 drbd 为例: 1、创建 /etc/modules-load.d/drbd.conf 中,直接写模块名: drbd 2、创建 /etc/sysconfig/modules/drbd.modules:内容如下 # drbd module exists? /usr/sbin/modinfo ...
分类:其他好文   时间:2021-03-29 11:51:34    阅读次数:0
Leetcode 111. Minimum Depth of Binary Tree
Description:Given a binary tree, find its minimum depth. The minimum depth is the number of nodes along the shortest path from the root node down to t ...
分类:其他好文   时间:2021-03-18 14:37:13    阅读次数:0
[LeetCode] 670. Maximum Swap
Given a non-negative integer, you could swap two digits at most once to get the maximum valued number. Return the maximum valued number you could get. ...
分类:其他好文   时间:2021-03-18 14:32:17    阅读次数:0
华为交换机堆叠配置
华为交换机配置堆叠,请大家参考。 S5720s-12TP-LI-AC Istack 堆叠配置Leaf1 实施 先关闭物理接口[Leaf1]int g 0/0/11[Leaf1-GigabitEthernet0/0/11]shutdown[Leaf1]int g 0/0/12[Leaf1-Gigabi ...
分类:其他好文   时间:2021-03-17 14:24:45    阅读次数:0
27910条   上一页 1 ... 15 16 17 18 19 ... 2791 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!