码迷,mamicode.com
首页 >  
搜索关键字:magical record    ( 2306个结果
记录类型(学习笔记)
定义记录类型TYPE 类型名称 IS RECORD (成员名称 数据类型 [[NOT NULL] [:= 默认值] 表达式] ,...成员名称 数据类型 [[NOT NULL] [:= 默认值] 表达式]) ; 示例一、记录类型接收查询返回结果--使用记录类型接收查询返回结果DECLARE V_E....
分类:其他好文   时间:2015-01-13 01:23:40    阅读次数:140
网络流量监控shell脚本
网络收发包计数记录在 /proc/net/dev 文件中, 要取得流量, 只需要读取里面的内容两次, 然后相减, 再除以时间间隔即可.#!/bin/bash#Usage1,record in file: netmonitor #Usage2,print on terminal: netmo...
分类:系统相关   时间:2015-01-12 22:10:09    阅读次数:309
Python操作MySQL
# coding=utf-import MySQLdb#查询数量 def Count(cur):count=cur.execute( 'select * from Student' )print 'there has %s rows record' % count#插入 def Insert(cur...
分类:数据库   时间:2015-01-12 14:22:58    阅读次数:160
erlang的map基本使用
maps 适用于需要在运行时改变数据结构(record则不行)的场景,可以动态增加key 数据量不宜过大,具体多大没有实际数据, maps from_list 如果list表很长,则相应的耗时时间会很长,此时最好用lists模块。 由于map是动态结构,速度上必然无法匹敌record。...
分类:其他好文   时间:2015-01-12 12:47:00    阅读次数:167
delphi函数返回多个值的应用
方法1:function test(var a,b,c:integer):integer;beginend;方法2:type info = record name:string; age : integer; end;function test():info;v...
分类:Windows程序   时间:2015-01-12 00:20:47    阅读次数:186
Spark技术内幕: 如何解决Shuffle Write一定要落盘的问题?
在Spark 0.6和0.7时,Shuffle的结果都需要先存储到内存中(有可能要写入磁盘),因此对于大数据量的情况下,发生GC和OOM的概率非常大。因此在Spark 0.8的时候,Shuffle的每个record都会直接写入磁盘。一直到1.2.0,Shuffle的数据是一定会写入本地文件系统的,那么对于性能要求非常苛刻的用户,如何获得更好的性能呢?...
分类:其他好文   时间:2015-01-11 16:18:22    阅读次数:149
gcc源代码分析,build_pointer_type ()函数分析
function = build (ADDR_EXPR, build_pointer_type (TREE_TYPE (function)),             function); 继续分析上篇文章的这句。 /* Constructors for pointer, array and function types.    (RECORD_TYPE, UNION_TY...
分类:其他好文   时间:2015-01-11 11:04:20    阅读次数:177
SSL/TLS的原理以及互联网究竟是如何工作的(3)—TLS的专场
首先,我的大名叫做Transport Layer Security Protocol(传输层安全协议),是SSL的升级版。实际上我的左手和右手都是能用的,左手叫Record Layer(记录层),右手叫Handshake Layer(握手层).........
分类:其他好文   时间:2015-01-11 11:04:10    阅读次数:452
BestCoder25 1001.Harry and Magical Computer(hdu 5154) 解题报告
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5154题目意思:有 n 门 processes(编号依次为1,2,...,n),然后给出 m 种关系: a,b。表示 process b 要在 process a 之前完成。问经过 m 种关系之后,有没有...
分类:其他好文   时间:2015-01-11 00:53:25    阅读次数:238
html5 css3表单
New Document div{ margin:20px; } Oscar Redemption Here`s your chance to set the record straight:tell us what year the wrong film got nominated,and which film shouldhave received a n...
分类:Web程序   时间:2015-01-10 21:06:49    阅读次数:135
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!