Error: Flash Download failed - "Cortex-M3"
分类:
其他好文 时间:
2020-04-23 16:13:24
阅读次数:
53
需求:删除 /home/file/ 目录下10天之前生成的txt类型的文件find /home/file/ -ctime +10 -name "*.txt" -print | xargs rm -f或者find /home/file/ -ctime +10 -name "*.txt" -delete ...
分类:
系统相关 时间:
2020-04-23 11:46:51
阅读次数:
703
原因:当未经身份验证的请求被拒绝权限时,可能有两个不同的错误代码可能适用。 HTTP 401未经授权 HTTP 403权限被拒绝 #settings.pyREST_FRAMEWORK = { 'DEFAULT_AUTHENTICATION_CLASSES': [ 'rest_framework.au ...
分类:
其他好文 时间:
2020-04-23 09:15:55
阅读次数:
61
今天在IDEA中打包Maven项目安装到本地仓库时报错 Failed to execute goal org.apache.maven.plugins:maven-install-plugin:2.4:install (default-cli) on project api: The packagi ...
分类:
其他好文 时间:
2020-04-23 01:07:31
阅读次数:
87
题目描述 Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree. According to the definition of LCA on Wikipedia: “The ...
分类:
其他好文 时间:
2020-04-23 00:51:39
阅读次数:
73
1 class Twitter 2 { 3 public: 4 unordered_map<int,priority_queue<pair<int,int>,vector<pair<int,int>>,greater<pair<int,int>>>> u;//用户 -> (出现的次数,推文) 小根堆 ...
分类:
其他好文 时间:
2020-04-22 23:00:19
阅读次数:
114
Leetcode 560 Subarry Sum Equals K Given an array of integers and an integer k, you need to find the total number of continuous subarrays whose sum equ ...
分类:
其他好文 时间:
2020-04-22 20:19:06
阅读次数:
65
索引器&集合配合使用,实现使用[]获取数据的目的 示例代码 "IndexerAndCollection" ...
分类:
其他好文 时间:
2020-04-22 20:15:04
阅读次数:
68
robotframework执行UI自动化时报错,查看日志显示Parent suite setup failed: Variable '${browser}' not found. Did you mean: ${blowser} 起初一直在相关库是否导进来等方面定位问题,最后发现是引用变量时写的是 ...
分类:
其他好文 时间:
2020-04-22 16:50:41
阅读次数:
217
pandas.read_csv() 报错 OSError: Initializing from file failed,一般由两种情况引起:一种是函数参数为路径而非文件名称,另一种是函数参数带有中文。 对于第一种情况很简单,原因就是没有把文件名称放到路径的后面,把文件名称添加到路径后面就可以了。还可 ...
分类:
其他好文 时间:
2020-04-22 13:38:52
阅读次数:
65