commit 476c431f07d7209bf439627008e55865ced553d9 Author: songyoulin <songyoulin@star-net.cn> Date: Tue Jan 9 15:41:17 2018 +0800 add EVS8000 logo targe ...
分类:
其他好文 时间:
2021-01-08 11:15:55
阅读次数:
0
读取ini文件 ini文件中可以存在以#和;作为注释的部分,不会影响读取的结果。函数如下 1 #!/usr/bin/env bash 2 # 3 # FileName : Bash读取ini文件.sh 4 # Author :hpy 5 # Date :2020年11月08日 6 # Descrip ...
分类:
其他好文 时间:
2021-01-05 11:22:25
阅读次数:
0
/** *获取对应日期的288个时刻点 two hundred and eighty-eight *@date 2017-11-24 下午4:06:14 *@author Administrator (chenrd) */ public static List<String> getTwoHundr ...
分类:
其他好文 时间:
2021-01-04 10:47:27
阅读次数:
0
计算方差特征,协方差矩阵距离的工具箱 Github地址:https://github.com/alexandrebarachant/covariancetoolbox 介绍: #### This toolbox is no longer supported by its author. The co ...
分类:
其他好文 时间:
2021-01-01 12:43:04
阅读次数:
0
1、编写脚本createuser.sh,实现如下功能:使用一个用户名做为参数,如果指定参数的用户存在,就显示其存在,否则添加之;显示添加的用户的id号等信息脚本内容:[root@CentOS8script]#vimcreateuser.sh#!/bin/bash###############################################FileName:createuser.sh
分类:
系统相关 时间:
2021-01-01 12:37:44
阅读次数:
0
python: 1 #!/usr/bin/env python 2 # -*- coding:utf-8 -*- 3 #@Time : 2020/5/3 18:44 4 #@Author: hdq 5 #@File : server.py 6 #将接口以服务器的方式暴露以提供给Java调用缩短调用时 ...
分类:
编程语言 时间:
2020-12-31 12:44:23
阅读次数:
0
文章提出了StarGAN v2,这是一种可以同时解决生成图像多样性和多域扩展性的单一框架。相比于了baselines,它取得了明显的提升。文章对StarGAN 取得的视觉质量、多样性以及可扩展性都进行了验证。 ...
分类:
其他好文 时间:
2020-12-30 10:38:06
阅读次数:
0
深入解析synchronized 1 常见的几个并发问题 1.可见性问题 案例演示:一个线程根据boolean类型的标记flag, while循环,另一个线程改变这个flag变量的值,另一个线程并不会停止循环。 /** * @author WGR * @create 2020/12/22 -- 20 ...
分类:
其他好文 时间:
2020-12-29 11:20:58
阅读次数:
0
# __author: "ZXYang"# date: 2020/12/22"""[[async]]async def: 【异步函数】async with: 【异步上下文】 对象必须符合异步上下文管理器: __aenter__ __aexit__async for: 【异步迭代】 被迭代对象必须要实 ...
分类:
Web程序 时间:
2020-12-29 11:03:57
阅读次数:
0
DelayQueue 顾名思义,它是一个延时队列 使用方式 : 假设我们生产者提交一个任务,消费者5秒钟之后才可以执行,那么我们可以把任务定义为如下格式,并实现Delayed接口,其中data是任务存储的信息。 /** * 具体的任务 * @author wangshixiang */ public ...
分类:
其他好文 时间:
2020-12-25 11:47:01
阅读次数:
0