---
name: CFRELEASE02
director_uuid: fdd46e30-f2c5-41dc-9662-0976fdac5716
releases:
- name: cf
version: 171
meta:
environment: null
stemcell:
name: bosh-vsphere-esxi-ubuntu
version: 23...
分类:
其他好文 时间:
2014-06-19 10:04:35
阅读次数:
292
一、MySingle类
import Foundation
class MySingle{
//定义单例的属性
var name:String?
var age:Int?
var height:Double?
//定义类方法
class func shareInstance()->MySingle{
struct qzSingle...
分类:
其他好文 时间:
2014-06-16 12:04:04
阅读次数:
272
今天想通过手动的方式上传下信息到GRID CONTROL MANAGEMENT REPOSITORY里,出现如下的错误(红色部分):...
分类:
其他好文 时间:
2014-06-16 12:03:09
阅读次数:
305
1.验证非负数字//onfocusout="checkQty(this);"function checkQty(obj) { //排除0开头的非法输入 if (obj.value.length >= 2) { var a = obj.value.charAt(0); ...
分类:
Web程序 时间:
2014-06-15 23:40:34
阅读次数:
335
select * from table1 a where b=(select max(b) from table1 where a=a.a)select jy_version, member_id from mid owhere o.jy_version =(select max(p.jy_vers...
分类:
其他好文 时间:
2014-06-15 22:15:29
阅读次数:
151
题目
The count-and-say sequence is the sequence of integers beginning as follows:
1, 11, 21, 1211, 111221, ...
1 is read off as "one
1" or 11.
11 is read off as "two
1s" or 21.
21 i...
分类:
其他好文 时间:
2014-06-15 18:51:33
阅读次数:
220
OData 1-4 OData语法(上)
假设目前提供OData的服务地址是
http://localhost:9527/ODataService.svc
提供的服务内容如下所示 (提供了一个WagerInformations)
xml version="1.0" encoding="utf-8" standalone="yes" ?>
...
分类:
其他好文 时间:
2014-06-15 17:54:51
阅读次数:
1511
// enter any type data to show Binary.c
// 输入任意类型数据转换成二进制
// version: 1.0
// date: 2014.6.12
// BUG提交: yinjunwithu@outlook.com
// 缺陷: 请勿使用vc 6.0编译 因为不支持long long及unsigned long long类型
// #define _CRT_...
分类:
编程语言 时间:
2014-06-15 09:44:48
阅读次数:
414
首先通过你要下载的歌曲通过下列连接:
http://box.zhangmen.baidu.com/x?op=12&count=1&title={title}$${author}$$$$
可以获取一个xml文件通过解析xml文件就可以读取到音乐下载的地址和歌词下载的地址。
部分代码:
String title = "六月的雨";
String singer = "胡歌"; ...
分类:
移动开发 时间:
2014-06-14 07:01:42
阅读次数:
334
http://acm.hdu.edu.cn/game/entry/problem/list.php?chapterid=1§ionid=21.2.5
#include
/*
题意:找闰年。
if((i%4==0 && i%100!=0) || i%400==0)count++;
3
2005 25
1855 12
2004 10000
2108
1904
43236
*/
int ma...
分类:
其他好文 时间:
2014-06-14 06:32:08
阅读次数:
320