pkg embed in go embed包 提供了访问正在运行的go程序的功能。 嵌入一个文件到string import _ "embed" //go:embed hello.txt var s string print(s) 嵌入一个文件到一个字节切片 import _ "embed" //g ...
分类:
其他好文 时间:
2021-02-25 11:43:34
阅读次数:
0
一:随便创建目录dock,准备好如下文件: 二、编写Dockerfile,通过它能快速地构建docker镜像vi Dockerfile 新增如下配置 FROM centosMAINTAINER this is dock image <jsh>ADD jdk1.8.0_191 /usr/local/j ...
分类:
Web程序 时间:
2021-02-24 13:25:21
阅读次数:
0
检查文件是否存在、可读等等 File file = new File("out.txt") println file.exists() println file.canRead() 向文件写入文本 File file = new File("out.txt") file.write "First l ...
分类:
其他好文 时间:
2021-02-24 13:10:56
阅读次数:
0
step1 先下载vscode step2 安装mingw,这有一个现成的 https://blog.csdn.net/qq_29183811/article/details/109137758 step3 把mingw放在一个无中文的地址中 step4 在系统path中添加为环境变量 成果 ...
分类:
编程语言 时间:
2021-02-24 13:04:43
阅读次数:
0
using System; namespace leecode1 { class Program { static void Main(string[] args) { string outString= string.Empty; string s1 = "abc"; string s2 = "p ...
分类:
其他好文 时间:
2021-02-24 12:48:10
阅读次数:
0
简介 实现List接口 允许任何元素,包括null 大致和Vector相当,除了ArrayList不是线程安全的 size()、isEmpty()、get()、set()、iterator()、listIterator()时间复杂度为常数 add()与增加的节点数相等,增加n个,O(n) 其他操作都 ...
分类:
其他好文 时间:
2021-02-23 14:37:54
阅读次数:
0
pyspark有个bug, 虽然下面代码写了 write.mode("overwrite")但是不生效 spark.conf.set("hive.exec.dynamic.partition.mode", "constrict") db_df.repartition(1).write.mode("o ...
分类:
其他好文 时间:
2021-02-23 14:14:20
阅读次数:
0
2021年1月29日,SAP GUI 7.70发布。包含了新的Fiori 3 Quartz主题,终于和其他流行IDE一样,支持暗黑风格的编程背景了。该版本也第一次同时支持基于微软Edge / IE的HTML Control,改善了多显示器环境里的缩放效果。 下载链接如下. 更多Jerry的原创文章, ...
分类:
其他好文 时间:
2021-02-22 12:53:21
阅读次数:
0
<script src="http://pv.sohu.com/cityjson?ie=utf-8"></script> <script type="text/javascript"> document.write(returnCitySN["cip"]+','+returnCitySN["cnam ...
分类:
其他好文 时间:
2021-02-22 12:48:03
阅读次数:
0
在【设置】页面下方找到【博客侧边栏公告(支持HTML代码) (支持 JS 代码)】这项,然后加入以下代码: <script type="text/javascript" charset="utf-8" src="https://files.cnblogs.com/files/liuzhou1/L2D ...
分类:
Web程序 时间:
2021-02-22 12:09:47
阅读次数:
0