/// /// 转换成时间 00:00:00/// /// /// public string time(long duration){ TimeSpan t = new TimeSpan(0, 0, Convert.ToInt32(duration)); //string str = "00:00... ...
分类:
其他好文 时间:
2020-01-11 18:26:41
阅读次数:
272
BUG 记录 报错页面的代码和截图: Cannot access alimaven (maven.aliyun.com/nexus/conte…..... 解决方法: 报错页面的代码和截图: JAR will be empty - no content was marked for inclusio ...
分类:
数据库 时间:
2020-01-11 13:12:01
阅读次数:
422
前言 自己也只是一个前端的小白,因为公司大佬都比较忙,面试这种事就落到了我这小白身上,第一次叫我去的时候我是百般拒绝的,因为自己还是有自知之明的,但是别人实在抽不开身,没办法只能去了,他们开玩笑说就按你这水平来就行了,啥时候你问不住了就让他来复试就行。前前后后也面了一些人,加上自己面试时候整理的一些 ...
分类:
其他好文 时间:
2020-01-10 22:00:46
阅读次数:
421
环境 centos 7 dotnet core 2.1.4 错误信息: libgit2-xxxxxxx: cannot open shared object file: No such file or directory 原因: 找不到动态库 libgit2-xxxxxxx.so libgit2-x ...
分类:
其他好文 时间:
2020-01-10 13:01:15
阅读次数:
72
什么时候需要调节Executor的堆外内存大小? 当出现一下异常时: shuffle file cannot find,executor lost、task lost,out of memory 出现这种问题的现象大致有这么两种情况: 上述情况下,就可以去考虑调节一下executor的堆外内存。也许 ...
分类:
其他好文 时间:
2020-01-10 12:34:38
阅读次数:
91
etcd APIs 架构内部机制解析 etcdctl watch key pre etcdctl txn i 使用场景 ...
分类:
其他好文 时间:
2020-01-10 10:49:18
阅读次数:
55
第一步:引入: import {Component,Prop,Watch, Vue} from 'vue-property-decorator';//注意点: 首字母都是大写第二步:用法 1.component @Component({ components:{ //组件的名字 }})export ...
分类:
其他好文 时间:
2020-01-10 10:27:12
阅读次数:
101
Cannot access org.springframework.context.ConfigurableApplicationContext 需要将有问题的模块 删除 后重新导入 即可 IDEA导入module和导入project ...
分类:
移动开发 时间:
2020-01-10 00:22:14
阅读次数:
81
配置文件错误—— Element 'beans' cannot have character [children],because the type's content type is element 意为 beans 标签下只能存在子元素节点,不能存在文本符号 当编译器放生这种错误时,就是配置文件 ...
分类:
其他好文 时间:
2020-01-09 22:26:34
阅读次数:
63
VUE官网 VUE学习 sublime 属性绑定:v-bind:属性名 简写为 :属性名 双向绑定:v-model 属性计算:compute 监听器 : watch 判断 :v-show、v-if 前者不显示时只是隐藏DOM,后者不显示时是删除DOM 循环 :v-for 组 件: 每一个组件都是Vu ...
分类:
其他好文 时间:
2020-01-09 19:14:08
阅读次数:
86