码迷,mamicode.com
首页 >  
搜索关键字:failed to push some refs to    ( 25890个结果
CVE-2020-16898 "Bad Neighbor " Windows TCP/IP远程代码执行漏洞学习
一、该漏洞和router advertisement相关,先来学习一下相关协议; IPV4时代,如果想探测其他主机是否存活,要么用ARP(一般是局域内网),要么用ICMP(一般是公网)。但是在IPV6时代改用了Neighbor Discovery Protocol(简称NDP),该协议定义了使用IC ...
分类:Windows程序   时间:2020-11-25 12:46:37    阅读次数:19
分析kernel.dll函数CreateRemoteThread进0环
CreateRemoteThread 部分源码 push edi ; CreateSuspended lea ecx, [ebp+UserStack] push ecx ; UserStack lea ecx, [ebp+ThreadContext] push ecx ; ThreadContext ...
分类:其他好文   时间:2020-11-25 12:38:51    阅读次数:7
git push每次都需要输入帐号密码的解决方法
有时候git明明已经配置了用户名和密码,但在项目中,有时候pull和push的时候却每次都要提示输入用户名和密码,很浪费时间。 解决办法 在git bash中输入: git config --global credential.helper store 执行完上面的git命令后,在命令行正常执行pu ...
分类:其他好文   时间:2020-11-25 12:33:41    阅读次数:2
Request请求:Failed to execute 'setRequestHeader' on 'XMLHttpRequest': String contains non ISO-8859-1 code point.问题解决
一、问题如下: 1、报错信息: Uncaught (in promise) TypeError: Failed to execute 'setRequestHeader' on 'XMLHttpRequest': String contains non ISO-8859-1 code point. ...
分类:Web程序   时间:2020-11-25 12:12:02    阅读次数:10
perl 子函数传入多个数组
perl中的引用和C中的指针一样,用"\"标识,引用后可使用符号“->”取值。解引用则在对应的数据类型前加$,@ 或%。 这里这里用两数组求和做示例,引用传递的子函数的用法。 1 use strict; 2 3 my @s1=(1,13,4,25,6,27,8,22); 4 my @s2=(11,2 ...
分类:编程语言   时间:2020-11-24 12:43:27    阅读次数:7
Module not found: Error: Can't resolve '../../../public/ueditor/lang/zh-cn/zh-cn.js'
ERROR Failed to compile with 4 errors These relative modules were not found: * ../../../public/ueditor/lang/zh-cn/zh-cn.js in ./node_modules/babel-loa ...
分类:Web程序   时间:2020-11-23 12:09:09    阅读次数:11
RabbitMQ的个人爬坑(一)
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-operation (NOP) logger implementation SLF4J: See http://www.s ...
分类:其他好文   时间:2020-11-21 12:42:43    阅读次数:29
P3899 [湖南集训]谈笑风生
###P3899 [湖南集训]谈笑风生 二维数点问题,主席树模板(两种写法 #include<bits/stdc++.h> #define IL inline #define LL long long #define pb push_back using namespace std; const i ...
分类:其他好文   时间:2020-11-21 12:15:18    阅读次数:7
git 回滚版本
方法一、(回滚到原来的版本) 1、在gitlab上找到要恢复的版本号,如: bbdca96 2、在客户端执行如下命令(执行前,先将本地代码切换到对应分支): git reset --hard bbdca96 3、强制push到对应的远程分支(如提交到develop分支) git push -f -u ...
分类:其他好文   时间:2020-11-21 12:13:35    阅读次数:5
树套树
树套树 一种思想,就是一棵树的节点是另一颗树。 在外面的叫外层树,在里面的叫内层树。 外层树一般是, 树状数组 , 线段树 内层树一般是 平衡树 , STL , 线段树 线段树套STL /* * @Author: zhl * @Date: 2020-11-16 12:50:32 */ #includ ...
分类:其他好文   时间:2020-11-20 12:20:30    阅读次数:24
25890条   上一页 1 ... 46 47 48 49 50 ... 2589 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!