码迷,mamicode.com
首页 >  
搜索关键字:cache file failed crc check    ( 74831个结果
xxxxxxxxxxxxxxxxxxx
1. # -*- encoding=utf8 -*- __author__ = "1003441" from airtest.core.api import * auto_setup(__file__) # 日志模块 from airtest.report.report import simple_ ...
分类:其他好文   时间:2021-05-24 04:56:48    阅读次数:0
git命令备忘
查看远程与本地所有分支 git branch -a 拉取远程分支到本地 git checkout -b '车管家' remotes/origin/车管家 切换分支 git checkout -f test ...
分类:其他好文   时间:2021-05-24 04:44:55    阅读次数:0
git commit后,如何撤销commit
修改了本地的代码,然后使用: git add file git commit -m '修改原因' 执行commit后,还没执行push时,想要撤销这次的commit,该怎么办? 解决方案: 使用命令: git reset --soft HEAD^ 这样就成功撤销了commit,如果想要连着add也撤 ...
分类:其他好文   时间:2021-05-24 04:41:38    阅读次数:0
Java读取json文件转换为json
在项目中遇到读取以json格式存储的配置文件,为了方便操作,将文件内容读取出来并转换为json对象,本文使用的是fastjson import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import org. ...
分类:编程语言   时间:2021-05-24 04:37:23    阅读次数:0
idea整合springboot+redis
1. 前言 上一篇文章整合了springboot+spring mvc+mybatis,基于三层架构搭建了一个接口平台。这篇文章主要整合一下springboot和redis的框架,redis也是目前使用较多的nosql数据库。 这篇文章的整个项目框架都是基于上一篇文章的,所以很多配置或者代码不会写完 ...
分类:编程语言   时间:2021-05-24 04:36:49    阅读次数:0
Mybatis xml映射方便的写法
<sql id="insertColumn"> data_job_id, ds_info, src_ds_type, dst_ds_type, scene_state, last_checked_time, check_period_ms, last_round_reset_time, round_ ...
分类:其他好文   时间:2021-05-24 04:16:16    阅读次数:0
scala读取json
import scala.util.parsing.json.JSON._import scala.io.Source val js_file="pspldata.area%s_tableMapping.json".format(1)val js_source = Source.fromFile(j ...
分类:Web程序   时间:2021-05-24 04:09:53    阅读次数:0
解决mac系统docker启动mysql端口被占用
解决mac系统docker启动mysql端口被占用 错误提示 Error response from daemon: Cannot restart container cfcf: driver failed programming external connectivity on endpoint ...
分类:数据库   时间:2021-05-24 04:06:32    阅读次数:0
ThinkPHP报错 The requested URL /admin/index/login.html was not found on this server.
解决方案在入口文件夹public下查看.htaccess是否存在。不存在则新建,存在的话,那内容替换为下面这串代码 就可以解决Not Fund #<IfModule mod_rewrite.c># Options +FollowSymlinks -Multiviews# RewriteEngine ...
分类:Web程序   时间:2021-05-24 04:03:07    阅读次数:0
linux 删除文件夹下文件
1:删除当前目录下 后缀为 ”.***“的文件 find -name "*.txt" -exec rm -f '{}' \; 删除后缀为.txt的文件 2:清空某个文件的内容 echo "" > filename ...
分类:系统相关   时间:2021-05-24 02:31:05    阅读次数:0
74831条   上一页 1 ... 37 38 39 40 41 ... 7484 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!