码迷,mamicode.com
首页 >  
搜索关键字:named    ( 2321个结果
【SICP练习】152 练习4.8
练习4-8原文Exercise 4.8. “Named let” is a variant of let that has the form (let )The and are just as in ordinary let, except that is bound within to a procedure whose body is a...
分类:其他好文   时间:2015-04-01 11:30:09    阅读次数:149
rabbitmq使用方法(二)
Work QueuesIn thefirst tutorialwe wrote programs to send and receive messages from a named queue. In this one we'll create aWork Queuethat will be use...
分类:其他好文   时间:2015-03-31 23:58:50    阅读次数:474
grep常用用法
grep简介正如linux的man文件中所描述的那样: grep searches the named input FILEs (or standard input if no files are named, or if a single hyphen-minus (-) is given as file name) for lines containing a match to...
分类:其他好文   时间:2015-03-31 22:21:16    阅读次数:167
初学django--构建一个Blog
在用django创建blog过程中出现了一些问题,在网上查找后现整理如下:错误1:在执行./manage.py syncdb命令后出现 no model named blog:原因: setting.py 中INSTALLED_APP 项原写入的是mysite.blog, 修改为blog即可;错误2...
分类:其他好文   时间:2015-03-31 21:41:33    阅读次数:158
管道和命名管道
命名管道(named PIPE)由于基于fork机制,所以管道只能用于父进程和子进程之间,或者拥有相同祖先的两个子进程之间 (有亲缘关系的进程之间)。为了解决这一问题,Linux提供了FIFO方式连接进程。FIFO又叫做命名管道(named PIPE)。FIFO (First in, First o...
分类:其他好文   时间:2015-03-31 19:34:35    阅读次数:134
3.0 Basic Usage of Class
Well, this week I tried to use some class things.Following areparts of my exercising codes.Definig my class named Time //note that cnt is a static ...
分类:其他好文   时间:2015-03-30 23:01:22    阅读次数:164
codeforces 342C Cupboard and Balloons(公式题)
转载请注明出处:http://www.cnblogs.com/fraud/ ——by fraudC. Cupboard and BalloonsA girl named Xenia has a cupboard that looks like an arc from ahead. The arc i...
分类:其他好文   时间:2015-03-30 01:23:02    阅读次数:153
编译安装bind及SysV服务脚本编写
1、解析程序包#wgethttp://ftp.isc.org/isc/bind9/9.7.3/bind-9.7.3.tar.gz #tarxvfbind-9.7.3.tar.gz #cdbind-9.7.3.tar.gz #./configure--prefix=/usr/local/bind9--sysconfdir=/etc/named/--disable-ipv6--enable-threads--enable-epoll--disable-chroot #make #makeinstall..
分类:其他好文   时间:2015-03-28 19:05:38    阅读次数:414
ORACLE创建Java过程
?? STEP1: CREATE OR REPLACE  JAVA SOURCE NAMED "Employee" AS import java.sql.*; import oracle.jdbc.*; public class Employee{     public static void getItEmps(){      Connection conn = nu...
分类:数据库   时间:2015-03-28 17:18:01    阅读次数:155
【C++】new和delete表达式
new和delete表达式可以用来动态创建和释放单个对象,也可以用来动态创建和释放动态数组。 定义变量时,必须指定其数据类型和名字。而动态创建对象时,只需指定其数据类型,而不必为该对象命名。new表达式返回指向新创建对象的指针,我们通过该指针访问对象: int i; //named, uniniti...
分类:编程语言   时间:2015-03-28 10:07:20    阅读次数:146
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!