1. 只读的、单元素的容器类 Set<String> singleton = Collections.singleton("set"); List<String> singletonList = Collections.singletonList("List"); Map<String, Strin ...
分类:
其他好文 时间:
2020-05-29 12:07:55
阅读次数:
79
/etc/nginx/nginx.conf worker_rlimit_nofile#; --指定一个worker 进程所能打开的最大文件描述符数量worker_rlimit_sigpending#; --指定每个用户能够发往进程的信号的数量 性能优化相关的配置 1.work_processes - ...
分类:
其他好文 时间:
2020-05-28 23:39:54
阅读次数:
71
1.学习spring源码首先要下载源码 官网地址:https://spring.io/projects/spring-framework 点击projects->spring framework在点击git图标跳转到Git下载页 2.由于spring-framework工程是有gradle构建的,所 ...
分类:
编程语言 时间:
2020-05-28 16:32:58
阅读次数:
315
1.编写一个随机生成 10个 0(包括) 到 100 之间的随机正整数。 package work; import java.util.Arrays; import java.util.Random; import java.util.Scanner; public class one { publ ...
分类:
其他好文 时间:
2020-05-28 13:49:55
阅读次数:
51
from Queue import Queue qlist=Queue(maxsize=300) import threading for i in range(20): qlist.put("hello num%d" %(i)) def process_work(qlist): while Tru ...
分类:
编程语言 时间:
2020-05-28 00:58:28
阅读次数:
61
AR1配置 ospf 1 router-id 1.1.1.1 area 0.0.0.1 network 10.1.12.0 0.0.0.255 AR2配置 ospf 1 router-id 2.2.2.2 area 0.0.0.0 network 10.1.23.0 0.0.0.255 area 0 ...
分类:
其他好文 时间:
2020-05-27 22:06:04
阅读次数:
145
NAME uname - print system information SYNOPSIS uname [OPTION]... DESCRIPTION Print certain system information. With no OPTION, same as -s. -a, --all p ...
分类:
系统相关 时间:
2020-05-27 18:27:50
阅读次数:
82
ERROR 27-05 13:02:11,659 - 原客户号[4264257810]更新失败org.springframework.orm.hibernate3.HibernateJdbcException: JDBC exception on Hibernate data access: SQL ...
分类:
编程语言 时间:
2020-05-27 13:45:01
阅读次数:
75
Few-shot image classification Three regimes of image classification Problem formulation Training set consists of labeled samples from lots of “tasks”, ...
分类:
其他好文 时间:
2020-05-27 12:09:24
阅读次数:
85
package com.test.leon; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.BufferedReader; import java.io.Buffered ...
分类:
其他好文 时间:
2020-05-26 22:10:21
阅读次数:
70