码迷,mamicode.com
首页 >  
搜索关键字:ODI    ( 5486个结果
Java开发工具类集合
Java开发工具类集合 一、MD5加密工具类 import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; public final class MD5 { public static Strin ...
分类:编程语言   时间:2020-11-01 22:06:45    阅读次数:33
[.Net Core] 基于.netcore middleware 机制, 实现模块化开发框架
.net core mvc 自定义Middleware 处理模块 ...
分类:Web程序   时间:2020-11-01 09:37:04    阅读次数:56
「源码分析」— 为什么枚举是单例模式的最佳方法
1.引言枚举类型(enumtype)是在Java1.5中引入的一种新的引用类型,是由Java提供的一种语法糖,其本质是int值。关于其用法之一,便是单例模式,并且在《EffectiveJava》中有被提到:单元素的枚举类型已经成为实现Singleton的最佳方法本文便是探究“为什么枚举是单例模式的最佳方法?”。答案先写在前面,两个字:“简单”。publicenumEnumSingleton{INS
分类:其他好文   时间:2020-11-01 09:33:05    阅读次数:16
Linux全套
必读经典:<鸟哥的私房菜> 安装虚拟机 常用虚拟机软件 VMWare VirtulBox VMWare安装参考地址 https://blog.csdn.net/java_xinshou1/article/details/100010099 虚拟机中安装Linux系统 linux 内核是免费开源的 2 ...
分类:系统相关   时间:2020-10-31 02:07:03    阅读次数:36
有四个数字:1、2、3、4,能组成多少个互不相同且无重复数字的三位数?各是多少?
题目:有四个数字:1、2、3、4,能组成多少个互不相同且无重复数字的三位数?各是多少? 程序分析:可填在百位、十位、个位的数字都是1、2、3、4。组成所有的排列后再去 掉不满足条件的排列。 程序源代码: #!/usr/bin/python # -*- coding:utf-8 -*- for i i ...
分类:其他好文   时间:2020-10-30 11:43:55    阅读次数:19
buuoj[ACTF_Junior_2020]Splendid_MineCraft WriteUp
Splendid_MineCraft 题目标题就已经暗示这题是SMC了(self-modifying code)。 工具:exeinfo,x32dbg和IDA7.0 先丢进exeinfo里查看相关信息: 用IDA打开: 根据可以字符串“Wrong!\n”直接锁定sub_401080为main函数。 ...
分类:其他好文   时间:2020-10-26 11:52:23    阅读次数:27
关于Springboot的核心配置文件中字符编码集问题
在???(例如2.3.4)Springboot后的版本中 字符编码集在Springboot核心配置文件中的 spring.http.encoding.force=truespring.http.encoding.enabled=truespring.http.encoding.charset=UTF ...
分类:编程语言   时间:2020-10-26 11:38:08    阅读次数:27
多线程提速
对于请求反馈使用线程来提速 """ Function: get similarity query Author: dengyx DateTime: 20201019 """ import jieba import time import tqdm import threading import qu ...
分类:编程语言   时间:2020-10-22 22:46:19    阅读次数:27
flink 如何实现对watermark 的checkpoint,防止数据复写
fink slink 后的数据被复写了??? 生产环境总会遇到各种各样的莫名其名的数据,一但考虑不周便是车毁人亡啊。 线上sink 流是es , es 的文档id 是自定义的 id+windowSatarTime 设window size = 10min , watermark 最大延迟时间是 10 ...
分类:其他好文   时间:2020-10-22 22:23:47    阅读次数:26
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. Please check Redis logs for details about the error
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
5486条   上一页 1 ... 11 12 13 14 15 ... 549 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!