码迷,mamicode.com
首页 >  
搜索关键字:format failed    ( 20573个结果
@font-face的format属性
format :字体的格式,主要用于浏览器识别,一般有以下几种——truetype,opentype,truetype-aat,embedded-opentype,avg等。 对于@font-face而言,兼容性问题就是各浏览器所能识别的字体格式不尽相同。 TrueType格式(.ttf)Windo ...
分类:其他好文   时间:2021-06-05 18:14:10    阅读次数:0
gitlab 代理报错
解决从github上拉代码时报错“Failed to connect to localhost port 1080: Connection refused” 需要两行命令解决问题主要原因是使用了proxy代理,我们只需要关闭代理 git config --global http.proxy //查看 ...
分类:其他好文   时间:2021-06-05 18:13:54    阅读次数:0
displayTag数字格式化(列表不用科学计数法)
大于7位的数字会用科学计数法显示,如:12345678,显示为:1.2345678E7。我现在的需求是要求不用科学计数法 添加个format属性即可 如: <display:column property="qfhnljdl" title="全负荷年累加电量" sortable="true" sor ...
分类:其他好文   时间:2021-06-04 19:43:02    阅读次数:0
Calendar.compareTo 比较时间的大小
package com.zz.bridge.impl; import java.text.DateFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Calendar ...
分类:其他好文   时间:2021-06-04 19:35:30    阅读次数:0
使用vuecli创建 uniapp项目 一直处于加载中,或者下载失败
Failed fetching remote preset dcloudio/uni-preset-vue: 1. 利用github下载:https://github.com/dcloudio/uni-preset-vue 2. 解压好文件,一般下载好的项目都会有两层文件夹,删掉第一层文件夹 3. ...
分类:移动开发   时间:2021-06-04 19:16:33    阅读次数:0
IDEA启动报错
IDEA 启动项目报错: Failed to start connector [Connector[HTTP/1.1-9502]] 原因: 端口被占用 查进出: netstat -ano|findstr 9502 杀进程:taskkill /pid 2640 /f ...
分类:其他好文   时间:2021-06-04 19:02:07    阅读次数:0
Login failed for user 'IIS APPPOOL\web2'
Error: I am getting following error while openning connection with Database from asp.net application. [SqlException (0x80131904): Login failed for use ...
分类:移动开发   时间:2021-06-03 18:29:29    阅读次数:0
JAVA 左侧补0
注:该方法只能进行数值左侧补0,不能补充其他符号。 第一种: int youNumber = 1; // 0 代表前面补充0 // 3 代表长度为3 // d 代表参数为正数型 String str = String.format("%03d", youNumber); System.out.pri ...
分类:编程语言   时间:2021-06-03 18:16:15    阅读次数:0
格式化输出 %s、format、f
格式化输出 %s # 格式化输出 name = input('请输入你的姓名:') age = input('请输入你的年龄:') password = input('请输入你的密码:') msg=''' name=%s password=%s age=%s '''%(name,password,a ...
分类:其他好文   时间:2021-06-03 18:09:57    阅读次数:0
python 装饰器 log
定义logger方法: import loggingimport osimport timeimport utilsdata=time.strftime("%Y-%m-%d-%H:%M:%S")logging.basicConfig(filename=utils.get_project_path() ...
分类:编程语言   时间:2021-06-02 19:50:48    阅读次数:0
20573条   上一页 1 ... 4 5 6 7 8 ... 2058 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!