码迷,mamicode.com
首页 >  
搜索关键字:second    ( 4896个结果
ctime
日历时间(Calendar Time) ,是从一个标准时间点(epoch)到现在的时间经过的秒数,不包括插入闰秒对时间的调整。开始计时的标准时间点,各种编译器一般使用UTC 1970 01 01 00:00:00。日历时间用数据类型time_t表示。[1]:20time_t类型实际上一般是32位整数 ...
分类:其他好文   时间:2020-05-12 09:37:15    阅读次数:59
DLT
Introduction Diagnostic Log and Trace is an implementation of logging software. The software implementation is open source provided under the Mozilla ...
分类:其他好文   时间:2020-05-11 23:47:21    阅读次数:164
CF #638(div.2)
凤凰专场 @[toc] A. Phoenix and Balance 题意: 有 n 个硬币分别重 $2^1,2^2,...,2^n~(n \in even)$ , 将这 n 个硬币分成相同数量的两组,求两组重量差值最小是多少 分析: 硬币的重量是 2 的幂次增长,所以前 n 1 个硬币的重量和是 ...
分类:其他好文   时间:2020-05-11 21:44:33    阅读次数:70
fprobe参数 -e
网络流量分析利器-可视化网络-netflow【1】-基础原理网络流量分析利器-可视化网络-netflow【2】-CiscoNetFlow工作原理介绍及配置网络流量分析利器-可视化网络-netflow【3】-netflow版本5和版本9区别网络流量分析利器-可视化网络-netflow【4】-接收器nfdump简介网络流量分析利器-可视化网络-netflow【5】-linux下数据采集器fprobe网
分类:其他好文   时间:2020-05-11 15:28:48    阅读次数:93
C++ Pair和Tuple
1.Pair 1.1 Pair定义: namespace std { template<class _T1, class _T2> struct pair { _T1 first; _T2 second; } } 两个成员都是public。 实现一个泛型类函数模板,将一个pair写入一个stream ...
分类:编程语言   时间:2020-05-10 23:31:30    阅读次数:133
python自动生成电话号
# Author:BeeLe# -*- coding: utf-8 -*-import randomdef create_phone(): # 第二位数字 second = [3, 4, 5, 7, 8][random.randint(0, 4)] # 第三位数字 third = {3: rando ...
分类:编程语言   时间:2020-05-10 23:11:06    阅读次数:85
Prometheus监控Docker服务(五)
一、使用cAdvisor(Container Advisor)收集正在运行的容器资源使用和性能信息。 https://github.com/google/cadvisor 运行单个cAdvisor来监控整个Docker主机,默认的监听端口为8080 # docker run \ --volume=/ ...
分类:其他好文   时间:2020-05-10 20:56:31    阅读次数:78
1443. Minimum Time to Collect All Apples in a Tree
Given an undirected tree consisting of n vertices numbered from 0 to n-1, which has some apples in their vertices. You spend 1 second to walk over one ...
分类:移动开发   时间:2020-05-10 19:30:30    阅读次数:71
[ORACLE]Oracle db_name ORACLE_SID INSTANCE_NAME
db_name: 实例启动最小参数需求,在参数文件中,通常需要最少的参数是 db_name ,设置了这个参数之后,数据库实例就可以启动. SID -->System IDentifier 的缩写ORACLE_SID --> 就是 Oracle System IDentifierOracle 的实例 ...
分类:数据库   时间:2020-05-10 16:39:45    阅读次数:66
C++ STL
[TOC] 遍历 set遍历 ...
分类:编程语言   时间:2020-05-09 22:51:19    阅读次数:55
4896条   上一页 1 ... 29 30 31 32 33 ... 490 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!