上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 157 下一页
摘要: 生成镜像 1. U-boot 生成u-boot.bin文件 (1) Makefile ifeq ($(ARCH),arm) CROSS_COMPILE = endif 改动为 ifeq ($(ARCH),arm) CROSS_COMPILE =/opt/crosstool/gcc-3.4.5-gli 阅读全文
posted @ 2017-07-19 13:16 claireyuancy 阅读(141) 评论(0) 推荐(0) 编辑
摘要: javascript中提供了构造函数。可以方便的创建对象。典型的构造函数例如以下: function Person(name, age) { this.name = name; this.age = age; this.say = function () { return this.name + ' 阅读全文
posted @ 2017-07-19 12:00 claireyuancy 阅读(262) 评论(0) 推荐(0) 编辑
摘要: Subscriber和Observer的差别 Subscriber和Observer不仅基本使用方式一样。实质上,在 RxJava 的 subscribe 过程中。Observer 也总是会先被转换成一个 Subscriber 再使用。所以假设你仅仅想使用基本功能。选择 Observer 和 Sub 阅读全文
posted @ 2017-07-19 10:24 claireyuancy 阅读(148) 评论(0) 推荐(0) 编辑
摘要: #include "stdio.h" #include "string.h" #include "ctype.h" #include "stdlib.h" #include "io.h" #include "math.h" #include "time.h" #define OK 1 #define 阅读全文
posted @ 2017-07-19 09:30 claireyuancy 阅读(682) 评论(0) 推荐(0) 编辑
摘要: click here~~ **B. Inventory** time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard output Companies alway 阅读全文
posted @ 2017-07-19 08:55 claireyuancy 阅读(180) 评论(0) 推荐(0) 编辑
摘要: CentOS安装Puppet 环境介绍:centos6.4x64 採用CentOS-6.4-x86_64-minimal.iso最小化安装 puppet版本号3.6.2。ruby1.8.7,facter1.7.1 Puppet 要求全部机器有完整的域名(FQDN),假设没有 DNS server提供 阅读全文
posted @ 2017-07-18 21:38 claireyuancy 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 我通过java代码去获得用户的openid,一直报redirect_uri。我页面代码的链接为: https://open.weixin.qq.com/connect/oauth2/authorize? appid=APPID& redirect_uri=ENCODE(URL)& response_ 阅读全文
posted @ 2017-07-18 20:10 claireyuancy 阅读(7567) 评论(0) 推荐(0) 编辑
摘要: Spark MLlib Deep Learning Deep Belief Network (深度学习-深度信念网络)2.1 http://blog.csdn.net/sunbow0 Spark MLlib Deep Learning工具箱,是依据现有深度学习教程《UFLDL教程》中的算法。在Spa 阅读全文
posted @ 2017-07-18 19:16 claireyuancy 阅读(298) 评论(0) 推荐(0) 编辑
摘要: Description Dearboy was so busy recently that now he has piles of clothes to wash. Luckily, he has a beautiful and hard-working girlfriend to help him 阅读全文
posted @ 2017-07-18 17:11 claireyuancy 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 这一章节我们通过讨论装载因子与性能,再来介绍HashMap的工作原理。1.什么是装载因子?他有什么作用?以下的代码就是装载因子 /** * The load factor used when none specified in constructor. */ static final float D 阅读全文
posted @ 2017-07-18 15:45 claireyuancy 阅读(179) 评论(0) 推荐(0) 编辑
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 157 下一页