前言 SpringBoot的默认配置文件格式是.properities,同时也支持***.yaml或***.yml 1、指定启动的环境 spring: profiles: active: dev 2、给springboot服务命名(配合springcloud时非常有用) spring: applic ...
分类:
编程语言 时间:
2021-07-29 16:19:22
阅读次数:
0
进度条 通过这些简单、灵活的进度条,为当前工作流程或动作提供实时反馈。 基本实例 默认样式的进度条 <div class="progress"> <div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin ...
分类:
其他好文 时间:
2021-07-29 16:17:59
阅读次数:
0
Hbase 写入流程大致分为三个步骤: 1.客户端请求 首先在meta cache 根据rowKey查找该rowKey对应的Region Server,如果有则直接发送请求到RegionServer。 如果客户端缓存中没有查到对应的rowkey信息,需要首先到ZooKeeper上/hbase-roo ...
分类:
其他好文 时间:
2021-07-28 21:35:55
阅读次数:
0
debug:am trace-ipc源码分析 一、使用 官网介绍 链接:Slow rendering 如果您有 binder 事务,则可以使用以下 adb 命令捕获其调用堆栈: $ adb shell am trace-ipc start … use the app - scroll/animate ...
分类:
其他好文 时间:
2021-07-28 21:34:30
阅读次数:
0
源代码: model = Model(input=X_input, output=[x]) 错误提示: 修正: model = Model(inputs=X_input, outputs=[x]) ...
分类:
其他好文 时间:
2021-07-28 21:23:54
阅读次数:
0
源代码: 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
思路:暴力模拟。 看到题解大多是从大到小分析位置输出答案,这里特别提供一种简洁易懂的暴力模拟涂色方法。 根据题目上的涂色方式,我们可以想到一种模拟:对于原图每一个白块,我们可以在新图上把它替换成单位正方形;对于原图每一个黑块,我们可以在新图上把它替换成 \(n \times n\) 的全黑正方形。 ...
分类:
其他好文 时间:
2021-07-28 21:15:27
阅读次数:
0
一、安装Kubernetes Dashboard 1、下载yaml文件 查看K8S版本:kubectl version,我的版本是1.15,那么就可以使用v2.0.0-beta4版本的Kubernetes-dashboard。版本的对应关系:https://github.com/kubernetes ...
os模块: os.system os.system("cat/cmd等...") os.popen print os.popen("adb shell ls ../aa.png").read() >>> 输出:aa.png 爆出包含文件 {{%20config.__class__.__init__. ...
分类:
编程语言 时间:
2021-07-26 16:40:48
阅读次数:
0