1 已安装了存在签名冲突的同名数据包????通过软件管理,将即将安装的XXX.apk的同名软件卸载,然后进入到安装包中,点击XXX.apk2 拷贝文件夹失败????打开设置,选择存储,找到USB计算机连接,大容量连接电脑3 NDK location not valid in preferences
分类:
移动开发 时间:
2018-08-07 16:52:31
阅读次数:
201
Given a string containing just the characters '(' and ')', find the length of the longest valid (well-formed) parentheses substring. Example 1: Exampl ...
分类:
其他好文 时间:
2018-08-04 00:37:15
阅读次数:
192
1. Reverse Nodes in k-Group Given a linked list, reverse the nodes of a linked list k at a time and return its modified list. k is a positive integer ...
分类:
其他好文 时间:
2018-08-03 23:18:45
阅读次数:
248
PS:注意啊啊啊啊啊啊,Minato是逆时针旋转,那我们为了旋转回去,应该顺时针。没注意,debug花了好长时间。check的时候是判断当前的旋转是不是与先前的矛盾,比如将黑色那块旋转,就判断旋转后是不是与红色部分矛盾。 ...
分类:
其他好文 时间:
2018-08-03 16:39:50
阅读次数:
160
cacti 的 “FATAL: Cannot connect to MySQL server on ‘localhost‘” 错误
t01ecdf087f8cd7c928.jpg?
[root@nagios cacti]# php poller.php
FATAL: Cannot connect to MySQL server on ‘localhost‘. Please make sure you have specified a valid MySQL database name in ‘include/config.php‘
当mysql中的所有配置和cacti的config.php都正确,却还是出现该错误时,那就是mysql套接字的原因了~ cacti会自动的去查找/var/lib/mysql/mysql.sock 该套接字,但是如果是源码安装的mysql,未指定套接字位置时,套接字的位置为/tmp/mysql.sock,由于cacti未找到/var/lib/mysql/mysql.sock,所以显示的是“Cannot connect to MySQL ser
分类:
数据库 时间:
2018-08-01 15:22:43
阅读次数:
210
Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. An input string is valid if: No ...
分类:
其他好文 时间:
2018-07-28 16:00:29
阅读次数:
160
spring boot在Post接受一个对象参数的时候可以使用@Valid去验证,如下代码 在创建一个User类 上面的@NotBlank和@Past就做了一个判断,如何做类似的注解用来验证数据 创建一个MyConstraint的接口 @Retention :用来说明该注解类的生命周期。它有以下三个 ...
分类:
编程语言 时间:
2018-07-27 17:26:42
阅读次数:
258
一、撰写EBS接口 通过ebs提供的inv_item_grp.update_item接口,存储过程如下: 二、个性化菜单 这里的执行过程代码为: 这里的消息调用valid_record_msg函数。valid_record_msg函数其实就是取上面存储过程返回的g_message: 这里的消息文本还 ...
分类:
其他好文 时间:
2018-07-25 13:48:08
阅读次数:
744
第一步:添加依赖: <!--jsr 303--> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> <version>1.1.0.Final</version> </dep ...
分类:
Web程序 时间:
2018-07-24 20:56:25
阅读次数:
445