http://www.fileformat.info/format/wavefrontobj/egff.htm http://www.fileformat.info/format/material/ ...
分类:
其他好文 时间:
2020-05-30 22:10:34
阅读次数:
74
MacOS下制作CentOS系统USB安装盘 #将ISO文件转化为DMG文件 hdiutil convert -format UDRW -o CentOS-7-x86_64-Minimal-2003.dmg CentOS-7-x86_64-Minimal-2003.iso #查看存储设备列表 dis ...
分类:
系统相关 时间:
2020-05-30 11:07:31
阅读次数:
101
转自:https://www.jianshu.com/p/15c86fb429f6 容器启动加载顺序: ...
分类:
其他好文 时间:
2020-05-29 21:40:02
阅读次数:
69
1. __init__构造方法: 在实例化对象,初始化的时候触发,功能是可以为对象添加成员,参数至少有一个self,无返回值 class Travel(): def __init__(self,didian): self.didian = didian # 实例化 obj = Travel("海南" ...
分类:
其他好文 时间:
2020-05-29 21:30:39
阅读次数:
60
背景诉求: 最近在帮助银行内网环境中搭建Java开发环境,其中使用到了Maven来进行项目管理。按照之前的理解,我在外网环境下把整个项目的框架先搭建好,然后把相关的文件,比如项目文件,Maven本地仓库等等拷贝进内网的电脑里面即可。 使用到:Spring Cloud相关的依赖。 问题: 在实际操作中 ...
分类:
其他好文 时间:
2020-05-29 19:46:37
阅读次数:
132
OUTPUT_FORMAT("elf32-tricore") OUTPUT_ARCH(tricore)ENTRY(_RESET) _ISTACK_SIZE = DEFINED (__ISTACK_SIZE) ? __ISTACK_SIZE : 8K; <表达式1>?<表达式2>:<表达式3>返回 表 ...
分类:
其他好文 时间:
2020-05-29 18:04:15
阅读次数:
65
includes\database\prefetch.inc line 425 $this->defaultFetchStyle: fetch_object int 5protected $defaultFetchOptions = array( 'class' => 'stdClass', 'co ...
分类:
其他好文 时间:
2020-05-29 17:57:48
阅读次数:
60
create table toys.test (id int, x0 double, x1 double, x2 double, x3 double) row format delimited fields terminated by ',' stored as textfile; 先在hive 数 ...
分类:
其他好文 时间:
2020-05-28 16:09:46
阅读次数:
82
输入一个10位的时间戳,求出时间差 def time_diff(timestamp): onlineTime = datetime.datetime.fromtimestamp(timestamp) localTime = datetime.datetime.now() result = local ...
分类:
编程语言 时间:
2020-05-27 20:50:36
阅读次数:
195
Apache Parquet is a columnar storage format available to any project in the Hadoop ecosystem, regardless of the choice of data processing framework, d ...
分类:
其他好文 时间:
2020-05-27 15:57:13
阅读次数:
104