码迷,mamicode.com
首页 >  
搜索关键字:out of date    ( 62611个结果
SpringBoot|常用配置介绍
前言 SpringBoot的默认配置文件格式是.properities,同时也支持***.yaml或***.yml 1、指定启动的环境 spring: profiles: active: dev 2、给springboot服务命名(配合springcloud时非常有用) spring: applic ...
分类:编程语言   时间:2021-07-29 16:19:22    阅读次数:0
Bootstrap组件2
进度条 通过这些简单、灵活的进度条,为当前工作流程或动作提供实时反馈。 基本实例 默认样式的进度条 <div class="progress"> <div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin ...
分类:其他好文   时间:2021-07-29 16:17:59    阅读次数:0
centos7 修改时间
2021-07-28 查看日志时发现系统时间不正确,故修改时间 # 查看当前系统时间 date # 修改当前系统时间 date -s "2021-7-28 17:03:00" # 查看硬件时间 hwclock --show # 修改硬件时间 hwclock --set --date "2021-7- ...
分类:其他好文   时间:2021-07-28 21:37:03    阅读次数:0
4-1 YAML配置文件 注入 JavaBean中
新建 javaBean,有那么多个成员变量:【get、set、toString 那些不用我教了吧......】 private String lastName; private Integer age; private Boolean boss; private Date birth; privat ...
分类:编程语言   时间:2021-07-28 21:34:46    阅读次数:0
TypeError: ('Keyword argument not understood:', 'input')
源代码: model = Model(input=X_input, output=[x]) 错误提示: 修正: model = Model(inputs=X_input, outputs=[x]) ...
分类:其他好文   时间:2021-07-28 21:23:54    阅读次数:0
TypeError: __init__() missing 1 required positional argument: 'units'
源代码: x = Dense(output_dim=NB_CLASS, activation='softmax')(x) 错误提示: 修正: x = Dense(uints=NB_CLASS, activation='softmax')(x) 代码运行成功。 ...
分类:其他好文   时间:2021-07-28 21:23:40    阅读次数:0
常用命令
ffmpeg相关操作参考点这儿 视频截取gif 参考这儿 ffmpeg -ss 00:00:20 -i sample.mp4 -to 10 -r 10 -vf scale=200:-1 cutekid_cry.gif ss : indicates the starting point of GIF ...
分类:其他好文   时间:2021-07-28 21:17:46    阅读次数:0
题解 CF36B【Fractal】
思路:暴力模拟。 看到题解大多是从大到小分析位置输出答案,这里特别提供一种简洁易懂的暴力模拟涂色方法。 根据题目上的涂色方式,我们可以想到一种模拟:对于原图每一个白块,我们可以在新图上把它替换成单位正方形;对于原图每一个黑块,我们可以在新图上把它替换成 \(n \times n\) 的全黑正方形。 ...
分类:其他好文   时间:2021-07-28 21:15:27    阅读次数:0
java注解
注解 anno1 package com.ding.anno1; /** * @Description TODO * @Author 丁帅帅 * @Date 21/07/24 23:41 * @Version 1.0 */ public class Fu { public void show(){ ...
分类:编程语言   时间:2021-07-26 16:52:58    阅读次数:0
Journey to Un'Goro 题解(思维+剪枝搜索)
题目链接 题目大意 要你一构造一个长度为$n$的只包含$b,r$字符的串,使得子串中$r$的数量为奇数的最多 题目思路 问的qls,确实有点秒 把字符r设为1,b设为0,那么子串中r的数量就是前缀和之差,即前缀和差为奇数 那么n+1个前缀和里,奇数和偶数的个数应该尽可能相近,即前缀的奇数偶数各分一半 ...
分类:其他好文   时间:2021-07-26 16:32:53    阅读次数:0
62611条   1 2 3 4 ... 6262 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!