码迷,mamicode.com
首页 >  
搜索关键字:eating    ( 485个结果
mysql8.0.20安装测试innodb cluster
本文记录搭建mysql innodb cluster的过程和基本的测试。 1、环境描述 主机名 主机IP 部署 tidb60 192.168.68.60 MySQL8.0.20 tidb61 192.168.68.61 MySQL8.0.20 tidb62 192.168.68.62 MySQL8. ...
分类:数据库   时间:2020-05-08 22:48:11    阅读次数:161
Building Container Images
文章源自Katacoda Docker Playground的学习 Step 1 - Base Images 1 # Creating a Dockerfile 2 $ vim Dockerfile 3 FROM nginx:1.11-alpine Step 2 - Running Commands ...
分类:其他好文   时间:2020-05-01 01:34:11    阅读次数:202
ORA-04031
ORA-04031 在使用dbca建库正式安装的的第一阶段“Creating and starting Oracle instance”报出如下的错误 ORA-04031:unable to allocate 1572864 bytes of shared memory ("shared pool" ...
分类:其他好文   时间:2020-04-26 18:43:07    阅读次数:67
phpstorm 设置方法名注释
官方文档地址: http://www.jetbrains.com/phpstorm/help/creating-php-documentation-comments.html#d745077e199 由于英文水平有限 自己总结了一下操作步骤: file-> setting-> FIle and Co ...
分类:Web程序   时间:2020-04-17 15:19:31    阅读次数:204
Corn Fields【状态压缩dp】
题目: Farmer John has purchased a lush new rectangular pasture composed of M by N (1 ≤ M ≤ 12; 1 ≤ N ≤ 12) square parcels. He wants to grow some yummy c ...
分类:其他好文   时间:2020-04-13 22:54:46    阅读次数:61
还不懂 ConcurrentHashMap ?这份源码分析了解一下
上一篇文章介绍了 HashMap 源码,反响不错,也有很多同学发表了自己的观点,这次又来了,这次是 了,作为线程安全的HashMap ,它的使用频率也是很高。那么它的存储结构和实现原理是怎么样的呢? 1. ConcurrentHashMap 1.7 1. 存储结构 Java 7 中 Concurre ...
分类:其他好文   时间:2020-04-08 09:37:15    阅读次数:66
JDBC API
通过使用 JDBC Statement, CallableStatement 和 PreparedStatement 接口定义的方法和属性,使可以使用 SQL 或 PL/SQL 命令和从数据库接收数据。 接口应用场景 Statement 当在运行时使用静态 SQL 语句时(Statement 接口不 ...
分类:数据库   时间:2020-04-03 00:14:33    阅读次数:93
c++ error: creating array of references( declaration of 'a' as array)
错误程序: ...
分类:编程语言   时间:2020-03-31 12:45:15    阅读次数:72
剑指offer[34]——第一个只出现一次的字符
题目描述 在一个字符串(0<=字符串长度<=10000,全部由字母组成)中找到第一个只出现一次的字符,并返回它的位置, 如果没有则返回 1(需要区分大小写). 这道题目我的思路很简单,就是遍历字符串,然后判断遍历到的字母是否在它之前和之后的字符串出现过,没有的话就直接返回,有的话就继续计算。 ...
分类:其他好文   时间:2020-03-24 23:35:56    阅读次数:109
同学给我来个手写的new吧
1.手写一个new 首先看看new怎么用 function Person(name){ this.name = name } Person.prototype.eat = function() { console.log("Eating") } var qd = new Person('qd') c ...
分类:其他好文   时间:2020-03-22 13:47:42    阅读次数:75
485条   上一页 1 2 3 4 5 6 ... 49 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!