码迷,mamicode.com
首页 >  
搜索关键字:chan    ( 331个结果
[Golong]学习笔记(一) 基础知识
Go编程基础 Go的内置关键字(25个) 不多 break default func interface select case defer go map struct chan else goto package switch const fallthrough if range type continute for import return var Go的注释方...
分类:其他好文   时间:2014-08-06 01:56:50    阅读次数:313
STM32-移植FATFS的NANDFLASH驱动
一,建立工程FATFS源码1,在http://elm-chan.org/fsw/ff/00index_e.html上下载ff007c.zip,并把ff007c.zip里面的src文件夹复制到D:\works\EK-STM3210E-UCOSII下,并改名为Fatfs;2,在IDE工程中右击选择“Ad...
分类:其他好文   时间:2014-07-27 10:26:32    阅读次数:476
hdu2476String painter (区间DP)
Problem Description There are two strings A and B with equal length. Both strings are made up of lower case letters. Now you have a powerful string painter. With the help of the painter, you can chan...
分类:其他好文   时间:2014-07-20 15:41:50    阅读次数:213
贴一段demo代码,演示channel之间的同步
package mainimport ( "fmt" "time")func deskGoRoutine(index int, userChannel chan string, deskChannel chan string) { for { fmt.Println(...
分类:其他好文   时间:2014-07-16 19:32:52    阅读次数:203
gir配置
Git配置1. 用户信息你个人的用户名称和电子邮件地址,用户名可随意修改,git 用于记录是谁提交了更新,以及更新人的联系方式。$ git config --global user.name "Donly Chan"$ git config --global user.email donly@exa...
分类:其他好文   时间:2014-07-01 21:18:41    阅读次数:287
Snapshot Types
Volume managers Some Unix systems have snapshot-capable logical volume managers. These implement copy-on-write on entire block devices by copying chan...
分类:其他好文   时间:2014-06-30 14:53:23    阅读次数:271
[我的疑问]String? = "Skiy Chan" 中的问号是什么意思?
1 var optionalName : String? = "Skiy Chan"String? = "Skiy Chan" 中的问号是什么意思?目前还在看api和视频教程,暂时还没弄懂这个意思。特别是api中的那串代码:var optionalString : String? = "Hello"...
分类:其他好文   时间:2014-06-25 22:45:27    阅读次数:244
Golang在Linux环境下的POSIX风格socket编程
这里给出一个服务端和客户端,服务端可以接收多个连接,并且利用Go的杀手特性go和channel来替代select进行数据的接受。 服务端: package main import ( "fmt" . "syscall" ) func RecvRoutine(sockfd int, session chan string) { var buffer []byte = make(...
分类:系统相关   时间:2014-06-24 17:53:37    阅读次数:399
奇怪的channel 的笔记
channel 不仅能够控制数据传输,还可以控制执行流。1. 关闭的channel从来都不会阻塞关闭的channel不能传数据但是可以接受数据,例子```package mainimport "fmt"func main() { ch := make(chan bool, 2) ...
分类:其他好文   时间:2014-05-30 00:08:36    阅读次数:250
不关闭seLinux解决vsftpd服务本地用户不能登录问题(500 OOPS: cannot change directory:/home/***)
这里不讲vsftpd的基本配置,网上教程已经太多了。这里只说seLinux的问题。日前在CentOS6.5中安装了vsftpd,按照网上搜索的教程,配置好/etc/vsftpd/vsftpd.conf,重新启动后,登录实验,又出现了著名的不能设置主目录错误:500 OOPS: cannot chan...
分类:系统相关   时间:2014-05-26 06:40:58    阅读次数:468
331条   上一页 1 ... 31 32 33 34 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!