码迷,mamicode.com
首页 >  
搜索关键字:not find    ( 24186个结果
SpringAOP使用及源码分析(SpringBoot下)
一、SpringAOP应用 先搭建一个SpringBoot项目 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org ...
分类:编程语言   时间:2020-06-01 23:34:04    阅读次数:58
Unity Find
Find 使用规则 在 Unity 项目开发的时候,我们可以通过代码 Find 对象的名字从而获得指定的对象。Find 会遍历 Hierarchy 视图里面的游戏对象,在找到第一个符合的对象的时候就会终止遍历。而通过实践可以发现,这种遍历是从底部开始到上面,而不是从顶部遍历到下面,这个在运用的时候很 ...
分类:编程语言   时间:2020-06-01 12:08:09    阅读次数:98
1. 两数之和
题目描述 leetcode - 1:https://leetcode-cn.com/problems/two-sum/ 解题关键 hashmap的使用 碎碎念 题目比较简单,暴力过很容易,不过借助hash可以降低时间复杂度,但是增加了空间的消耗。学习了hashmap的使用 key:value 定义 ...
分类:其他好文   时间:2020-06-01 01:06:46    阅读次数:77
'COULD NOT FIND FIRST LOG FILE NAME IN BINARY LOG INDEX FILE'的解决办法
数据库主从出错: Slave_IO_Running: No 一方面原因是因为网络通信的问题也有可能是日志读取错误的问题。以下是日志出错问题的解决方案: Last_IO_Error: Got fatal error 1236 from master when reading data from bin ...
分类:其他好文   时间:2020-05-31 21:49:50    阅读次数:90
linux命令
1、查找文件:find / -name filename.txt 2、查看一个程序是否运行:ps -ef|grep tomcat 3、查看文件,包含隐藏文件:ls -al 4、当前工作目录:pwd 5、复制文件包括其子文件到自定目录:cp -r sourceFolder targetFolder 6 ...
分类:系统相关   时间:2020-05-31 21:47:12    阅读次数:73
Centos7 卸载mysql
采用yum安装mysql后,卸载mysql: 1 查看mysql安装 rpm -qa |grep -i mysql 2 卸载 使用yum remove 命令,删除以上各项 3 再次查看是否卸载完成 rpm -qa |grep -i mysql 4 查找mysql相关目录 find / -name m ...
分类:数据库   时间:2020-05-31 21:35:11    阅读次数:92
[LeetCode] 39. Combination Sum
Given a set of candidate numbers (candidates) (without duplicates) and a target number (target), find all unique combinations in candidates where the ...
分类:其他好文   时间:2020-05-31 12:44:37    阅读次数:59
[LeetCode] 40. Combination Sum II
Given a collection of candidate numbers (candidates) and a target number (target), find all unique combinations in candidates where the candidate numb ...
分类:其他好文   时间:2020-05-31 12:43:12    阅读次数:52
字符串的常用方法
0. 字符串常用方法 a.查找_替换_统计 find() 掌握 注意: 找不到子串时,返回-1 rfind() 了解 index() 了解 注意: 找不到子串时,程序会崩溃,产生一条异常信息,导致程序无法执行 rindex() 了解 replace() 掌握 默认全部替换 count() 掌握 b. ...
分类:其他好文   时间:2020-05-31 11:17:02    阅读次数:72
优雅地删除 Linux 中的垃圾文件第十七季第一集
当然,我们也可以使用 find 命令查找并删除超过 x 天未访问的文件,不过 tmpwatch 可以一步到位,何乐而不为? tmpwatch 默认根据文件或目录的访问时间(access time)来决定删除哪些文件或目录。除此之外,你还可以根据 inode 改变时间(inode change tim ...
分类:系统相关   时间:2020-05-31 10:48:17    阅读次数:64
24186条   上一页 1 ... 73 74 75 76 77 ... 2419 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!