摘要: Support 网站,需要有企业的账户才可以登录 https://launchpad.support.sap.com/ Sybase IQ 在线帮助网站,手册内容在这里都可以看到 https://help.sap.com/viewer/product/SAP_IQ/16.0.11.22/en-US 阅读全文
posted @ 2019-12-11 15:35 坏掉的开关 阅读(257) 评论(0) 推荐(0) 编辑
摘要: https://help.sap.com/viewer/a893062984f21015b9e8b03f96ed0cbb/16.1.3.4/en-US/a48e54fc84f21015b4ee8416037abbc3.html start_iq Server Options Available sw 阅读全文
posted @ 2019-07-30 17:21 坏掉的开关 阅读(635) 评论(0) 推荐(0) 编辑
摘要: 差异出现在 DigitList.java的 round() 方法处理上: 1.6: 1.8: 根据设置规则消除无需显示的数字时,JDK1.8 新增了一个二进制数向ASCII码转换的过程如下: 从而导致拿到的取舍后的数字出现了区别: JDK官方文档也曾指出:Float和Double类型的数据在进行计算 阅读全文
posted @ 2018-12-18 18:49 坏掉的开关 阅读(363) 评论(0) 推荐(0) 编辑
摘要: public void startTcpService(String ip) { try { InetAddress ipAddress = InetAddress.getByName(ip); tcpServer = new ServerSocket(TCP_SERVER_PORT, 0, ipAddress); ... 阅读全文
posted @ 2018-11-01 19:42 坏掉的开关 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 对单例进行mock 单例类 测试类 @Test public void testMethod() throws Exception { PowerMockito.doReturn(your obj).when(handler, "methodname", "input"); ………… 有时会出现依赖 阅读全文
posted @ 2018-10-25 20:24 坏掉的开关 阅读(2898) 评论(0) 推荐(0) 编辑
摘要: python通过ssh连接linux服务器,部分服务器出现如下异常 03:50:48.725 FAIL ftp operation failed, Incompatible ssh peer (no acceptable kex algorithm) 原因是Python使用的ssh插件,加密算法与远 阅读全文
posted @ 2018-08-28 10:12 坏掉的开关 阅读(7291) 评论(0) 推荐(1) 编辑
摘要: 1.翻译 https://translator.microsoft.com/neural/ 微软的一项研究,会出两个翻译结果。一个为目前微软线上的翻译机,另一个为最新的基于人工智能网络的结果。翻译效果很好。 2.在线工具 https://www.sojson.com/regex/ 包括正则式、二维码 阅读全文
posted @ 2018-08-25 15:54 坏掉的开关 阅读(200) 评论(0) 推荐(0) 编辑
摘要: ls的结果按时间数据先排序,再取末尾5个文件,再调用tar命令 利用grep命令从文件中搜索。 扩展学习 ls命令详解 https://www.cnblogs.com/westoslinux/p/6400867.html sort命令详解 https://www.cnblogs.com/zhangs 阅读全文
posted @ 2018-08-25 15:40 坏掉的开关 阅读(713) 评论(0) 推荐(0) 编辑
摘要: C Name Value Description EPERM 1 Operation not permitted ENOENT 2 No such file or directory ESRCH 3 No such process EINTR 4 Interrupted system call EI 阅读全文
posted @ 2018-02-28 11:12 坏掉的开关 阅读(3707) 评论(0) 推荐(0) 编辑
摘要: 在Linux系统如何让程序开机时自动启动 核心提示:系统的服务在开机时一般都可以自动启动,那在linux系统下如果想要程序在开机时自动启动怎么办?我们知道在 windows系统“开始”-->“所有程序”-->“启动”里面放个快捷方式就行,那Linux系统下呢?...系统的服务在开机时一般都可以自动启 阅读全文
posted @ 2018-02-28 11:11 坏掉的开关 阅读(6001) 评论(0) 推荐(0) 编辑