码迷,mamicode.com
首页 >  
搜索关键字:single    ( 5020个结果
html - input
1.文件上传数量 多文件上传:<input type="file" multiple> 单文件上传:<input type="file" single> 2.文件上传类型限制 1.图像文件(accept="/image/*") 2.其他格式文件 3.上传文件数组Filelist filelist 是 ...
分类:Web程序   时间:2016-10-05 10:51:17    阅读次数:187
leetcode136 利用异或运算找不同的元素
Given an array of integers, every element appears twice except for one. Find that single one. Note: Your algorithm should have a linear runtime comple ...
分类:其他好文   时间:2016-10-03 00:11:18    阅读次数:196
Add Two Numbers
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single ...
分类:其他好文   时间:2016-10-02 21:40:16    阅读次数:127
[LeetCode #10] Regular Expression Matching
Implement regular expression matching with support for '.' and '*'. '.' Matches any single character. '*' Matches zero or more of the preceding elemen ...
分类:其他好文   时间:2016-10-02 00:28:27    阅读次数:185
单例模式之懒汉的并发问题
饿汉模式: class Single{ private staitc final Single s= new Single(); private Single(){} public static Single getSingle(){ return s; } } 懒汉模式: class Single ...
分类:其他好文   时间:2016-10-01 19:51:52    阅读次数:239
No.010:Regular Expression Matching
题目: Implement regular expression matching with support for '.' and '*'.'.' Matches any single character.'*' Matches zero or more of the preceding elem ...
分类:其他好文   时间:2016-09-30 15:15:37    阅读次数:159
OV7725学习
The OV7725 sensor is a high performance 1/4-inch, single-chip VGA camera and image processor in a small footprint package. Operating at full functiona ...
分类:其他好文   时间:2016-09-29 02:13:33    阅读次数:257
演示一下在MySQL 5.7下搭建多主一从的过程
下面演示一下在MySQL5.7下搭建多主一从的过程:实验环境:Master_1:192.168.10.128Master_2:192.168.10.129Slave_3:192.168.10.130一、分别在Master_1和Master_2上导出需要同步的数据库:在Master_1:[root@Master_1mysql]#mysqldump-uroot-p123456--master-data=2--single-tra..
分类:数据库   时间:2016-09-28 16:53:54    阅读次数:270
第二课——解析mysqldump命令和mysqlbinlog命令+innodb和Myisam存储引擎简介
环境说明 mysql版本:Percona-Server-5.6.30 IP:10.7.15.167 端口:3306 安装目录:/httx/run/mysql 数据目录:/httx/run/mysql/data/ mysqldump的常用参数 mysqldump测试——–研究加–single_tran... ...
分类:数据库   时间:2016-09-27 08:03:57    阅读次数:364
多线程下单例模式:懒加载(延迟加载)和即时加载
在开发中,如果某个实例的创建需要消耗很多系统资源,那么我们通常会使用惰性加载机制,也就是说只有当使用到这个实例的时候才会创建这个实例,这个好处在单例模式中得到了广泛应用。这个机制在single-threaded环境下的实现非常简单,然而在multi-threaded环境下却存在隐患。本文重点介绍惰性 ...
分类:编程语言   时间:2016-09-25 18:46:13    阅读次数:134
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!