码迷,mamicode.com
首页 >  
搜索关键字:format release    ( 24203个结果
mysql - 查看表结构命令
-- 查看表结构desc 表名; -- 查看表中字段的结构信息select table_name,column_name,column_comment from information_schema.columns where table_schema ='表所在的库' and table_name ...
分类:数据库   时间:2021-03-10 12:59:11    阅读次数:0
PyTorch的自动混合精度(AMP)
https://zhuanlan.zhihu.com/p/165152789 PyTorch 1.6版本今天发布了,带来的最大更新就是自动混合精度。release说明的标题是: Stable release of automatic mixed precision (AMP). New Beta f ...
分类:其他好文   时间:2021-03-09 13:26:55    阅读次数:0
Tinyply 源码阅读
Tinyply 源码阅读 ply格式介绍见:http://paulbourke.net/dataformats/ply/ tinyply项目路径为:https://github.com/ddiakopoulos/tinyply/ 这里先放一个ply的示例: ply format ascii 1.0 ...
分类:其他好文   时间:2021-03-09 13:21:52    阅读次数:0
参数里时间格式的转换
https://blog.csdn.net/holdlg/article/details/62436537 time.time() 得到浮点型的时间戳 time.localtime() 都得到 struct_time time.strftime() 可以这么理解 “string format tim ...
分类:其他好文   时间:2021-03-06 14:58:28    阅读次数:0
我的 Emacs 配置文件
前面字体设的是 Ubuntu Mono,没有的可以去Ubuntu里拷一份,字体放大了点。剩下的是一些基本的操作,可按需取用。 开启自动全屏仅适用于Windows系统。 1 (custom-set-variables 2 ;; custom-set-variables was added by Cus ...
分类:系统相关   时间:2021-03-06 14:43:24    阅读次数:0
摄像头调用
from __future__ import print_function import numpy as np import cv2 as cv def main(): def decode_fourcc(v): v = int(v) return "".join([chr((v >> 8 * i ...
分类:其他好文   时间:2021-03-06 14:32:36    阅读次数:0
安装RocketMQ
cd /opt/wget https://archive.apache.org/dist/rocketmq/4.2.0/rocketmq-all-4.2.0-bin-release.zipunzip rocketmq-all-4.2.0-bin-release.zip -d rocketmq-all ...
分类:其他好文   时间:2021-03-05 13:21:48    阅读次数:0
Spring JDBC 的简单使用
Spring框架对JDBC的简单封装。提供了一个JDBCTemplate对象简化JDBC的开发。 使用步骤 导入架包:commons-logging-1.2.jar、spring-beans-5.0.0.RELEASE.jar、spring-core-5.0.0.RELEASE.jar、 sprin ...
分类:数据库   时间:2021-03-05 13:09:26    阅读次数:0
C# 基础 - string 和 Datetime
1. string 1. 格式化填充 string str = "this {0} a {1}"; Console.WriteLine(string.Format(str, "is", "boy")); // this is a boy 2. 将数据合并成字符串 string[] strArr = ...
分类:Windows程序   时间:2021-03-04 13:14:37    阅读次数:0
基于hdfs文件创建hive表
create table customer row format SERDE 'org.apache.hadoop.hive.serde2.avro.AvroSerDe'stored as inputformat 'org.apache.hadoop.hive.ql.io.avro.AvroCont ...
分类:其他好文   时间:2021-03-03 12:21:19    阅读次数:0
24203条   上一页 1 ... 18 19 20 21 22 ... 2421 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!