ChinaUnix.net
相关文章推荐:

pecified value of MEMORYTARGET greater than MEMORYMAXTARGET

Refer to http://www.microsoft.com/windowsserversystem/wss2003/techinfo/plandeploy/storportwp.mspx Storport is the new Microsoft port driver recommended for use with hardware RAID storage arrays and high performance Fibre Channel interconnects. Storport overcomes the limitations of the legacy SCSIport design, while preserving enough of the SCSIport framework that porting to the Storport device ...

by xiaomao2006 - 存储文档中心 - 2008-05-09 15:20:20 阅读(823) 回复(0)

相关讨论

$ uncompress -f /data/business/M0101920080531000001.AVL.Z /data/business/M0101920080531000001.AVL: A file cannot be larger than the value set by ulimit. 难道意思是我解压出来的文件将会超过 操作系统 所设定的 单个文件最大大小?? 请大虾指教啊 $ ls -ltr total 5988192 drwxr-sr-x 2 topetl staff 512 Jun 06 15:35 dsmp drwxr-sr-x 2 topetl staff 512 Jun 06 15:51 day_work drwxr...

by jayli426 - AIX - 2008-06-11 15:09:54 阅读(5493) 回复(19)

a TTL longer than 43200 seconds 我们公司用的是fb网关。 内部的邮件服务器发送到德国的邮件都被 http://www.sorbs.net 这个网站过滤了。 和这个网站沟通他们说我们是动态地址。可明明是静态的。 a TTL longer than 43200 seconds 如何能让ttl的值很小呢。

by ktdudu - 服务器应用 - 2006-07-17 15:45:25 阅读(1127) 回复(1)

运行下面的代码提示说: Use of uninitialized value $line in split at BLAST_result.pl line 25, line 3. Use of uninitialized value $line in pattern match (m//) at BLAST_result.pl line 26, line 3. Use of uninitialized value $line in pattern match (m//) at BLAST_result.pl line 26, line 3. Use of uninitialized value $query_src in pattern match (m//) at BLAST_result.pl line 39. Use of uni...

by 308happy - Perl - 2008-08-14 09:01:28 阅读(5034) 回复(3)

代码大致如下: use strict; use warnings; my $total = 0; foreach () {    my $temp=function($_); #接收一个函数的返回值        $total += $temp; } print "$total"; 运行的时候提示警告: Use of uninitialized value in addition (+) at..... 就是$total += $temp那一行 请问要怎么改才能不出现这个警告?不要告诉我是注释use warning:wink:

by 小公猫 - Perl - 2007-12-25 13:53:36 阅读(2329) 回复(7)

写了一段代码,如下: #!/usr/bin/perl -w open (NEWTXT, "C:/Documents and Settings/Administrator/My Documents/新建文本文档.ascii")||die "Cannot open this file:$!"; open (OUTPUT, ">C:/Documents and Settings/Administrator/My Documents/输出.ascii")||die "Cannot open the file match_Yeast_A1:$!"; @array=; foreach $array (@array) {if ($array=~/(\d+), (\d+)/) {$RT=$1; $intensity=$2;} print OUT...

by skybrain - Perl - 2007-10-24 09:46:31 阅读(2087) 回复(4)