search for: level2

Displaying 20 results from an estimated 963 matches for "level2".

Did you mean: level
1999 Apr 16
1
NextMethod
...realized that many of my old summary methods actually print things instead of returning an object for a print method. Some of these use NextMethod, and I've always been even more confused by NextMethod than by UseMethod. Is the following a good model of how this should be done: summary.level1.level2 <- function(object) { r <- list("level2 before") r <- append(r,NextMethod("summary")) r <- append(r,"level2 after") class(r) <- "summary.level1.level2" r } print.summary.level1.level2 <- function(x) { cat(x[[1]]) print(x[[2]])...
2011 Dec 23
2
2.1.rc1 (056934abd2ef): virtual plugin mailbox search pattern
...h virtual plugin mailbox search patterns. I'm using a virtual mailbox 'unread' with the following dovecot-virtual file $ cat dovecot-virtual * unseen For testing propose I created the following folders with each containing one unread message INBOX, INBOX/level1 and INBOX/level1/level2 2.1.rc1 (056934abd2ef) 1 LIST "" "*" * LIST (\HasChildren) "/" "INBOX" * LIST (\HasChildren) "/" "INBOX/level1" * LIST (\HasNoChildren) "/" "INBOX/level1/level2" * LIST (\HasChildren) "/" "virtual"...
2004 Oct 12
2
Why I can't retrieve GO identifier correctly?
Hello, R experts, I tried to retrieve all biological process GO terms at level 3 starting "biological process" as level 1 using the code as bellows: 1 library(GO) 2 library(GOstats) 3 level2<-getGOChildren("GO:0008150")$"GO:0008150"$Children 4 for ( i in 1:length(level2)) { 5 level3 <- getGOChildren(level2[i])$level2[i]$Children 6 for ( j in 1:length(level3)){ 7 level3term <- getGOTerm(as.character(level3[j]))$BP$level3[j] 8 level3term 9...
2011 Jan 19
3
lme-post hoc
...variety plot height 1 level1 var1 1504 52 1 level1 var3 1506 59 1 level1 var4 1509 54 1 level1 var2 1510 48 2 level1 var1 2604 47 2 level1 var4 2606 51 2 level1 var3 2607 55 2 level1 var2 2609 44 3 level1 var2 3401 46 3 level1 var3 3402 64 3 level1 var4 3403 64 3 level1 var1 3404 50 1 level2 var3 1601 59 1 level2 var1 1605 56 1 level2 var2 1610 53 1 level2 var4 1611 53 2 level2 var2 2403 56 2 level2 var1 2405 61 2 level2 var4 2407 69 2 level2 var3 2413 70 3 level2 var3 3508 67 3 level2 var4 3511 73 3 level2 var2 3512 62 3 level2 var1 3513 67 1 level3 var4 1406 77 1 level3...
2006 Aug 09
1
Improvement: SiteMapper - working ideas as a possible RoR''s routing replacement
...mine languages from url. 5. You can dump it instead of caching generated ruby code. 6. The class is only 8,3KB with comments. A real example: --------------- mapper = SiteMapper.new # firstly define the map and site structure... mapper.add( :gallery ) do |level1| level1.add( :mammals ) do |level2| level2.route( ''gallery/mammals'', :controller=>''gallery'', :type=>''mammals'' ) level1.add( :insect ) do |level2| level2.route( ''gallery/insect'', :controller=>''gallery'',...
2005 Jun 14
0
c(recursive=TRUE)
Hi R users, I am currently using c(...,recursive=TRUE) to handle list-structured objects. This allows to represent something like: > l1 = list(level1=1,level2=list(sub1=1,sub2=2)) as: > (l1names = names(c(l1,recursive=TRUE))) [1] "level1" "level2.sub1" "level2.sub2" Then, one can use: > (l1names = sapply(l1names,FUN=function(element) strsplit(element,"\\."))) $level1 [1] "level1" $level2.sub1...
2007 Jan 24
4
Replace missing values in lapply
I have some matrices stored as elements in a list that I am working with. On example is provided below as TP[[18]] > TP[[18]] level2 level1 1 2 3 4 1 79 0 0 0 2 0 0 0 0 3 0 0 0 0 4 0 0 0 0 Now, using prop.table on this gives > prop.table(TP[[18]],1) level2 level1 1 2 3 4 1 1 0 0 0 2 3 4 It is important for...
2008 Jul 03
0
Samba pdc with ldap & samba3-3.0.25c-34 on CentOS 5
...fix = ou=People ldap group suffix = ou=group ldap idmap suffix = ou=Idmap ldap admin dn = cn=Manager,dc=earthlift,dc=local idmap backend = ldap:ldap://localhost idmap uid = 10000-20000 idmap gid = 10000-20000 #map acl inherit = Yes printing = cups hide files = /desktop.ini/Desktop.ini os level = 65 level2 oplocks = no kernel oplocks = no oplocks = no #use sendfile = no #lock spin time = 15 [homes] comment = Home Directories valid users = %S read only = No browseable = No [printers] comment = SMB Print Spool path = /var/spool/samba guest ok = Yes printable = Yes browseable = No #[profdata] #commen...
2007 Nov 28
2
Change in smbclient between 3.0.24 and 3.0.25c breaks third party app
Hello list, A change in smbclient between 3.0.24 and 3.0.25c breaks [1] the gollem filemanager [2] and maybe others. In particular folder creation is broken unless the folder is a top level folder on the share. To create a subfolder "level2" in the folder /level1 of a share gollem executes this command: /usr/bin/smbclient "//1.2.3.4/sharename" "-p139" "-Uusername" -D "/level1" -I 1.2.3.4 -c "mkdir \"level2\";" With samba-3.0.24 and lower this creates the folder /level...
2005 May 13
1
level2 oplocks problem
...e help. I can't find answer from mailist archives http://lists.samba.org/archive/samba/ so post here. >From smb.conf #testparm -v |grep oplock kernel oplocks = Yes oplock break wait time = 0 veto oplock files = fake oplocks = No oplocks = Yes level2 oplocks = Yes oplock contention limit = 2 Also: strict locking = yes share modes = yes
2013 Jan 26
0
[LLVMdev] Closures, newbie question
...k frame. - any call to a function which imports upvalues must pass in the stack frame in the call. And of course it all has to be recursive, because you may need to pass said stack frame through another function. e.g.: function level1() /* exports i, imports nothing */ { var i = 0; function level2() /* exports i, imports i */ { function level3() /* exports i & j, imports i */ { var j = 0; function level4() /* exports nothing, imports i & j */ { return i + j; } level4(); } level3(); } level2(); } There are numerous ways t...
2013 Jan 26
2
[LLVMdev] Closures, newbie question
So I read the Kaleidoscope tutorial, big thanks to Chris Latter. Good pace, still excellent coverage. Just at the end it mentions closures and I was wondering how those are done in llvm. The link was to wikipedia, and i do know what closures/blocks/continuations are, (i think) but maybe someone could point me to where to read about how to do them in llvm. Thanks Torsten
2010 Oct 13
0
Samba3 3.5 + OpenLDAP very slow transfer
...ib/samba/profiles writeable = yes browseable = No create mode = 0600 directory mode = 0700 [backup1] comment = Private Backup 1 path = /share read only = No create mask = 0777 directory mode = 0777 force create mode = 0777 valid users = denes invalid users = bikeclub oplocks = false level2 oplocks = false [storage3] comment = Public Storage 3 path = /share5 read only = No create mask = 0777 directory mode = 0777 force create mode = 077 invalid users = bikeclub oplocks = false level2 oplocks = false [storage2] comment = Public Storage 2 path = /share2 read only = No create mask = 07...
2010 Oct 13
0
Samba 3 + OpenLDAP very slow transfer speed(when multiple small files, probably LDAP problem)
...ib/samba/profiles writeable = yes browseable = No create mode = 0600 directory mode = 0700 [backup1] comment = Private Backup 1 path = /share read only = No create mask = 0777 directory mode = 0777 force create mode = 0777 valid users = denes invalid users = bikeclub oplocks = false level2 oplocks = false [storage3] comment = Public Storage 3 path = /share5 read only = No create mask = 0777 directory mode = 0777 force create mode = 077 invalid users = bikeclub oplocks = false level2 oplocks = false [storage2] comment = Public Storage 2 path = /share2 read only = No create mask = 07...
2006 Oct 18
2
multiline string continuation
...to the command line continuation in the non-string situation (just continute at the new line). However, that doesn't work for strings because the new line character, "\n", is included in the resultant string. For example, if I type the following in a script: datadir=" X:/level1/level2 /level3/level4/ level5/level6" after executing the script, string variable "datadir" becomes "X:/level1/level2\n/level3/level4/\nlevel5/level6" Someone has suggested to use "paste()" for putting pieces of strings together, but I would like to see if there is an...
2007 Apr 05
2
Samba kills network.
...rfaces only = yes encrypt passwords = yes smb passwd file = /etc/samba/smbpasswd add user script = /usr/sbin/useradd -d /dev/null -g machines -c 'Machine Account' -s /bin/false -M %u wins proxy = yes dns proxy = no logon path = logon drive = U: logon script = %U.bat oplocks = no level2 oplocks = no change notify timeout = 300 lpq cache time = 30 winbind uid = 10000-20000 winbind gid = 10000-20000 winbind separator = + oplocks = no level2 oplocks = no ; deadtime = 60 wins proxy = yes lpq cache time = 30 change notify timeout = 300 getwd cache = yes dos filetimes = yes...
2004 May 28
0
disappearing shares after upgrade to 3.0.4
...= 192.168.10.40/24 security = share log file = /var/log/samba/log.%m log level = 0 max log size = 10 keepalive = 0 max open files = 6000 socket options = TCP_NODELAY SO_SNDBUF=16384 SO_RCVBUF=16384 load printers = No dns proxy = No blocking locks = Yes kernel oplocks = No oplocks = No level2 oplocks = No create mask = 0777 force create mode = 0777 directory mask = 0777 force directory mode = 0777 os level = 33 domain master = No local master = No wins support = No wins server = 192.168.10.246 name resolve order = wins lmhosts host unix charset = "CP850" [assist_co...
2004 Oct 01
1
Locking/Timeout Problems
...only = yes write list = ntadmin browseable = no ; share for storing user profises [profile$] comment = Profile Data path = /media/array/profile read only = no create mask = 0660 directory mask = 0770 profile acls = yes ; oplocks = no ; level2 oplocks = no ; this stops w2k fucking up it's logon veto oplock files = /prf*.tmp/ ; veto files = /prf*.tmp/ ; delete veto files = yes csc policy = disable ; next line allows administrator to access all profiles force group = admins valid users = %U...
2008 Apr 04
1
3.0.28a+ 2008 server join with security=domain
...log file = /usr/local/samba/samba/samba-3.0.28a/log/common.log # max connections = 13 local master = no # stat cache = no wins server = 172.16.100.43 oplocks = no kernel oplocks = no level2 oplocks = no default devmode = yes print command = PrintJobSubmit %s lppause command = PrintJobPause %j lpresume command = PrintJobResume %j lprm command = PrintJobDelete %j lpq command = PrintQueueGet...
2003 Sep 30
2
FW: error predicting values from the LME
...solve my problem. I'm really stuck and no obvious solutions do the trick. I'm using R 1.7.1 on Windows 2000 with the packages regurarly updated. I'm using hypothetical data constructed as a pseudo population conforming to a certain Var-Cov structure. I might add that just > predict(level2) works. But when I add the new dataset it doesn't. Following a suggestion I even tried refactoring of the grouping variable (inter) after I created the subset. It didn't work. I have no other factor variables in the model. I really have got no clue what could be wrong. There is a sample f...