Suppose we abstract our file system by a string in the following manner: The string "dir\n\tsubdir1\n\tsubdir2\n\t\tfile.ext" represents: The director ...
分类:
其他好文 时间:
2017-06-17 10:03:46
阅读次数:
206
mcu core顶层:omsp430.v // // // *File Name: openMSP430.v // // *Module Description: // openMSP430 Top level file // // *Author(s): // - Olivier Girard, ...
分类:
其他好文 时间:
2017-06-16 17:40:29
阅读次数:
270
1. 在standby服务器安装postgres数据库,不需要初始化. 安装过程详见:http://www.cnblogs.com/ilifeilong/p/6979288.html 2. 在primary服务器创建具有REPLICATION权限的复制用户 3. 允许复制用户远程连接到primary ...
分类:
数据库 时间:
2017-06-14 02:41:09
阅读次数:
371
/********************************************************************* * Author : Samson * Date : 05/19/2014 * Test platform: * Mint 15-3.8.13.13 * GN ...
分类:
系统相关 时间:
2017-06-12 10:47:10
阅读次数:
335
//有向图的拓扑排序 //杨鑫 #include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX_NAME 3 #define MAX_VERTEX_NUM 20 typedef int InfoType; //存放网的权值 ...
分类:
编程语言 时间:
2017-06-10 18:28:57
阅读次数:
307
library IEEE; use IEEE.std_logic_1164.all; use IEEE.std_logic_unsigned.all; entity clock60 is port( CLK : in std_logic; --clear CLR : in std_logic; --... ...
分类:
其他好文 时间:
2017-06-10 12:18:46
阅读次数:
602
操作系统:Windows8.1 显卡:Nivida GTX965M 开发工具:Visual Studio 2017 Introduction 在选择要使用的物理设备之后,我们需要设置一个逻辑设备用于交互。逻辑设备创建过程与instance创建过程类似,也需要描述我们需要使用的功能。因为我们已经查询过 ...
分类:
其他好文 时间:
2017-06-09 22:25:09
阅读次数:
187
master-standby情况下,发生如下行为: 1.master停掉后,standby做为新的master(可能存在部分事物没有同步到standby中)。 2.新master运行过程中出错,进行恢复,时间线发生变化。 3.旧master启动前,先跟新master进行pg_rewind,会出现时间 ...
近期有个project部署到tomcat上是正常的,部署到weblogic上时訪问action报404错误。依据报错日志。在网上找到了原因例如以下: 部署到weblogic上。struts.xml配置文件include里面不能带通配符*。否则struts将会报错,訪问action会报404 这里做个 ...
分类:
Web程序 时间:
2017-06-05 22:13:33
阅读次数:
150
一、什么是拓扑排序 在图论中,拓扑排序(Topological Sorting)是一个有向无环图(DAG, Directed Acyclic Graph)的所有顶点的线性序列。且该序列必须满足下面两个条件: 有向无环图(DAG)才有拓扑排序,非DAG图没有拓扑排序一说。 例如,下面这个图: 它是一个 ...
分类:
编程语言 时间:
2017-06-05 17:22:42
阅读次数:
235