1. Spring Cloud学习过程中相关的知识点和软件项目: (1) Cloud Foundry: https://www.cloudfoundry.org/ ​   (2)Pivotal Web Services: https://run.pivotal.io/ (3)Zookeeper: https://zookeeper.apache.org/doc/current/zookeeperSt ...

    阅读全文
  2. 18270

    问题描述: 在导入数据库脚本时出现如下错误: ERROR 1418 (HY000) at line 5061: This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators ...

    阅读全文
  3. food & drug administration (FDA) corrective and preventive actions (CAPA) FDA CAPA new product introduction (NPI)   printed circuit board (PCB)  design for manufacturability (DFM)  Design for Excellence (DFX) ...

    阅读全文
  4. zookeeper学习过程中收集的一些不错的资料   Zookeeper官方文档:https://zookeeper.apache.org/doc/current/zookeeperStarted.html Zookeeper Demo: https://www.youtube.com/watch?v=Qhc6RMaDkgY Apache Zookeeper | Hands-On - Znodes: https://www.youtube. ...

    阅读全文
  5.  本文参考 https://www.cnblogs.com/ios9/p/8018227.html#_label0_0 1 -----基本数据字典及其说明 2 select * from dba_tablespaces;---关于表空间的信息 3 select * from dba_ts_quotas ;---所有用户表空间的限额 4 select * from dba_free_space;--所有表空间中自由分区 5 select * fro ...

    阅读全文
  6. 有一分数序列:2/1,3/2,5/3,8/5,13/8,21/13...求出这个数列的前20项之和 无聊,写个js玩玩. 递归写法 function a(n){ if(n==1){return 1;} else if(n==2){return 2;} else{ return a(n-1)+a(n-2);} } function b(n){ return a(n+1)/a(n); } function sum(n){ ...

    阅读全文
  7. Ace Anchor BackgroundTokenizer Document EditSession Editor Range Scrollbar Search Selection TokenIterator Tokenizer UndoManager VirtualRenderer Ace API Reference Welcome to the Ace API Refe ...

    阅读全文
  8. 创建Weblogic Domain有三种方式,本文采用配置向导Configuration Wizard. 以下简称DCW。   示例环境:Weblogic 12.1.2 DCW 8-1:指定目录   DCW 8-2: 选择模板. 默认选择一个最基本的Domain,其不安装一些sample Applications.   DCW 8-3:创建管理员帐户,默认用户名为weblogic.   ...

    阅读全文
4142