package com.shine.eiuop.utils; import java.io.BufferedReader;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;i ...
分类:
其他好文 时间:
2020-07-22 01:37:25
阅读次数:
67
1、概述 Number类是所有数值类的父类,其子类有好多。 2、源码 它的源码比较简单,我附在这里。 public abstract class Number implements java.io.Serializable { public abstract int intValue(); publ ...
分类:
编程语言 时间:
2020-07-21 23:22:29
阅读次数:
72
传送门 题目:可以改变'?'为任意'a'~'z'的字符,可不可以让s有且仅有一个子串为"abacaba"。 思路:暴力就行,枚举每个位置开始7个字符能否组成"abacaba",可以的话在判断此时把这7个位置的字符变成"abacaba"时,s有几个"abacaba"子串。 1 #include <io ...
分类:
其他好文 时间:
2020-07-21 23:02:59
阅读次数:
96
NoSQLBench是针对NoSQL生态系统的性能测试工具。 源码: https://github.com/nosqlbench/nosqlbench/releases 文档: http://docs.nosqlbench.io/ 1、安装: wget https://github.com/nosq ...
分类:
数据库 时间:
2020-07-21 22:49:09
阅读次数:
80
https://www.luogu.com.cn/problem/P1030 1 #define bug(x) cout<<#x<<" is "<<x<<endl 2 #define IO std::ios::sync_with_stdio(0) 3 #include <bits/stdc++.h> ...
分类:
其他好文 时间:
2020-07-21 21:48:07
阅读次数:
55
下午移植远程仓库项目的时候,控制台报错: java.io.IOException: Could not find resource mybatis-config.xml 经过排查,发现是我没有一直夫工程的pom.xml文件。 Maven clean清除缓存,然后build,即可。 ...
分类:
其他好文 时间:
2020-07-21 21:45:44
阅读次数:
113
####将uniapp的uni.createSelectorQuery()方法与uni.pageScrollTo(OBJECT)方法结合使用 更详细用法见官方文档: uni.createSelectorQuery()方法: https://uniapp.dcloud.io/api/ui/nodes- ...
分类:
移动开发 时间:
2020-07-21 21:25:43
阅读次数:
124
#zabbix监控Mysql主从状态 搭建MySQL主从后,很多时候不知道从的状态是否ok,有时候出现异常不能及时知道,这里通过shell脚本结合zabbix实现监控并告警 在MySQL的从上查看从的运行状态是通过Slave_IO_Running线程和Slave_SQL_Running线程是否正常, ...
分类:
数据库 时间:
2020-07-21 14:10:17
阅读次数:
74
[root@node3 docker]# docker pull gcr.io/google_containers/pause-amd64:3.1 Error response from daemon: Get https://gcr.io/v2/: x509: certificate has ex ...
分类:
其他好文 时间:
2020-07-21 09:49:14
阅读次数:
83
以window安装Jenkins 下载地址:https://www.jenkins.io/download/ 找到需要下载的版本,选择windows: 下载为Jenkins.msi文件,下载下来后,直接选择安装即可 安装完毕后,会自动打开浏览器,访问local host:8080地址 需要输入密码, ...
分类:
其他好文 时间:
2020-07-21 09:41:39
阅读次数:
64