当前标签: failed
【解决】OCI runtime exec failed......executable file not found in $PATH": unknown
【问题】使用docker exec + sh进入容器时报错 [root@localhost home]# docker exec -it container-test bash OCI runtime exec failed: exec failed: container_linux.go:346: star...
2019-12-11 16:41
阅读(1258)
【已解决】ERROR: bootstrap checks failed memory locking requested for elasticsearch process but memory is not locked
官网说明: elasticsearch官网建议生产环境需要设置bootstrap.memory_lock: true 官网的解释 是:发生系统swapping的时候ES节点的性能会非常差,也会影响节点的稳定性。所以要不惜一切代价来避免swapping。swapping会导致Java GC的周期延迟从毫秒级恶化...
2019-06-12 14:49
阅读(2565)
InternalError: GPU sync failed
在jupyter notebook中用gpu跑神经网络时遇到这个问题,解决方法,重启ipython notebook即可。 难道因为开了太多python kernel导致gpu资源分配不处来了? 嗯...这应该是jupyter notebook特有的问题吧。 ...
2018-12-27 14:26
阅读(2661)
【Python】记录六:win10下的anaconda环境中启动tensorflow出错:DLL load failed
在之前的学习中已经安装并启动好了tensorflow,但一段时间没有使用之后,再次启动后却出现了报错: (tensorflow) C:\Users\Administrator>python Python 3.6.3 |Anaconda, Inc.| ( default, Nov 8 2017, 15:10:56) [...
2018-10-31 17:02
阅读(1508)
Andrid Studio Gradle sync failed: A problem occurred configuring project ':app' 解决方法
我在Android Studio中进行Gradle sync 时出现了这个错误,Android Studio 出错提示是 Gradle sync failed: A problem occurred configuring project ‘:app’,而错误日志的最后几行 是这样子的 2018-10-30 21:...
2018-10-30 21:18
阅读(2129)
Failed to execute goal org.apache.maven.plugins:maven-clean-plugin:2.6.1:clean (default-clean)
今天碰到这样一个问题,编译打包的时候报以下错误 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-clean-plugin:2.6.1:clean (default-clean) on project smart-platform: Fai...
2018-10-30 16:25
阅读(775)
Error:Failed to resolve: com.android.support:recyclerview-v7:28.0.0解决方法
在使用Android Studio的过程中需要添加依赖recyclerview,出现报错: Unable to resolve dependency for ':app@debug/compileClasspath': Could not resolve com.android.support:recyclerv...
2018-10-12 13:10
阅读(967)
[Vue warn]: Invalid prop: type check failed for prop "disabled". Expected Boolean, got String.
问题: 大致意思是prop期待传入布尔值,而你传入的却是字符串,类型错误。 解决思路: 1、首先针对该错误信息可以去GbComponentUploadDialog.vue文件中查找disabled关键字 2、然后通过查看对应的Element官网得知,设置输入框组件禁止输入的正确写法是 :disab...
2018-10-08 15:51
阅读(8953)