码迷,mamicode.com
首页 >  
搜索关键字:out of sync    ( 40306个结果
Java复习第四天---IO流
File类测试   //根据指定的文件名和路径创建File对象 File file = new File("myFile.txt"); //file.exists();检测文件是否存在 boolean exists = file.exists(); System.out.println(exists); //按照file对象指定的路径和文件名创建一个新的文件 ...
分类:编程语言   时间:2014-06-05 09:31:59    阅读次数:293
hibernate 的 org.dom4j.DocumentException: Connection timed out 问题
hibbernate的异常的一种情况 org.dom4j.DocumentException: Connection timed out Connection timed out: connect Nested exception: Connection timed out: connect 出现这个异常的原因之一是读取配置文件超时。通常是在读...
分类:系统相关   时间:2014-06-05 08:52:44    阅读次数:371
Java复习第三天---集合框架的相关知识
集合框架总览: Collection 接口常用方法 //1.add()向集合中添加数据 c.add(apple01); c.add(apple02); c.add(apple03); c.add(apple04); c.add(apple05); //2.isEmepty()检测当前集合是否为空 boolean empty = c.isEmpty(); System.out.println("i...
分类:编程语言   时间:2014-06-05 08:52:09    阅读次数:323
linux配置nfs步骤及心得
这节我们介绍NFS的相关概念,以及如何配置NFS和在客户端中查看NFS。   NFS的配置过程很简单。在服务器端中编辑/etc/exports文件,添加如下内容:     /home/nfs-share    192.168.1.122 *(rw,sync)  第一项是要共享的目录,后者为共享的配置参数一般为:*(rw,sync,no_root_squash,no_all_squas...
分类:系统相关   时间:2014-06-05 06:13:16    阅读次数:459
http://photo-sync.herokuapp.com/photos获取图片信息
http://photo-sync.herokuapp.com/photos获取图片信息 最开始想的是用jquery ajax实现,用的传统的方法总是readystatus 等等都返回0 ,,百度怎么都不行,,,好吧,现在这么搞可以,之前不知道,现在mark一下$.ajax({ url: "http://photo-sync.herokuapp.com/photos",}).done(functi...
分类:移动开发   时间:2014-06-05 05:33:38    阅读次数:204
leetcode:String to Integer (atoi)
问题 输入:一个表示数字的字符串,需要考虑不同的输入形式。 输出:对应的整数 特殊输入形式: 1.输入开始几个字符为空格 2.考虑正负号 3.数字字符不属于[0,9]时,输出当前结果 4.字符串代表的数字大于INT_MAX或者小于INT_MIN时输出INT_MAX或者INT_MIN。 class Solution { // out of range...
分类:其他好文   时间:2014-06-03 06:30:14    阅读次数:314
TI_DSP_corePac_带宽管理 - 2(举例)
The master DMA arbitration control register (MDMAARBU) controls the priority levels of MDMA requests going out of CorePac. It controls the priority levels used by the L2 memory controller when sendi...
分类:其他好文   时间:2014-06-03 02:39:09    阅读次数:311
JSP简介
(1)jsp是什么? java server page,java服务器端页面技术。其主要作用在服务器端动态生成页面,其组成java代码和html. (2)jsp的组成? A. html:包括css/js B.java代码 java代码段 表达式 jsp声明: C.jsp隐含对象 对象不需要创建,可以直接调用。 out、 request、 response、 session、 ...
分类:Web程序   时间:2014-06-03 02:36:43    阅读次数:378
leetCode解题报告5道题(九)
题目一:CombinationsGiven two integersnandk, return all possible combinations ofknumbers out of 1 ...n.For example,Ifn= 4 andk= 2, a solution is:[ [2,4],....
分类:其他好文   时间:2014-05-31 20:01:02    阅读次数:455
(备忘)利用openssl完成自签发证书步骤--精华版
#建立 CA 目录结构mkdir -p ./demoCA/{private,newcerts}touch ./demoCA/index.txtecho 01 > ./demoCA/serial#生成 CA 的 RSA 密钥对openssl genrsa -des3 -out ./demoCA/pri...
分类:其他好文   时间:2014-05-31 08:16:41    阅读次数:252
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!