最近一直在补习c语言的底子功夫,关于正则表达式的c教程,看了man手册感觉还不错。 REGEX(3) Linux Programmer's Manual REGEX(3) NAME regcomp, regexec, regerror, regfree - POSIX regex functions ...
分类:
编程语言 时间:
2018-02-03 12:47:36
阅读次数:
161
Nginx 启动脚本 1、vim /etc/init.d/nginx #!/bin/bash # chkconfig: - 30 21 # description: http service. # Source Function Library . /etc/init.d/functions # N ...
分类:
其他好文 时间:
2018-01-31 20:24:28
阅读次数:
159
本文转载自 Caffe源码(一):math_functions 分析 math_function 定义了caffe 中用到的一些矩阵操作和数值计算的一些函数,这里以float类型为例做简单的分析 1. caffe_cpu_gemm 函数: 功能: C=alpha*A*B+beta*C A,B,C 是 ...
分类:
其他好文 时间:
2018-01-31 14:27:08
阅读次数:
208
本文概要 本文主要从以下几点阐述RDD,了解RDD 1. 什么是RDD? 2. 两种RDD创建方式 3. 向给spark传递函数Passing Functions to Spark 4. 两种操作之转换Transformations 5. 两种操作之行动Actions 6. 惰性求值 7. RDD持 ...
分类:
其他好文 时间:
2018-01-28 17:25:16
阅读次数:
201
Given the running logs of n functions that are executed in a nonpreemptive single threaded CPU, find the exclusive time of these functions. Each funct ...
分类:
其他好文 时间:
2018-01-28 11:28:45
阅读次数:
190
学习unity3d,感觉事件顺序很重要。就翻译一下官方文档吧。 Execution Order of Event Functions 事件函数的执行顺序 In Unity scripting, there are a number of event functions that get execut ...
分类:
编程语言 时间:
2018-01-26 20:52:24
阅读次数:
176
pthreads defines a set of C programming language types, functions and constants. It is implemented with a pthread.h header and a thread library. There ...
https://www.linuxquestions.org/questions/linux-newbie-8/man-pages-for-kernel-functions-758389/ 在Linux内核中执行以下两条命令即可 生的manpages在 /usr/local/man/man9中,不是 ...
分类:
系统相关 时间:
2018-01-25 11:07:08
阅读次数:
139
1、在vim中设置tab缩进为4个字符vim /etc/vimrc set tabstop=42、复制/etc/rc.d/init.d/functions文件至/tmp目录,替换/tmp/functions文件中的/etc/sysconfig/init为/var/log :%s,/etc/sysconfig/init,/var/log,g3、删除/tmp/functions文件中所有以#开头,且#
分类:
其他好文 时间:
2018-01-24 19:47:58
阅读次数:
250
map, filter, and reduce Python提供了几个函数,使得能够进行函数式编程。这些函数都拥有方便的特性,他们可以能够很方便的用python编写。 函数式编程都是关于表达式的。我们可以说,函数式编程是一种面向表达式的编程。 Python提供的面向表达式的函数有: map(aFun ...
分类:
编程语言 时间:
2018-01-24 18:03:22
阅读次数:
215