error1运行masterha_check_repl--conf=/etc/masterha/app1.cnf报错Testingmysqlconnectionandprivileges..sh:mysql:commandnotfoundmysqlcommandfailedwithrc127:0!at/usr/bin/apply_diff_relay_logsline375解决方案:ln-s/us
分类:
其他好文 时间:
2020-01-14 10:02:12
阅读次数:
613
列出所有文件的完整路径。 import os import glob imagenet_dir = "/dataset/" for root,dirs,files in os.walk(imagenet_dir): for f in files: print(os.path.join(root,f) ...
分类:
其他好文 时间:
2020-01-10 18:39:07
阅读次数:
107
Generators offer flexible alternatives to working with arrays and how you want to iterate through the data. While most scenarios are covered by the me ...
分类:
编程语言 时间:
2020-01-08 19:22:47
阅读次数:
98
非coding shortcuts Ctrl+\ to split the active editor into two. in the Quick Open (Ctrl+P) file list. 快速打开最近所用的文件。 side by side 肩并肩,同一排 安装Ctrl 选择多个文件,然后 ...
分类:
其他好文 时间:
2020-01-08 00:41:28
阅读次数:
92
流式处理框架对比 Posted on 2017 07 05 23:36 天戈朱 阅读(9600) 评论(0) 编辑 收藏 分布式流处理是对无边界数据集进行连续不断的处理、聚合和分析的过程,与MapReduce一样是一种通用计算框 ...
分类:
其他好文 时间:
2020-01-07 20:08:49
阅读次数:
183
列表生成 [x * x for x in range(1, 11)] 写列表生成式时,把要生成的元素x * x放到前面,后面跟for循环,或者跟其他的表达式。 例如,题目是要你把偶数全部筛选出来: a=[x for x in range(1,11) if x%2==0] print(a) #[2, ...
分类:
编程语言 时间:
2020-01-05 22:31:56
阅读次数:
73
python的集合是一组对象的无序集集合中的项必须是不可变的、可散列的. 集合有两种set和frozenset. set是可变集合,集合中的元素是可以动态的增加和删除。 frozenset是不可变集合,集合中的元素不可变。 并且集合是不能作为其他集合的成员,只有frozenset类型的集合才能作为其 ...
分类:
编程语言 时间:
2020-01-05 20:32:13
阅读次数:
81
SocketServer()简介socketserver()最主要的作用就是实现Socket的并发处理。socketserver()简化了编写网络服务器的开发。简单来说,socketserver()就是对socket()的一个再封装,有以下四种基本类型(以下内容引自官方文档):TCPServer u... ...
分类:
其他好文 时间:
2019-12-27 20:29:56
阅读次数:
96
昨天我们去女儿好朋友家过圣诞节!吃的好开心,羊排吃的最开心,然后教我认识了好多酒的名字。我简直是土的掉渣,完全不知道这些很common的酒名字。Mimosa是3/2的sparkling wine加3/1的橙汁;sparkling wine意大利的叫Prosecco,更甜的叫Mascato。 ...
分类:
其他好文 时间:
2019-12-27 09:46:32
阅读次数:
91
https://blog.csdn.net/codemosi/article/details/44219687 ...
分类:
其他好文 时间:
2019-12-24 19:01:35
阅读次数:
163