TechRoad 1. Architecture <Java Application architecture> modular, Spring context config <EIS> technology decision, base eis-platform-brms <MS PPP> cha ...
分类:
其他好文 时间:
2020-11-07 16:51:15
阅读次数:
24
Elyra is a set of AI-centric extensions to JupyterLab Notebooks. Elyra currently includes: AI Pipelines visual editor Ability to run a notebook as a b ...
分类:
其他好文 时间:
2020-11-02 09:55:00
阅读次数:
19
CopyOnWriteArrayList官方定义CopyOnWriteArrayList是ArrayList的线程安全变体,其中通过创建底层数组的新副本来实现所有可变操作(添加,设置等)。这通常成本太高,但是当遍历操作大大超过突变时,它可能比替代方法更有效,并且当您不能或不想同步遍历但需要排除并发线程之间的干扰时非常有用。“快照”样式迭代器方法在创建迭代器时使用对数组状态的引用。这个数组在迭代器的
分类:
其他好文 时间:
2020-11-01 11:03:24
阅读次数:
17
1007 素数对猜想 (20分) 让我们定义d?n??为:d?n??=p?n+1???p?n??,其中p?i??是第i个素数。显然有d?1??=1,且对于n>1有d?n??是偶数。“素数对猜想”认为“存在无穷多对相邻且差为2的素数”。 现给定任意正整数N(<10?5??),请计算不超过N的满足猜想的 ...
分类:
其他好文 时间:
2020-10-24 10:15:01
阅读次数:
25
Existing lock /var/run/yum.pid: another copy is running as pid 19342. Another app is currently holding the yum lock; waiting for it to exit... The oth ...
分类:
其他好文 时间:
2020-10-20 16:35:38
阅读次数:
30
MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the data set are disabled. P ...
分类:
数据库 时间:
2020-10-20 16:33:15
阅读次数:
35
7-108 将x的平方赋值给y (5分) 假设x的值为3,计算x的平方并赋值给y,分别以“y = x ? x”和“x ? x = y”的形式输出x和y的值。 输入格式: 本题无输入 输出格式: 按照下列格式输出代入x=3的结果: y = x * x x * x = y#include<stdio.h ...
分类:
其他好文 时间:
2020-10-18 10:06:58
阅读次数:
36
Redis问题 MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the data set are dis ...
分类:
数据库 时间:
2020-10-13 17:08:07
阅读次数:
33
刚开始陷入了误区了,网上很多参考例子都是如何实现身份证验证,而且看到konga上面配置身份插件的地方基本都有consumer一个配置项,一直纠结在这个如何通过key-auth实现指定的route或者service指定消费者才能访问。这个误区解答就是kong身份认证和权限是独立的。 也就是说我们在添加 ...
分类:
其他好文 时间:
2020-10-09 21:22:49
阅读次数:
39
生成验证码的工具类 package com.lcx.utils; import javax.imageio.ImageIO; import java.awt.*; import java.awt.geom.AffineTransform; import java.awt.image.Buffered ...
分类:
其他好文 时间:
2020-10-08 19:42:16
阅读次数:
26