在执行 pip install 时遇到错误:ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output. ...
分类:
编程语言 时间:
2020-07-04 13:51:56
阅读次数:
525
java.util.Arrays 类就是为数组而生的专用工具类,基本上常见的对数组的操作,Arrays 类都考虑到了,这让我由衷地觉得,是时候给该类的作者 Josh Bloch、Neal Gafter、John Rose 点个赞了。 (我是怎么知道作者名的?看源码就可以,小伙伴们,装逼吧) Arra ...
分类:
编程语言 时间:
2020-07-04 13:08:42
阅读次数:
51
首先来看看Linux平台下如何使用gcc编译出当下平台的可执行程序。 我们先来准备一个main.c文件 #include<stdio.h> int main(){ printf("Hello Gcc!"); return 0; } 上面是一个c语言写的很简单的一段代码,目的是要输出“Hello Gc ...
分类:
移动开发 时间:
2020-07-04 01:45:25
阅读次数:
114
1、ShaderLab和CG变量的匹配关系 ShaderLab属性类型 CG变量类型 Color, Vector float4, half4, fixed4 Range, Float float, half, fixed 2D sampler2D Cube samplerCube 3D sample ...
分类:
其他好文 时间:
2020-07-04 01:01:17
阅读次数:
115
type InputStructure struct { Content string `form:"content" binding:"required,len=2"` Age int `form:"age" binding:"max=10,min=1"` Pass string `form:"p ...
分类:
其他好文 时间:
2020-07-03 19:33:43
阅读次数:
61
1.数字格式元素 # 任意数字 ,千分位 . 小数点 0 不够补0 代码示例: //创建数字格式化对象,并加入千分位,配合format方法使用 DecimalFormat df = new DecimalFormat("###,###"); df.format(123456789); //创建数字格 ...
分类:
编程语言 时间:
2020-07-03 19:22:38
阅读次数:
62
rem自适应 <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> <script> var deviceWidth = window.inner ...
分类:
移动开发 时间:
2020-07-03 19:15:14
阅读次数:
92
懒人方案 网盘: 链接:https://pan.baidu.com/s/1x4OB1IF2HZGgtLhd1Kr_AQ 提取码:glx7 网盘内是已生成可用工具,下载可以直接使用,使用前看一下READ.txt文件。 Maven依赖 <?xml version="1.0" encoding="UTF- ...
分类:
编程语言 时间:
2020-07-03 15:34:39
阅读次数:
222
import pymysql import requests import json import smtplib import email.mime.multipart import email.mime.text from email.mime.application import MIMEAp ...
分类:
其他好文 时间:
2020-07-03 12:36:57
阅读次数:
74
[root@kunpeng82 devuser]# ovs-vsctl show ec7f002f-352c-476c-8348-5f2c86c8194f Bridge "br0_vtep_ls1" Port "vx1" Interface "vx1" type: vxlan options: {k ...
分类:
其他好文 时间:
2020-07-03 11:00:04
阅读次数:
106