码迷,mamicode.com
首页 >  
搜索关键字:variables    ( 2229个结果
block 解析 - 静态变量
静态变量上一篇我们了解了block全局变量的使用,静态变量和全局变量一样,可以直接在block内部使用,也可以在block内部修改引用官方文档:Global variables are accessible, including static variables that exist within ...
分类:其他好文   时间:2014-07-29 10:25:08    阅读次数:330
block 解析 - 局部变量
局部变量block内使用局部变量,一般都是截获变量(只读),截获离block初始化最近的一次的值。引用官方文档:Stack (non-static) variables local to the enclosing lexical scope are captured asconst variabl...
分类:其他好文   时间:2014-07-28 19:15:34    阅读次数:302
【SAS BASE】处理数据集
本节内容包括:SET语句、MERGE语句、UPDATA语句、OUTPUT语句、TRANSPOSE语句和data-set选项及SAS Automatic Variables一、SET语句(堆叠功能)用SET语句修改数据集DATA Friday; SET Sales;/SET 'C:\MySASL...
分类:其他好文   时间:2014-07-25 16:31:21    阅读次数:255
d4_Pointers(指针)
Pointers * Pointers are variables * Pointers store only address of the memory location. they do not store a value. * Pointers are declared like :- int...
分类:其他好文   时间:2014-07-24 12:09:05    阅读次数:288
Mysql事件的创建和使用
1、查看事件是否开启SHOW VARIABLES LIKE 'event_scheduler';2、开启事件SET GLOBAL event_scheduler = ON; 3、创建事件DELIMITER $$-- SET GLOBAL event_scheduler = ON$$ -- r...
分类:数据库   时间:2014-07-23 14:50:46    阅读次数:244
dstat mysql5-conn
在/usr/shared/dstat目录下dstat_mysql5_conn.py中的部分源代码c = self.db.cursor()c.execute("""show global variables like 'max_connections';""")max = c.fetchone()c....
分类:数据库   时间:2014-07-22 22:51:36    阅读次数:252
[深度学习]Python/Theano实现逻辑回归网络的代码分析
2014-07-2110:28:34首先PO上主要Python代码(2.7), 这个代码在Deep Learning上可以找到. 1 # allocate symbolic variables for the data 2 index = T.lscalar() # index to...
分类:编程语言   时间:2014-07-22 00:29:38    阅读次数:352
Tuple assignment
It is often useful to swap the values of two variables. With conventional assignments, you have to use a temporary variable. This solution is cumberso...
分类:其他好文   时间:2014-07-19 18:32:06    阅读次数:243
Less 文档查看心得
1,函数 color 颜色运算,常用的两个函数 lighten(亮度)和darken(变暗); 如: .class{ color: lighten(red,10%); }可使红色变亮10%。2,变量 Variables URLs的使用, @images: "../img"; body{...
分类:其他好文   时间:2014-07-19 17:31:52    阅读次数:315
MySQL 物理文件
1 、参数文件及mysql参数 查看mysql 的 my.cnf 配置文件位置命令:>./bin/mysql --help | grep my.cnf 查看mysql 的参数设置命令:mysql>show variables --显示所有参数; // show variables like 'log...
分类:数据库   时间:2014-07-18 14:24:56    阅读次数:342
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!