ChinaUnix.net
相关文章推荐:

erlang supervisor 例

If you are interested ,pls send cv to: [email]crystal.hu@region.net.cn[/email] JD: IT supervisor – China Mission:  Provide day-to-day management on IT operation, drive the IT operational excellence to support business growth initiatives and ensure IT system & service availability. Key Responsibilities:  Initiate, develop, drive and manage the projects on IT service optimizatio...

by yanhua_hu - 猎头招聘 - 2008-09-19 18:30:32 阅读(1399) 回复(3)

相关讨论

Cisco 4006:supervisor Engine II 和 supervisor Engine III 有撒么区别啊?知道的兄弟请说得详细点啊,小弟先谢了 :?:

by 恰到好处 - 网络技术 - 2004-12-22 18:01:14 阅读(1253) 回复(5)

Recipe 534162: An erlang Port in Python erlang has two built-in interoperability mechanisms. One is distributed erlang nodes and the other one is ports. Ports provide the basic erlang mechanism for communication with the external world. They provide a byte-oriented interface to an external program. When a port has been created, erlang can communicate with it by sending and receiving lists of...

by pascal4123 - Erlang - 2009-07-23 00:55:18 阅读(2094) 回复(0)

erlang下的io:format 换行打印"~n" io:format("你好~n世界"). 字符替换"~w" 直接替换,"~-15w"代表输出15个字符,不够的空格补 io:format("~-15w ~w", [test1, test2]). erlang下的列表数组与递归调用 erlang的“数组” 假设 [E1, E2 | R] = [1,2,3,4,5,6,7]. %注意其中的"|",带有分割的意思 结果 E1=1 E2=2 R=[3,4,5,6,7] 根据此判断字符长度: -module(tut). -export([len/1]). len([]) ->0; ...

by bs - Erlang - 2016-04-23 15:10:26 阅读(2951) 回复(3)

现在云计算开始流行了,建议CU开一个erlang板块 谢谢!

by lei8c8 - Erlang - 2009-01-17 12:20:46 阅读(2036) 回复(4)

Multilayer Switch Fabric Card2 (MSFC2) Supported on both supervisor 1A and supervisor 2 as an option the MSFC2 acts as the Layer 3 forwarding routing engine. On its Layer 3 forwarding routing engine, the MSFC2 builds the CEF Forwarding Information Base (FIB) table in software and then downloads this table to the ASICs on the PFC or DFC that make the forwarding decisions for IP Unicast and Multica...

by wangguan - 网络技术文档中心 - 2009-09-07 09:56:00 阅读(868) 回复(0)

此职位已找到 [ 本帖最后由 nushtianjin 于 2007-10-15 09:07 编辑 ]

by nushtianjin - AS400 - 2007-08-30 09:10:33 阅读(2164) 回复(2)

http://www.cisco.com/en/US/products/hw/switches/ps700/products_tech_note09186a00801c0eb0.shtml show module and here is sth valueable -- Two leading LAN switch vendors have unveiled new products designed to let users support voice on data nets and lower the cost of Ethernet switching at the network edge. C6509# C6509#sh modu Mod Ports Card Type         ...

by yiminggong - 网络技术文档中心 - 2005-08-23 17:02:25 阅读(1060) 回复(0)

Data = Req:parse_post(), Uid = list_to_binary(proplists:get_value("uid", Data)), %调试打印出来的是74 Uid2 = put(74,111), Topid = get(Uid), %undefined Topid2 = get(74), %输出111 为什么Topid = get(Uid), %undefined 这句得不到111呢??

by kakashilw - Erlang - 2009-09-02 19:08:47 阅读(5333) 回复(2)

[code] -module(echo). -export([start/0, loop/0,while/2]). start() -> spawn(echo, loop, []). loop() -> receive {From, Message} -> From ! Message, while(Message,10), loop() end. while(M,0)-> {over,M}; while(M,Count)-> io:format("this outputs for: ~w~n", [M]), while(M,Count-1). [/code] 并发运行: Id = echo:start(),Id2 = echo:start(). Id ! {self(), h...

by erlangs - Erlang - 2009-04-15 15:09:22 阅读(3125) 回复(2)

以前我们用python做的一个演示产品, 以python -m CGIHTTPServer启动服务器后, cgi-bin 目录下的脚本文件根据程序员的喜好, 可以用python, scala开发: python脚本要加个 #!/usr/bin/python scala脚本要加个 #!/bin/sh exec scala "$0" "$@" !# 那能否用erlang开发CGI脚本呢? 答案是肯定的,因为eralng提供了escrip可以直接运行erlang代码. 用如下代码测试时, python却报CGI script exit status 0x7f00 ?! #!/usr/local/bin/...

by sw2wolf - Erlang - 2008-12-24 08:58:05 阅读(6531) 回复(10)