码迷,mamicode.com
首页 >  
搜索关键字:format and partition disk    ( 19010个结果
随机生成MAC地址和IP地址
随机生成MAC //MAC地址分隔符 private static String SEPARATOR_OF_MAC = "-"; Random random = new Random(); //mac数据 String[] macs = { String.format("%02x", 0x52), ...
分类:系统相关   时间:2021-01-22 11:50:15    阅读次数:0
vscode配置vue+eslint自动保存去除分号,方法与括号间加空格,使用单引号
自动保存去掉分号参考链接 方法与括号直接加空格:文件-->首选项-->设置--> 搜索 setting 在最后加上这个 "vetur.format.defaultFormatter.js": "vscode-typescript", "javascript.format.insertSpaceBef ...
分类:其他好文   时间:2021-01-20 12:01:59    阅读次数:0
AWS docs notes
DynamoDB supports two types of primary keys: Partition key: A simple primary key, composed of one attribute known as the partition key. Attributes in ...
分类:其他好文   时间:2021-01-19 12:30:09    阅读次数:0
hive添加txt文件转oec表
1.数据格式 1 2 x2 2 x3 2 x4 2 x 2.创建表 创建TEXTFILE格式的表 CREATE TABLE test_txt(id int,num int,txt string) ROW FORMAT DELIMITED FIELDS TERMINATED BY '\t' LINES ...
分类:其他好文   时间:2021-01-18 10:51:25    阅读次数:0
Chapter 3 : Core Java APIs
Chapter 3 : Core Java APIs Class String API stands for application programming interface. If both operands are numeric, + means numeric addition. If e ...
分类:编程语言   时间:2021-01-18 10:51:07    阅读次数:0
Azure 存储简介
Azure Storage Account(存储账户)包含所有Azure Storage的数据对象,包括Blob、Data Lake Gen2,File、Queue、Disk和Table等服务,该Storage Account为用户的Azure Storage数据提供了唯一的命名空间,可以通过HTT ...
分类:其他好文   时间:2021-01-16 12:00:10    阅读次数:0
MySQL(2): 窗口函数\备份与恢复\性能优化\权限管理
mysql 8.0 新增了窗口函数,与Oracle一样的 MySQL从8.0开始支持窗口函数,这个功能在大多商业数据库和部分开源数据库中早已支持,有的也叫分析函数。 什么叫窗口? 窗口的概念非常重要,它可以理解为记录集合,窗口函数也就是在满足某种条件的记录集合上执行的特殊函数。对于每条记录都要在此窗 ...
分类:数据库   时间:2021-01-14 11:22:33    阅读次数:0
文件操作与函数(补)
上周内容回顾 字符串的内置方法 strip split replase format upper lower # 如果想查看更多的字符串方法,可以再pycharm中通过字符类型后面加'.'的方式查看 str.自动调试可以调用的内置方法 列表的内置方法 append insert extend sor ...
分类:其他好文   时间:2021-01-14 10:56:42    阅读次数:0
1013.oracle中窗口函数
1.分析函数排序 ① row_number() over(partition by xxx order by xxx) 每一组里面编号,不管重复的 ② rank() over(partition by xxx order by xxx) 每一组里面编号,重复的同号,重复的后面会跳号 ③ dense_ ...
分类:数据库   时间:2021-01-14 10:47:43    阅读次数:0
Python文件I/O
文件读写包括:文件打开(open),模式(文件读(r,r+),文件写(w,w+),文件追加(a)),文件关闭(close()),字符集(encoding=UTF-8),流程管理函数with(),文件的相对路径和绝对路径 open():open打开的文件是一个流,只能被read()函数消费一次,如果需 ...
分类:编程语言   时间:2021-01-14 10:31:00    阅读次数:0
19010条   上一页 1 ... 20 21 22 23 24 ... 1901 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!