我复制了这个代码从似乎是各种工作dockerfiles,这里是我的: FROM ubuntu MAINTAINER Luke Crooks "luke@pumalo.org" # Update aptitude with new repo RUN apt-get update # Install s ...
分类:
其他好文 时间:
2020-06-03 21:54:36
阅读次数:
164
// // ViewController17.swift // swiftT // // Created by wjwdive on 2020/6/3. // Copyright © 2020 wjwdive. All rights reserved. // import UIKit class V ...
分类:
编程语言 时间:
2020-06-03 17:31:27
阅读次数:
76
使用Thymeleaf 有红色的波浪线,如下图所示: 解决方法: 选择File->Settings->Editor->Inspections,然后搜索thymeleaf 将Expression variables validation改为warning就可以了 ...
分类:
其他好文 时间:
2020-06-02 19:10:51
阅读次数:
93
报错信息: error C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WA ...
分类:
编程语言 时间:
2020-06-02 12:57:42
阅读次数:
79
测试Bert代码复现from bert import modelingNo module named 'bert_serving' 解决方法pip install bert-serving-server --userpip install bert-serving-client --user问题依旧 ...
分类:
其他好文 时间:
2020-05-31 21:28:44
阅读次数:
397
项目中引入swift三方库需要使用动态库,然而oc默认使用静态库,所以在将项目三方库全变为动态库后会遇到下面几个问题 1.YY系列三方库若有手动导入的,有cocoapods导入的则在编译时会包文件符号重复的错误 解决方法:要么全部手动集成,要么全部cocoapods导入 2.腾讯IMSDK中包含模拟 ...
分类:
其他好文 时间:
2020-05-31 11:13:17
阅读次数:
87
// // WARNING!! This file is overwritten by the Block Styler while generating // the automation code. Any modifications to this file will be lost afte ...
分类:
其他好文 时间:
2020-05-30 21:56:21
阅读次数:
100
先向大家展示以下困扰了我好久的问题 C:\Users\caiya>pip install pipenv WARNING: pip is being invoked by an old script wrapper. This will fail in a future version of pip. ...
分类:
编程语言 时间:
2020-05-30 16:02:46
阅读次数:
794
TCP客户端 W5500的TCP客户端百度到处都有,而且都是一个模子 简而言之:就是这么写,这么用 上菜 /** * @brief TCP客户端 * @param None * @retval None * @warning None * @example **/ void do_tcpc(void ...
分类:
其他好文 时间:
2020-05-30 12:29:50
阅读次数:
129
使用下面的terminal指令,可以搜索出工程里面用到了UIWebView的所有代码 grep -r UIWebView [/Path to project] 比如 grep -r UIWebView /XXX/XXX/Desktop/Projects/MyProject 从搜索出来的结果里逐条查看 ...