码迷,mamicode.com
首页 >  
搜索关键字:tomat    ( 413个结果
Windows域成员机强制与PDC同步时间命令
1. 把Windows Time服务的启动类型改成Manual(Automatic也行) 2. 以管理员权限运行cmd,输入w32tm /config /syncfromflags:DOMHIER /update进行更新配置 3. 运行w32tm /query /status查看同步状态 ...
分类:Windows程序   时间:2020-06-01 20:58:12    阅读次数:92
Mysql连接驱动8.0版本改动
mysql-connector-java.jar升级到8版本以后,驱动和连接地址的书写发生了一些改动,不然项目启动会进行报错 1、驱动类发生改变 由 com.mysql.jdbc.Driver 改为 com.mysql.cj.jdbc.Driver 以前的com.mysql.jdbc.Driver也 ...
分类:数据库   时间:2020-05-27 20:54:54    阅读次数:154
laravel的服务容器(药箱)、服务提供者(小盒子)、Facades(更方便用药),方便大家透彻理解
服务容器(药箱) 就是这个$app 绑定(放药) $app->bind('Apple', function(){ return 一个对象; })解析(取药) resolve('Apple'); //返回一个上面设定好的对象 $this->app->make('HelpSpot\API'); app( ...
分类:其他好文   时间:2020-05-27 12:28:52    阅读次数:95
Linux虚拟机CentOS 7 开机直接进入root
vim /etc/gdm/custom.conf [daemon]选项中 AutomaticLoginEnable=true AutomaticLogin=root TimedLoginEnable=true [Security] AllowRoot=true ...
分类:系统相关   时间:2020-05-26 15:10:27    阅读次数:104
思科智能许可证转换技巧(Cisco Smart License Conversion Trick)
It’s been a while since Cisco has announced Smart License to replace Traditional PAK-based licensing. Overall, this new system brings loads of benefit ...
分类:系统相关   时间:2020-05-23 12:53:18    阅读次数:259
HDU - 2457
"HDU 2457" 把AC自动机上的状态存进dp状态里,直接暴力转移就可以了 ...
分类:其他好文   时间:2020-05-21 16:12:48    阅读次数:56
分组与嵌套、伪类选择器、伪元素选择器、选择器优先级、css属性相关
* 分组与嵌套* 伪类选择器* 伪元素选择器* 选择器优先级* css属性相关(操作标签样式)### 分组与嵌套```pythondiv,p,span { /*逗号表示并列关系*/ color: yellow; }#d1,.c1,span { color: orange; }```### 伪类选择器 ...
分类:Web程序   时间:2020-05-13 15:21:50    阅读次数:79
Unity3D发布打包系列之(四)——IOS打包发布
Unity3D打包IOS设置,Xcode发布IPA的介绍
分类:移动开发   时间:2020-05-08 09:46:11    阅读次数:539
git命令行解决冲突方法
方法一、 git pull 出现冲突后丢弃本地冲突文件,使用远程文件覆盖本地文件 git checkout [文件路径] git checkout test/src/main/resources/application.yml git pull; IDEA 可以试用revert 方法二、 git p ...
分类:其他好文   时间:2020-05-06 22:04:31    阅读次数:95
iOS 高斯模糊 毛玻璃效果
1. 代码实现 1 UIBlurEffect *blur = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]; 2 UIVisualEffectView *effectview = [[UIVisualEffectView alloc] i ...
分类:移动开发   时间:2020-04-30 17:21:45    阅读次数:826
413条   上一页 1 2 3 4 5 6 ... 42 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!