51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#USING
记Git报错-refusing to merge unrelated histories
本地初始化了git仓库,放了一些文件进去并进行了add操作和commit提交操作; github创建了git仓库并建立了README文件; 本地仓库添加了github上的git仓库作为远程仓库,起名origin;gitremoteaddoriginhttps://github.com/tielemao/Tiel...
代码星球
·
2020-06-27
Git
报错
-refusing
to
merge
Using Yum Variables
Youcanuseandreferencethefollowingbuilt-invariablesin yum commandsandinallYumconfigurationfiles(thatis, /etc/yum.conf andall .repo ...
代码星球
·
2020-06-27
Using
Yum
Variables
oracle OPEN FOR [USING] 语句
目的: 和refcursor配合使用,可以将游标变量分配给不同的SQL(而不是在declare中把游标给定死),增加处理游标的灵活性语法:declaretypetype_cursorisrefcursor[return记录类型];--使用refcur...
代码星球
·
2020-06-22
oracle
OPEN
FOR
USING
语句
Content Negotiation using Spring MVC
TherearetwowaystogenerateoutputusingSpringMVC:YoucanusetheRESTful @ResponseBody approachandHTTPmessageconverters,typicallytoreturndata-formatslikeJSON...
代码星球
·
2020-06-21
Content
Negotiation
using
Spring
MVC
Mysql之EXPLAIN显示using filesort
1.一条SQL语句只能使用1个索引(5.0-),MySQL根据表的状态,选择一个它认为最好的索引用于优化查询2.联合索引,只能按从左到右的顺序依次使用 当EXPLAIN中的extra中出现Useingfilesort时说明语句性能不好,需要优化。Usingfilesort是一种速度很慢的外部排序。即使orde...
代码星球
·
2020-06-17
Mysql
EXPLAIN
显示
using
filesort
Using Friendly URLs in ASP.NET Web Forms
WebsitesoftenneedtogenerateSEOfriendlyURLs.InASP.NETWebFormsapplications,aURListiedtoaphysical.aspxfile.ThisdefaultmappingbetweenaURLandphysicalfilemakesitdiffi...
代码星球
·
2020-06-16
Using
Friendly
URLs
in
ASP.NET
Creating a ZIP Archive in Memory Using System.IO.Compression
Thanksto http://stackoverflow.com/a/12350106/222748 Igot:using(varmemoryStream=newMemoryStream()){using(vararchive=newZipArchive(memoryStream,ZipArchi...
代码星球
·
2020-06-16
Creating
ZIP
Archive
in
Memory
动态规划-Minimum Distance to Type a Word Using Two Fingers
2020-01-12 18:28:13问题描述: 问题求解:本题还是非常困难的,至少我在看到这个题目的时候是没有想到怎么解决的。我当时联想到的题目是那条grid走两遍的题目,那条题目也很麻烦,使用的是dp。本题最难的地方在于如何定义状态,其实本题可以看作是个路径规划问题,所以状态就是左指在的位置和右...
代码星球
·
2020-06-14
动态规划
-Minimum
Distance
to
Type
docker之container eb7a144fe8ce is using its referenced image 9b9cb95443b5
在删除docker的镜像时,明明所删除的对应的容器已经变成了Exited状态了(我以为这个状态表示关闭了),但却报了个错 这表明虽然容器已经停止了运行,但还是与镜像有所关联,所以删除不了镜像,要想删除镜像必须把与之关联的所有的容器都删除才可以,要想删除容器,必须使容器停止运行,一行命令停止所有的容...
代码星球
·
2020-06-14
docker
container
eb7a144fe8ce
is
using
Spring整合Mybaits java.sql.SQLException: Access denied for user '***'@'localhost' (using password: YES)
最近在搞Spring和Mybatis的整合,当我们在Spring里面配置数据源,而数据源是从外部的properties文件读取过来的时候就会报错java.sql.SQLException:Accessdeniedforuser'Rebirth'@'localhost'(usingpassword:YES)db.prop...
代码星球
·
2020-05-25
Spring
整合
Mybaits
java.sql.SQLException
Access
npm ERR! Refusing to delete / code EEXIST
ThiswashowIsolvedmineafter'googling'around...Navigatetothedirectoryyournodewasinstalledinrenameyour npm.cmd and npm filesTryruntheinstallati...
代码星球
·
2020-05-23
npm
ERR
Refusing
to
delete
org.mockito.exceptions.misusing.CannotStubVoidMethodWithReturnValue
错误原因:mock的时候,不能mock重载的方法解决方法:直接mock它的父类的方法org.mockito.exceptions.misusing.CannotStubVoidMethodWithReturnValue:'flush'isa*voidmethod*andit*cannot*bestubbedwitha*...
代码星球
·
2020-05-23
org.mockito.exceptions.misusing.CannotStubVoidMethodWithReturnValue
org.mockito.exceptions.misusing.MissingMethodInvocationException: when() requires an argument which has to be 'a method call on a mock'
异常原因:1.mockito的jar包中缺少方法2.mock方法的时候,返回的是对象,而对象没有重写equals方法3.mock的实例方法调用方法错误解决方法:1.用powermock中的api解决问题,在类中添加:@RunWith(PowerMockRunner.class)2.如果是第二种情况,则需要重写返回对象的...
代码星球
·
2020-05-23
org.mockito.exceptions.misusing.MissingMethodInvocationException
when
requires
an
argument
using System.Security.Cryptography
这个命名空间主要是用来进行加密的一些类。加密服务:公共网络(如Internet)不提供实体之间安全通信的方式。 此类网络上的通信易被读取或甚至被未经授权的第三方修改。 加密有助于防止数据被查看,提供检测数据是否已修改的方法,并帮助提供一种跨不安全通道安全通信的方式。 例如,数据可通过使用加...
代码星球
·
2020-05-22
using
System.Security.Cryptography
jenkins使用slave报编码错误[WARNING] File encoding has not been set, using platform encoding ANSI_X3.4-1968, i.e. build is platform dependent!
jenkins:master-slave模式:master编码配置:slave编码配置:可以看出master和slave的配置是一样的,但是当项目在slave上执行的时候,偶尔会报如下错误(偶尔的原因可能在于项目是否配置了项目插件的编码,而不是依赖于平台的编码)另外编码信息,还有这样查看: 错误信息如下:[W...
代码星球
·
2020-05-22
encoding
platform
jenkins
使用
slave
首页
上一页
...
10
11
12
13
14
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他