码迷,mamicode.com
首页 >  
搜索关键字:no write has been do    ( 38312个结果
在指定目录批量创建软连接
@echo offset targ=D:\video\set link=D:\testlink\mkdir %link%for /d %%i in (%targ%*) do (mklink /d "%link%%%~ni" %%i) 保存bat执行。 效果是在D:\testlink\中创建D:\vi ...
分类:其他好文   时间:2020-06-22 01:16:42    阅读次数:78
mongoDB的事务
官网传送门: https://docs.mongodb.com/manual/core/replica-set-write-concern/ https://docs.mongodb.com/manual/core/transactions/#read-concern-write-concern-r ...
分类:数据库   时间:2020-06-22 00:59:41    阅读次数:118
ajax将数据遍历给select的option选项
ajax将数据遍历给select的option选项 jsp: <select name="type" id="typeId"> <option>请选择</option> </select>js: $.ajax({ url : "/xxxx.do" , type : "GET", dataType:" ...
分类:Web程序   时间:2020-06-21 20:08:55    阅读次数:92
java 面向对象(二十三):关键字:abstract以及模板方法的设计模式
abstract abstract: 抽象的1.可以用来修饰:类、方法2.具体的:abstract修饰类:抽象类 * > 此类不能实例化 * > 抽象类中一定有构造器,便于子类实例化时调用(涉及:子类对象实例化的全过程) * > 开发中,都会提供抽象类的子类,让子类对象实例化,完成相关的操作 >抽象 ...
分类:编程语言   时间:2020-06-21 19:53:41    阅读次数:47
Bat批处理脚本
BAT FOR循环 https://www.cnblogs.com/adforce/p/3282591.html 在cmd窗口中: FOR %variable IN (set) DO command [command-parameters] 在批处理文件中: FOR %%variable IN (s ...
分类:其他好文   时间:2020-06-21 16:04:25    阅读次数:82
maven jar包报错问题
有时候maven下载的jar包不全就会变成.lastUpdated后缀的文件,这样的jar包不能用一直报错, 在maven仓库文件夹打开cmd窗口运行命令删除后缀为.lastUpdated的文件,在重新下载jar for /r %i in (*.lastUpdated) do del %i ...
分类:编程语言   时间:2020-06-21 12:16:13    阅读次数:49
python基础_文件操作函数
1.写入文件 # 1.文件的写入操作 # (1) 打开文件 fp = open("ceshi1.txt",mode="w",encoding="utf-8") #打开冰箱 # (2) 写入内容 '''write("字符串")''' fp.write("把大象塞进去") #放进大象 # (3) 关闭文 ...
分类:编程语言   时间:2020-06-21 12:15:11    阅读次数:56
Spring boot 拾遗 —— Spring Cache 使用 Jackson 与 自定义 TTL
1 前言 关于序列化: Spring 提供的 Cache 默认使用 JDK 方式序列化结果,这要求我们的结果都必须实现 Serializable 接口,且在缓存中保存的数据是二进制的,给后续调试带来不少麻烦。 关于 TTL: Spring 提供的 Redis 实现仅支持设置全局 TTL ,如果想要细 ...
分类:编程语言   时间:2020-06-21 09:20:25    阅读次数:68
shell 4
监控nginx脚本,每20秒监测一次,如果进程数多于1000,重启nginx服务,重启5次失败后通知管理员,如果重启成功一分种后,进程数还是大于1000,通知运维#!/bin/bashd=`date`c=`pgrep-lnginx|wc-l`check_nginx(){for((i=1;i<=5;i++))do/usr/local/nginx/sbin/nginx2>/tmp/ngin
分类:系统相关   时间:2020-06-21 00:10:50    阅读次数:64
HDU4283 You Are the One
题目:You Are the One 网址:http://acm.hdu.edu.cn/showproblem.php?pid=4283 Problem Description The TV shows such as You Are the One has been very popular. I ...
分类:其他好文   时间:2020-06-20 23:47:01    阅读次数:57
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!