背景 Kubernetes中的调度是将待处理的pod绑定到节点的过程,由Kubernetes的一个名为kube-scheduler的组件执行。调度程序的决定,无论是否可以或不能调度容器,都由其可配置策略指导,该策略包括一组规则,称为谓词和优先级。调度程序的决定受到其在第一次调度时出现新pod时的Ku ...
分类:
Web程序 时间:
2020-06-25 11:46:33
阅读次数:
81
wait/notify机制: import java.util.ArrayList; import java.util.List; public class MyList { private static List<String> list = new ArrayList<String>(); pu ...
分类:
编程语言 时间:
2020-06-24 23:50:51
阅读次数:
73
插件 sup A Flutter widget which displays an image, a title, and a subtitle for errors, empty states, or just fancy custom messages. pub-rules simple yet ...
分类:
其他好文 时间:
2020-06-24 19:35:59
阅读次数:
105
Substring with Concatenation of All Words (H) 题目 You are given a string, s, and a list of words, words, that are all of the same length. Find all star ...
分类:
其他好文 时间:
2020-06-24 12:04:23
阅读次数:
38
记录下来,以后用到了直接照抄。 代码 #include <stdio.h> #include <stdlib.h> typedef struct node { struct node *next; int value; } *SingleList; int value_compare(struct ...
分类:
编程语言 时间:
2020-06-24 12:03:09
阅读次数:
40
0. 前言 通过前两篇我们实现了如何在Service层如何访问数据,以及如何运用简单的加密算法对数据加密。这一篇我们将探索如何实现asp.net core的身份验证。 1. 身份验证 asp.net core的身份验证有 JwtBearer和Cookie两种常见的模式,在这一篇我们将启用Cookie ...
分类:
Web程序 时间:
2020-06-24 00:36:44
阅读次数:
64
环境: SQL*Plus: Release 19.0.0.0.0 问题: [INS-30502] No ASM disk group found. CAUSE: There were no disk groups managed by the ASM instance +ASM. ACTION: U ...
分类:
数据库 时间:
2020-06-24 00:27:18
阅读次数:
64
Spring事务管理概述 事务管理的核心接口 在 Spring的所有JAR包中,包含一个名为Spring-tx-4.3.6 RELEASE的JAR包,该包就是Spring提供的用于事务管理的依赖包。在该JAR包的 org. springframework.transaction包中,有3个接口文件 ...
分类:
编程语言 时间:
2020-06-23 19:15:30
阅读次数:
54
#!/bin/bash ssh-keygen cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys chmod 700 ~/.ssh chmod 600 ~/.ssh/authorized_keys ulimit -n 10000 yum install - ...
分类:
系统相关 时间:
2020-06-23 15:50:21
阅读次数:
83
例如: --向下遍历 select * from tablename START WITH id= '111' CONNECT BY PRIOR id=parentid --不包含parentid select * from tablename START WITH parentid= '111' ...
分类:
数据库 时间:
2020-06-23 15:45:25
阅读次数:
83