码迷,mamicode.com
首页 >  
搜索关键字:ini    ( 17066个结果
Leetcode 111. Minimum Depth of Binary Tree
Description:Given a binary tree, find its minimum depth. The minimum depth is the number of nodes along the shortest path from the root node down to t ...
分类:其他好文   时间:2021-03-18 14:37:13    阅读次数:0
ERROR 1044 (42000): Access denied for user ''@'localhost' to database 'mysql'
mysql命令行报错: 如下: mysql> use mysqlERROR 1044 (42000): Access denied for user ''@'localhost' to database 'mysql' 解决方法: 打开my.ini(linux下时my.cnf)文件,在[mysqld ...
分类:数据库   时间:2021-03-18 14:24:12    阅读次数:0
android动画效果大全!免费Android高级工程师学习资源,复习指南
android动画效果大全!免费Android高级工程师学习资源,复习指南 ...
分类:移动开发   时间:2021-03-17 14:14:03    阅读次数:0
Docker 更换国内 阿里云镜像(centos6为例)
1:修改/etc/docker/daemon.json文件 { "registry-mirrors": [ "https://kfwkfulq.mirror.aliyuncs.com", "https://2lqq34jg.mirror.aliyuncs.com", "https://pee6w65 ...
分类:其他好文   时间:2021-03-16 13:49:07    阅读次数:0
力扣 DFS BFS专题
#111. 二叉树的最小深度 https://leetcode-cn.com/problems/minimum-depth-of-binary-tree/ 关键在于知道f(root)=min(f(left),f(right))+1这个表达式 class Solution { public: int ...
分类:其他好文   时间:2021-03-16 12:04:09    阅读次数:0
BeanFactoryPostProcessor进行bean的注入
BeanFactoryPostProcessor 自定义spring进行注入 import org.springframework.beans.BeansException; import org.springframework.beans.factory.config.BeanFactoryPos ...
分类:其他好文   时间:2021-03-15 11:27:52    阅读次数:0
vue 项目块状样式布局展示
vue代码: 1 <template> 2 <div> 3 <div class="main"> 4 <ul> 5 <li 6 v-for="(item, index) in list" 7 :key="index" 8 :class="{ new: item.new }" 9 @click="Op ...
分类:其他好文   时间:2021-03-15 11:03:20    阅读次数:0
Java中的 try(){}
参考:https://blog.csdn.net/qq_33543634/article/details/80725899 从网上查阅资料得知从 Java 7 build 105 版本开始,Java 7 的编译器和运行环境支持新的 try-with-resources 语句,称为 ARM 块(Aut ...
分类:编程语言   时间:2021-03-15 10:48:51    阅读次数:0
PHP配置 3. 配置open_basedir
open_basedir将网站限定在指定的目录,做目录的隔离 先在php.ini中设置open_basedir: # vim /usr/local/php/etc/php.ini //搜索open_basedir,改成如下 open_basedir = /usr/local/apache2.4/do ...
分类:Web程序   时间:2021-03-10 13:11:22    阅读次数:0
docker 安装mongoDB 版本是mongo:4.2.8
1.下载安装 docker pull mongo:4.2.8 2.运行一个容器 mkdir -p /storage/data/mongodb/db #创建文件夹 docker run -itd --name mongo --restart=always -p 27017:27017 -e MONGO ...
分类:数据库   时间:2021-03-10 13:07:53    阅读次数:0
17066条   上一页 1 ... 17 18 19 20 21 ... 1707 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!