码迷,mamicode.com
首页 >  
搜索关键字:base station    ( 15321个结果
ubuntu server unable to resolve host
cat/etc/resolv.conf (查看resolv.conf中的内容: nameserver 是动态添加的……)#通过添加/etc/resolvconf/resolv.conf.d/base, 间接向/etc/resolv.conf添加nameserversudo vi /etc/resol...
分类:其他好文   时间:2014-07-29 21:31:42    阅读次数:210
Cacti+Nagios监控系统(一):准备工作
一、系统环境1、设置yum源(1)使用本地源挂载光驱ISO文件确认路径/media/CentOS_6.5_Final/cd/etc/yum.repos.dmvCentOS-Base.repoCentOS-Base.repo.bakviCentOS-Base.repo[base]name=Basebaseurl=file:///media/CentOS_6.5_Final/gpgcheck=0#(1检测0不检测)enabled=1#(1启动0..
分类:移动开发   时间:2014-07-29 16:02:19    阅读次数:342
深度探索C++对象模型 第五章 构造、析构、拷贝语意学
1、 const 成员函数需要吗? 尽量不要,如果存在继承,则无法预支子类是否有可能改变data member2、 pure virtual constructor 可以实现类的隐藏吗(包含data member)? 这样子类无法调用base 的构造函数对数据初始化,所以可以用protected来....
分类:编程语言   时间:2014-07-29 13:42:28    阅读次数:238
8 个必看的 Bootstrap 的 WordPress 框架【转】
#1: BoilerStrapBoilerstrap is a wordpress twenty twelve template that already include Boostrap within the code base. This reduces the integration time...
分类:其他好文   时间:2014-07-29 12:21:56    阅读次数:260
修改xubuntu14.04(同适用ubuntu)下Eclipse默认的黑色注释
终端输入:sudo gedit /usr/share/themes/Ambiance/gtk-2.0/gtkrc 第一行将看到如下内容: gtk-color-scheme = "base_color:#ffffff\nfg_color:#4c4c4c\ntooltip_fg_color:#...
分类:系统相关   时间:2014-07-29 12:21:46    阅读次数:323
UVM基础之------uvm_port_base
Port Base Classes uvm_port_component_base This class defines an interface for obtaining a port’s connectivity lists after or during the end_of_elabora...
分类:其他好文   时间:2014-07-29 11:41:26    阅读次数:485
css27】base标签带有href属性会让chrome里的svg元素url失效
一个chrome的问题,但具体原因不明。触发条件:chrome浏览器base标签里href属性有值的时候触发问题:svg里面的元素如果有用url的滤镜和模糊,则会失效,在firefox里和IE10没有发现这个问题。正常状态:有base标签且href里值为“.”的时候chrome里的状态:测试代码:c...
分类:Web程序   时间:2014-07-28 19:11:54    阅读次数:412
oracle11gR2在rhel-6.5的开机启动脚本
#!/bin/bash #chkconfig:35 98 01 #description:Startup Script for Oracle Databases #/etc/rc.d/init.d/oracle export ORACLE_BASE=/opt/oracle export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/dbhome_1 exp...
分类:数据库   时间:2014-07-28 16:59:24    阅读次数:309
Ubuntu Sublime_text3 Clang 编译的简单配置
网上关于sublime配置的不少,但有的配置编译运行居然更本没法输入!!! 现在写一个靠谱点的配置: //Ubuntu Sublime_text3 clang 编译的简单配置: { "cmd": ["clang++", "${file}", "-o", "${file_path}/${file_base_name}"], "file_regex": "^(..[^:...
分类:其他好文   时间:2014-07-28 15:55:33    阅读次数:226
Base类sizeof大小 -- C++
Base类只是一个指针,所以Base大小是4个字节。 但Base类中添加一个int a,Base的大小变成8字节。 #include #include using namespace std; class Base1 { public: Base1(){cout << "Base1" << endl;} ~Base1(){cout << "~Base1" << endl;} virtual void f(int){cout << "Base1 f(int...
分类:编程语言   时间:2014-07-28 15:47:13    阅读次数:261
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!