*无法联网的明显表现会有: 1、yum install出现 Error: cannot find a valid baseurl or repo:base 2、ping host会提示unknown host方法: 1、打开 vi /etc/sysconfig/network-scripts/ifc... ...
分类:
Web程序 时间:
2018-04-12 17:59:11
阅读次数:
254
真机测试:能够build成功,但是 报错App installation failed A valid provisioning profile for this executable was not found。 中文意思:APP 安装失败, 这个可执行程序没有有效的秒速文件。我明明选好了 描述文 ...
分类:
移动开发 时间:
2018-04-11 18:05:15
阅读次数:
381
this.$refs[name].validate((valid) => { if (valid) { this.$Message.success('Success!'); } else { this.$Message.error('Fail!'); } }) //重置 this.$refs[nam... ...
分类:
其他好文 时间:
2018-04-10 13:35:30
阅读次数:
246
原题链接: "https://leetcode.com/problems/valid perfect square/description/" 实现如下: ...
分类:
其他好文 时间:
2018-04-09 21:10:55
阅读次数:
114
限制说明 @Null 限制只能为null @NotNull 限制必须不为null @AssertFalse 限制必须为false @AssertTrue 限制必须为true @DecimalMax(value) 限制必须为一个不大于指定值的数字 @DecimalMin(value) 限制必须为一个不 ...
分类:
编程语言 时间:
2018-04-07 17:37:28
阅读次数:
860
Introduction : 标准的数独游戏是在一个 9 X 9 的棋盘上填写 1 – 9 这 9 个数字,规则是这样的: 棋盘分成上图所示的 9 个区域(不同颜色做背景标出,每个区域是 3 X 3 的子棋盘),在每个子棋盘中填充 1 – 9 且不允许重复 ,下面简称块重复 每一行不许有重复值 ,下 ...
分类:
其他好文 时间:
2018-04-07 13:53:22
阅读次数:
317
题目描述: Given n nodes labeled from 0 to n - 1 and a list of undirected edges (each edge is a pair of nodes), write a function to check whether these edg ...
分类:
其他好文 时间:
2018-04-07 11:18:11
阅读次数:
127
一:校验 1.校验的步骤 使用JSP 303验证标准 加入Hibernate validator的jar 在springmvc配置文件中加入<mvc:annotation-driven/> 需要在bean的属性上添加@Valid注解 2.添加lib hibernate的lib 然后需要添加hiber ...
分类:
其他好文 时间:
2018-04-07 01:18:15
阅读次数:
270
1.安装samba 2.创建文件夹并修改权限 3.为samba用户添加密码(安装ubuntu会有一个用户,就是你自己如:lucy) 4.修改samba的配置文件 [www] comment = www path = /var/www writable = yes valid user = lucy ...
分类:
系统相关 时间:
2018-04-06 19:31:47
阅读次数:
174
原题链接: "https://leetcode.com/problems/valid anagram/solution/" 实现如下: Java import java.util.Arrays; / Created by clearbug on 2018/2/26. / public class S ...
分类:
其他好文 时间:
2018-04-06 14:05:21
阅读次数:
185