码迷,mamicode.com
首页 >  
搜索关键字:exist    ( 3127个结果
2020年五一到来AutoJs帮你度过闲暇时间
五一将至,我相信大多数人都会在家度过这个假期,作为我们技术控切莫失去这5天的好韶光。学习技术是我们永恒的主题,技术如同逆水行舟啊。现在是移动互联网时代,流量为王是这个时代的主旋律,所以各大厂家前后推出了看小视频、走路、看小说等等App赚钱的噱头。仅仅是个广告大家别真信,我早在之前的博客已经阐述过。不 ...
分类:Web程序   时间:2020-04-28 20:12:23    阅读次数:153
The requested profile "pom.xml" could not be activated because it does not exist
错误描述:在执行maven install的时候有时会出现 The requested profile “pom.xml” could not be activated because it does not exist 的错误解决办法:在项目中单击右键 --属性 --maven,将此处清空保存即可 ...
分类:其他好文   时间:2020-04-28 17:24:46    阅读次数:49
File "C: \MATLAB7\work \misc\house. tiff”does not exist.
File "C: \MATLAB7\work \misc\house. tiff"does not exist. 命令行小哥告诉你文件它找不到,并向你扔了一个错误! 这种情况首先想到的就是你的文件或者文件名出了问题。 我们来检查下读取的图片文件: 这也没问题,问题出在哪了呢? 仔细观察发现区别,旁边 ...
分类:其他好文   时间:2020-04-28 14:38:46    阅读次数:68
[Go] 注意 go build -o <output> 选项的准确含义
-o <output> 选项强制执行把构建的可执行文件写入到目标文件或者目标目录中。 如果 output 是已存在的目录,那么所有构建好的文件都将写入到该目录中。 注意:如果目录不存在的话会报错,会提示 build output "./xx/" already exists and is a dir ...
分类:其他好文   时间:2020-04-27 15:45:09    阅读次数:183
ping 检测,for循环
#!/bin/bashforIPin`cat/root/Desktop/ip.txt`doping-c3-i0.2-w3$IP&>/dev/nullif[$?-eq0]thenecho"Thishost$IPisexisted"elseecho"Thishost$IPisn‘texisted"fidone
分类:其他好文   时间:2020-04-27 15:34:11    阅读次数:187
for循环
#!/bin/bashread-p"Enterpassword:"PASSWDforUNAMEin`cat/root/Desktop/users.txt`doid$UNAME&>/dev/nullif[$?-eq0]thenecho"Alreadyexisted"elseuseradd$UNAME&>/dev/nullecho"$PASSWD"|passwd--stdi
分类:其他好文   时间:2020-04-27 15:09:27    阅读次数:58
LeetCode 79
https://leetcode-cn.com/problems/word-search/ 这个题没啥好说的,从每个字母开始去DFS看是不是可以找得到同样内容的字符串,但是在实现的细节上还是有很多需要改进的地方。 首先先上自己的代码 class Solution { public boolean e ...
分类:其他好文   时间:2020-04-27 13:32:32    阅读次数:49
2020.4.19--个人赛
A - Buggy Sorting Little boy Valera studies an algorithm of sorting an integer array. After studying the theory, he went on to the practical tasks. As ...
分类:其他好文   时间:2020-04-26 11:23:37    阅读次数:70
生成静态页面
public function index() { $file_name = 'index_wap.html'; if(file_exists( $file_name ) && filemtime( $file_name ) - time() < 10 ){//如果文件是存在并且最后修改时间小于设定 ...
分类:其他好文   时间:2020-04-24 14:31:51    阅读次数:67
Win10安装.net2.0/3.0
Windows 安装.net2.0/3.0 将下列代码拷到本地bat文件中(bat文件和sxs文件夹同级),下载适用的.net安装包版本后放置到sxs文件夹,用管理员权限执行bat文件即可。 @echo off pushd %~dp0 IF NOT EXIST D:\sources\sxs MD D ...
分类:Windows程序   时间:2020-04-23 20:46:36    阅读次数:97
3127条   上一页 1 ... 19 20 21 22 23 ... 313 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!