码迷,mamicode.com
首页 >  
搜索关键字:system center 2012、virtual machine manager    ( 70217个结果
代理模式(Proxy)
参考资料《大话设计模式》using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ds_proxy{ class Program { static ...
分类:其他好文   时间:2014-05-10 05:15:33    阅读次数:290
java语言实现快速排序的两种方式
方法一:public class QuickSortExp1{ public static void main(String[] args){ int[] sortArray = new int[]{5,7,4,2,9,8,3,6}; System.out.println("before sor.....
分类:编程语言   时间:2014-05-10 05:08:46    阅读次数:496
java 语言实现选择排序
public class TestSelectSort{ public static void main(String[] args){ int[] sortArray = new int[]{5,7,4,2,9,8,3,6}; System.out.println("before sortin.....
分类:编程语言   时间:2014-05-10 05:04:52    阅读次数:322
机器学习入门——单变量线性回归
线性回归的概念,在高中数学书里就出现过。 给你一些样本点,如何找出一条直线,使得最逼近这些样本点。 给出一个例子:假设 x 是房子面积,y是房子价格,确定一条直线需要theta0和theta1. 给出x,我们就可以计算出房子的价格 h(x) = theta0+theta1*x 关键是如何计算出theta0和theta1,也就是如何找出这么一条直线呢? 在这里,引入一个...
分类:其他好文   时间:2014-05-10 04:36:00    阅读次数:276
Datagrid分页、排序、删除代码
WebForm1                  window.resizeTo(screen.width,screen.height-30);    HorizontalAlign="Center" DataKeyField="au_id" PageSize="3" AllowPaging="True" Width="408px"  AutoGenerateColu...
分类:其他好文   时间:2014-05-10 04:27:21    阅读次数:300
系统启动时出现 An error occurred during the file system check.
系统配置的yum源是163的镜像站,本来想用lsb_release命令查看一下系统的版本等信息,结果显示没有此命令,那就安装其相关软件包吧,用yum-yinstallredhat-lsb相依属性列出了40个软件包,本来没想安装这么多,愣了个神还没有按y键呢系统自己就莫名其妙又继续了,继续就继续吧,..
分类:其他好文   时间:2014-05-10 04:01:38    阅读次数:649
Linux System Programming 学习笔记(一) 介绍
1. Linux系统编程的三大基石:系统调用、C语言库、C编译器系统调用:内核向用户级程序提供服务的唯一接口。在i386中,用户级程序执行软件中断指令 INT n 之后切换至内核空间用户程序通过寄存器告知内核执行系统调用的所需参数2. API 和 ABIAPI:application program...
分类:系统相关   时间:2014-05-10 03:22:26    阅读次数:321
java 语言实现插入排序
public class InsertSort{ public static void main(String[] args){ int[] sortArray = new int[]{5,7,4,2,9,8,3,6}; System.out.println("before sorting ,t.....
分类:编程语言   时间:2014-05-10 03:13:15    阅读次数:342
sysctl 中文手册
SYSCTL(8) System Administration SYSCTL(8)名字 sysctl - 在运行时配置内核参数语法 sysctl [options] [variable[=value]]...
分类:其他好文   时间:2014-05-10 02:55:31    阅读次数:290
mount 中文手册
MOUNT(8) System Administration MOUNT(8)名称 mount - 挂载文件系统语法 mount [-lh...
分类:其他好文   时间:2014-05-10 02:38:33    阅读次数:506
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!