search for: stc2

Displaying 4 results from an estimated 4 matches for "stc2".

Did you mean: src2
2008 Nov 20
0
Megacli, NetCat, and Virt-Install Test Suites Released
Triple Release Day! James Wan, from the Solaris Quality Engineering group, has released the Megacli test suite. More information on Megacli test suite can be found at: http://opensolaris.org/os/community/storage/tests/ http://src.opensolaris.org/source/xref/test/ontest-stc2/src/suites/storage/megacli/README http://src.opensolaris.org/source/xref/test/ontest-stc2/src/suites/storage/megacli/ Vladimir Kotal from the Solaris RPE Security group, has released the NetCat test suite. More information on the NetCat test suite can be found at: http://opensolaris.org/os/communi...
2014 Nov 18
0
userdb-nss crash
...??/Mob: +7 (981) 130-23-03 <http://www.linkedin.com/company/speech-technology-center> <https://twitter.com/speechpro_ru> <http://vk.com/speechpro> <https://www.facebook.com/speechpro.ru> -------------- next part -------------- A non-text attachment was scrubbed... Name: stc2.jpg Type: image/jpeg Size: 3397 bytes Desc: not available URL: <http://dovecot.org/pipermail/dovecot/attachments/20141118/760ba027/attachment.jpg> -------------- next part -------------- A non-text attachment was scrubbed... Name: in-b.png Type: image/png Size: 1221 bytes Desc: not available...
2008 Apr 28
3
[Bug 1657] New: tests/functional/acl/nontrivial/ zfs_acl_cp_001_pos causes panic
....tang at sun.com QAContact: hua.tang at sun.com CC: zfs-crypto-discuss at opensolaris.org Estimated Hours: 0.0 build: 2008-04-26 platform: amd64 This panic occurred during the test case tests/functional/acl/nontrivial/zfs_acl_cp_001_pos from the zfs test suite in onnv-stc2. This test case is to copy file and dir with ACL then verify the ACL isn''t changed. From the journal file, it panic''ed at comparing ACLs. The test machine couldn''t be booted up after panic, so I am not able to provide the core dump files. Below are panic info and journa...
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame. For instance > ddTable <- data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry")) I want a dataset that is Id Name 1 Paul 2 Bob > unique(ddTable) Will give me all 4 rows, and > unique(ddTable$Id) Will give me c(1,2), but not accompanied by the name column.