Chapter 16 Replication Table of Contents 16.1 Configuring Replication 16.1.1 Binary Log File Position Based Replication Configuration Overview 16.1.2 ...
分类:
数据库 时间:
2020-03-22 13:51:05
阅读次数:
81
Problem Description You, the leader of Starship Troopers, are sent to destroy a base of the bugs. The base is built underground. It is actually a huge ...
分类:
其他好文 时间:
2020-03-10 21:42:04
阅读次数:
72
System.Speech 命名空间包含支持语音识别的类型,你可以从Visual Studio很方便的添加相关组件的引用。 System.Speech相关介绍:https://msdn.microsoft.com/zh-cn/library/gg145021(v=vs.110).aspx Syste ...
想要熟练利用GDB进行程序调试,首先要了解什么是GDB。 1. 什么是GDB GDB (the GNU Project Debugger) 是一个可以运行在大多数常见的UNIX架构、Windows、Mac OSX等系统上的跨平台调试器,允许我们查看另一个程序在运行过程中内部发生了什么——或者另一个程 ...
分类:
数据库 时间:
2020-03-01 15:59:13
阅读次数:
242
void __cdecl OutputDebugStringF(const char* format, ...){ va_list vlArgs; char* strBuffer = (char*)GlobalAlloc(GPTR, 4096); va_start(vlArgs, format); ... ...
分类:
其他好文 时间:
2020-02-23 09:14:52
阅读次数:
69
概述 RDD只支持粗粒度转换,即在大量记录上执行的单个操作。将创建RDD的一系列Lineage(血统)记录下来,以便恢复丢失的分区。RDD的Lineage会记录RDD的元数据信息和转换行为,当该RDD的部分分区数据丢失时,它可以根据这些信息来重新运算和恢复丢失的数据分区。 示例代码如下: def m ...
分类:
其他好文 时间:
2020-02-20 17:05:54
阅读次数:
81
题目网址:http://poj.org/problem?id=1038 题意:给出一张N*M的格子纸,其中有一些坏格子,问最多可以在格子纸上切下多少个2*3(3*2)的小矩阵(不包含坏格子)。其中N<=150, M<=10。 做法: 容易发现对于右端在第i列的小矩阵,其能否摆放只和i-1, i-2列 ...
分类:
其他好文 时间:
2020-02-13 18:47:46
阅读次数:
72
[toc] aim: 首先咱们把 broswer 和 自己的api 连接起来(要显示出来自己的本地ipfs id) my bugs CROS How to do cross origin requests on IPFS https://github.com/INFURA/tutorials/wik ...
分类:
其他好文 时间:
2020-02-08 11:36:29
阅读次数:
64
这里只记录一些工具,不做具体介绍。 1.单元测试及覆盖率 C/C++ : gtest + lcov go: go test/go tool cover python: pytest pytest-cov 2.代码统计 cloc 3.静态检查 pclint/sourcemonitor/simian/p ...
分类:
其他好文 时间:
2020-01-12 15:30:19
阅读次数:
118
url: jdbc:mysql://localhost:3306/mydb?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=false 1. se ...
分类:
数据库 时间:
2020-01-09 00:38:59
阅读次数:
168