码迷,mamicode.com
首页 >  
搜索关键字:unable to create symlink    ( 32242个结果
Retrofit LiveDataCallAdapterFactory
retrofit可以访问网络后自动解析成对象,很丝滑,应该都已经体验过了,而要使用这个功能也很简单,addConverterFactory(GsonConverterFactory.create()) ,添加了一个gson解析工厂,又或者搭配rxjava的 RxJava2CallAdapterFac ...
分类:其他好文   时间:2021-01-08 10:56:49    阅读次数:0
Error response from daemon: conflict: unable to remove repository Error response from daemon: conflict: unable to remove repository
1问题 在尝试删除docker镜像时,出现了报错: Error response from daemon: conflict: unable to remove repository 使用的模版命令: docker rmi 镜像id 2.缘由 查询资料发现说是这个镜像在容器里运行过,于是就占这镜像, ...
分类:其他好文   时间:2021-01-08 10:30:27    阅读次数:0
mysql数据类型和约束条件
上周内容回顾 库的增删改查 show databases; show create databese db; create database db1; alter datebase charset='gbk' drop database db1; 表的增删改查 # 操作表之前一定要明确库 use d ...
分类:数据库   时间:2021-01-07 12:14:11    阅读次数:0
mysql
DDL:操作数据库和表 drop alter create DML:增删改数据库表的记录 insert update delete DQL:查询表中的记录 select DCL:管理用户、授权 grant 查询 查询表中的所有的行和列的数据 selectfrom 表名; selectfrom stu ...
分类:数据库   时间:2021-01-07 12:01:12    阅读次数:0
kunbernetls部署单节点mongodb
vim mongodb.yaml apiVersion: apps/v1 kind: Deployment metadata: name: mongodb labels: app: mongodb spec: replicas: 1 selector: matchLabels: app: mongo ...
分类:数据库   时间:2021-01-07 11:58:16    阅读次数:0
转:ThreadLocal系列(二)-InheritableThreadLocal的使用及原理解析
转:https://www.cnblogs.com/hama1993/p/10400265.html 一、基本使用 我们继续来看之前写的例子: private static ThreadLocal tl = new ThreadLocal<>(); public static void main(S ...
分类:其他好文   时间:2021-01-06 12:29:40    阅读次数:0
数据库的查询
1.构造数据 为了操作方便, 先构造以下数据 1.1 学生表 create table `student` ( `id` int unsigned primary key auto_increment, `name` char(32) not null unique, `sex` enum('男', ...
分类:数据库   时间:2021-01-06 12:13:37    阅读次数:0
react-native 运行error: protocol fault (couldn't read status): Connection reset by peer
提示:Unable to start adb server: error: protocol fault (couldn't read status): Connection reset by peer问题原因:大多数情况是5037端口被占用。5037为adb默认端口。解决办法:查看哪个程序占用了a ...
分类:其他好文   时间:2021-01-06 12:06:11    阅读次数:0
Error:Unable to locate adb within SDK in Android Studio
https://stackoverflow.com/questions/27301960/errorunable-to-locate-adb-within-sdk-in-android-studio 注意在File->project structure中选择sdk等 Finally after se ...
分类:移动开发   时间:2021-01-06 11:54:51    阅读次数:0
vue项目搭建
一、安装nonde环境 1.下载地址为https://nodejs.org/en/ 2.检查是否安装成功,如果输出版本号就说明我们安装node环境成功 3.为了提高我们的效率,可以使用淘宝的镜像 二、搭建vue项目 1.安装vue-cli npm install -g @vue/cli 2.进入你的 ...
分类:其他好文   时间:2021-01-06 11:44:10    阅读次数:0
32242条   上一页 1 ... 47 48 49 50 51 ... 3225 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!