用户主题宽表 类似累积事实表 drop table if exists dwt_user_topic; create external table dwt_user_topic ( user_id string comment '用户 id', login_date_first string com ...
分类:
其他好文 时间:
2021-02-26 13:12:24
阅读次数:
0
最近在用tensorrt api实现refinedet,中间过程记录一下。主要参考的如下仓库: https://github.com/wang-xinyu/tensorrtx tensorrt api说明: https://docs.nvidia.com/deeplearning/tensorrt/ ...
最近项目里面有用到webapi接口作为回调页面,然后由页面展示回调内容 [HttpGet] [ActionName("ScanQRCodeCallBack")] public System.Net.Http.HttpResponseMessage ScanQRCodeCallBack(string ...
Map<String, Object> map = new HashMap<String, Object>(); map.put("a", "a"); map.put("b", "123"); JSONObject json = new JSONObject(map); ...
分类:
Web程序 时间:
2021-02-26 12:59:55
阅读次数:
0
timeStamp string 是 时间戳,从 1970 年 1 月 1 日 00:00:00 至今的秒数,即当前的时间 nonceStr string 是 随机字符串,长度为32个字符以下 package string 是 统一下单接口返回的 prepay_id 参数值,提交格式如:prepay ...
分类:
微信 时间:
2021-02-26 12:55:21
阅读次数:
0
其实我们可以使用匿名内部类来完成之前的那些操作: 1 package com.hw.second0224; 2 public class MyRunnableTest { 3 public static void main(String[] args) { 4 Runnable r = new Ru ...
分类:
其他好文 时间:
2021-02-25 12:16:42
阅读次数:
0
总结 插入: 插入的节点都为红色 没有根节点,连到root 其他情况插入后,重平衡 插入重平衡 根节点,调为黑色即可 插入结点的父节点为黑色,不需要重平衡 插入节点的父节点为红色 3.1. 插入节点的父节点为左节点(确定叔叔节点) 3.1.1. 插入结点为左节点 3.1.1.1. 插入节点的叔叔结点 ...
分类:
编程语言 时间:
2021-02-25 12:12:42
阅读次数:
0
String 切割成 List<String> 后,再进行其中元素的移除操作的正确姿势: (1) 按需求 进行切割; (2) 切割所得数组,转成 List 集合; (3) 用将原来的集合的数据,复制一遍到新集合中; (4) 操作 新集合,进行移除。 1 public static void main ...
分类:
其他好文 时间:
2021-02-25 12:10:38
阅读次数:
0
我们来看看线程的join方法: 如果,没有join,代码如下,那么其运行效果如下: 1 package com.hw.thread0223; 2 3 public class ThreadDemo2 { 4 public static void main(String[] args) { 5 MyT ...
分类:
编程语言 时间:
2021-02-25 12:03:38
阅读次数:
0
//数字转字符 String.fromCharCode(97);//"a" //字符转数字 'a'.charCodeAt();//97 ...
分类:
Web程序 时间:
2021-02-25 12:02:39
阅读次数:
0