git更新代码失败 检查setting配置,发现路径配置错误 找对git的安装目录,修改路径后保存即可 ...
分类:
其他好文 时间:
2017-08-24 23:55:51
阅读次数:
3973
问题描述:当使用postman获取jenkins的json数据的时候,会返回标题中描述的错误 如下图: 将圈中的框,取消勾选! 再次运行正常! 这时候修改jenkins如下: ...
分类:
其他好文 时间:
2017-08-24 21:27:21
阅读次数:
628
This answer is so awesome!! ...
分类:
其他好文 时间:
2017-08-21 15:44:21
阅读次数:
132
描述:9*9的方格,每一行每一列必须是1~9,每一个单元的3*3方格必须是1~9 ...
分类:
其他好文 时间:
2017-08-20 10:16:42
阅读次数:
131
一. 题目描写叙述 Given a binary tree, determine if it is a valid binary search tree (BST). Assume a BST is defined as follows: The left subtree of a node con ...
分类:
其他好文 时间:
2017-08-19 22:28:34
阅读次数:
203
以下的代码片段输出是什么?为什么? char *ptr; if((ptr = (char *)malloc(0))==NULL) puts("Got a null pointer"); else puts("Got a valid pointer"); 解析:......有益把0值传给了函数mall ...
分类:
其他好文 时间:
2017-08-19 18:38:55
阅读次数:
165
#include<stdio.h> #include<string.h> #include<iostream> #include<algorithm> using namespace std; int mp[10][10],row[10][10],col[10][10],grid[10][10]; ...
分类:
其他好文 时间:
2017-08-18 13:39:35
阅读次数:
213
先上英文文档: Convert an integer number to a binary string prefixed with “0b”. The result is a valid Python expression. If x is not a Python int object, it ...
分类:
编程语言 时间:
2017-08-18 00:02:19
阅读次数:
316
迭代器:可在内部迭代自己的外部迭代器或类的接口。 Iterator::current/key/next/rewind/valid. 用foreach调用迭代器方法时的顺序: 聚合式迭代器:创建外部迭代器的接口。 数组式访问: ArrayAccess::offsetExists 检测一个偏移位置是否存 ...
分类:
其他好文 时间:
2017-08-17 10:49:20
阅读次数:
163
出现这种问题的原因是由于访问的 URL地址为https或存在其跳转地址为https。 首先单纯使用idhttp是只能访问http,而https则需要搭配IdSSLIOHandlerSocketOpenSSL来实现对https的访问支持,当然还需要在系统目录或编译目标程序的同目录下有ssleay32. ...