search for: crb

Displaying 17 results from an estimated 17 matches for "crb".

Did you mean: cr4
2010 May 20
1
Patch for logging variables
...ptive enough as `host` is a bit ambiguous and `deleted_count` may refer to a different command than expunge in imap and may be valid to track at some point so I have changed `host` to `client_ip` and `deleted_count` in imap to `expunged_count`, below is the modified diff for version 1.2.11. diff -crB dovecot-1.2.11.orig/src/imap/client.c dovecot-1.2.11/src/imap/client.c *** dovecot-1.2.11.orig/src/imap/client.c 2010-01-24 16:14:17.000000000 -0700 --- dovecot-1.2.11/src/imap/client.c 2010-05-20 09:30:47.170407921 -0600 *************** *** 42,47 **** --- 42,48 ---- client->fd_out = fd_out;...
2010 May 19
1
logging
I am looking through the logging options and wondering if there are a couple of things that we can do 1. Logouts don't seem to show the IP address of the logout, we typically see multiple sessions at a time and wondering if there is a way to tie the logouts to an IP 2. POP logouts show the number of messages retrieved/deleted but I don't see a way to do this with IMAP, is there a logout
2024 May 08
1
Compilation problems with R4.4.0
...t; ?????: > The lapack libraries are: > > $ rpm -qa | grep lapack > lapack-3.9.0-10.el9.x86_64 > lapack64_-3.9.0-10.el9.x86_64 > lapack64-3.9.0-10.el9.x86_64 > lapack-devel-3.9.0-10.el9.x86_64 Thanks for this information! I figured out I needed to enable the "PowerTools/CRB" repo, installed lapack-devel from there, and now I get the same configure output and the same crash: by linking with R's built-in Rblas but and system-provided LAPACK-3.9.0. If I configure --without-lapack, i.e. use both Rblas and R-provided functions from LAPACK up to 3.12.0, the build...
2002 Aug 16
0
Help: Adding printer drivers by RPC fails (NT_STATUS_UNSUCCESSFUL)
...printable = yes browseable = no public = yes read only = yes create mask = 0600 writeable = no [print$] comment = Printer Drivers path = /etc/samba/drivers browseable = yes guest ok = no read only = no write list = crb Though I've tried pretty much anything for those options that I could. /etc/samba/drivers is owned by crb. I'm running Debian Unstable's smbd version 2.999+3.0cvs20020723-1. If you could offer me any help or suggestions at all, please do so by email. Thanks, Craig
2024 May 09
1
Compilation problems with R4.4.0
...t; ?????: > The lapack libraries are: > > $ rpm -qa | grep lapack > lapack-3.9.0-10.el9.x86_64 > lapack64_-3.9.0-10.el9.x86_64 > lapack64-3.9.0-10.el9.x86_64 > lapack-devel-3.9.0-10.el9.x86_64 Thanks for this information! I figured out I needed to enable the "PowerTools/CRB" repo, installed lapack-devel from there, and now I get the same configure output and the same crash: by linking with R's built-in Rblas but and system-provided LAPACK-3.9.0. If I configure --without-lapack, i.e. use both Rblas and R-provided functions from LAPACK up to 3.12.0, the build...
2013 Feb 26
1
[releng_9 tinderbox] failure on arm/arm
...t;> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for CNS11XXNAS completed on Tue Feb 26 22:50:17 UTC 2013 TB --- 2013-02-26 22:50:17 - cd /src/sys/arm/conf TB --- 2013-02-26 22:50:17 - /usr/sbin/config -m CRB TB --- 2013-02-26 22:50:17 - building CRB kernel TB --- 2013-02-26 22:50:17 - CROSS_BUILD_TESTING=YES TB --- 2013-02-26 22:50:17 - MAKEOBJDIRPREFIX=/obj TB --- 2013-02-26 22:50:17 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2013-02-26 22:50:17 - SRCCONF=/dev/null TB --- 2013-02-26 22:50:17 - TARGET...
2003 Oct 30
1
Synchronizing offline files that I am not the owner of fails (Samba 2.2.8/3.0.0)
...it by that user) 4. Stop Samba ("go offline") 5. Wait for Windows to say the share is offline, and edit the file in Windows. Save and close the file. 6. Start Samba again 7. Attempt to synchronize. A level 10 log for synchronizing 'more.txt' can be found at http://www.hs.net.nz/~crb/log.wks-acer.gz Lots of newsgroup and mailing list posts seem to imply it was broken in 2.2.3 and fixed by 2.2.5; however I assume that in these cases people were the owner of the files they were trying to synchronize, and 2.2.8 seems to have my problem. Any suggestions welcomed! Thanks, Craig...
2003 Jun 27
3
dropping factor levels in subset
Dear all, I've taken a subset of data from a data frame using crb<-subset(all.raw, creek %in% c("CR") & year %in% c(2000,2001) & substrate %in% ("b")) this works fine, except that all of the original factor levels are maintained. This results in NA's for these empty levels when I try to do summaries based on factors using by()....
2020 Mar 11
1
[PATCH] builder: templates: add the AppStream repo
...let topurl = @@ -1262,7 +1265,9 @@ and make_rhel_yum_conf major minor arch = major major minor in sprintf "%s/BaseOS/%s/os" topurl (string_of_arch arch), sprintf "%s/BaseOS/source/tree" topurl, - None (* XXX sort out AppStream and CRB *) + Some ("AppStream", + sprintf "%s/AppStream/%s/os" topurl (string_of_arch arch), + sprintf "%s/AppStream/source/tree" topurl) | _ -> assert false in bpf "\ @@ -1285,23 +1290,25 @@ keepcache=0 (match o...
2012 Feb 29
1
[LLVMdev] individual
Hello, I'm implementing a compiler for ( yet another ) C like language. I am writing llvm assembly from the compiler. I would like to put a function into each .s file that somehow gets called before main(). Perhaps named "init" or something like that, no arguments, no return value. Can anyone point me to any documentation or ideas about how I might begin to go about this?
2013 Apr 13
1
[LLVMdev] Q: clang, obj-c: Hashing selectors to SEL's.
I'm trying to understand the method dispatch in objc_MsgSend. At some point during compilation, ascii selectors are hashed into integer SEL's. Is this hash somehow guaranteed to be unique? If so, how? If not, how are collisions handled? Is this hashing done during the link phase? Any insights/pointers to the code/documentation related to this hashing would be greatly appreciated.
2002 Mar 12
0
MatClass
Hello, I have written a small set of R functions for doing Generative Topographic Mapping and variants, and would like to write part of the code in C++ using the MatClass Matrix Library ( http://les.man.ac.uk/ses/staff/crb/matclass/ ). Now, my problem is even before writing the code itself, to compile the MatClass library. Everything is OK under Windows but when trying to port the program to Linux (Mandrake 8.1), I failed to compile the library, even when the makefile provided. The error message reeads : $ make...
2008 May 29
1
Simple FoxPro Application
Hello, I am trying to run a simple foxpro application. All the program does is look up serial numbers and then look up pictures from an image directory. The directory structure looks like this: FOXUSER.DBF INTERCHANGE.CDX interchange.exe irunin.lng FOXUSER.FPT INTERCHANGE.CRB irunin.dat sierra.ico Images INTERCHANGE.DBF irunin.ini The program installs correctly; however, the pictures are not displayed. The only messages displayed on startup are: fixme:system:SystemParametersInfoW Unimplemented action: 4132 (SPI_GETDROPSHADOW) fixme:rpc:alloc_serverproto...
2007 Oct 17
3
drbd
trying to follow the ha-drbd HOWTO on the centos wiki... I prep two identical systems with centos 5, leaving some disk space unassigned (they only have one scsi drive), create /dev/sda4 partitions on each to use for the repdata... I install the modules, create a /etc/drbd.conf like... [root at svfis-blade03 ~]# more /etc/drbd.conf # # please have a a look at the example configuration file in
2003 Jun 27
1
R-help Digest, Vol 4, Issue 27 ( -Reply)
...ond at sci.monash.edu.au> Subject: [R] dropping factor levels in subset To: r-help at stat.math.ethz.ch Message-ID: <HAEHLHNEIAAHAMDKMIPCEECKCAAA.Nick.Bond at sci.monash.edu.au> Content-Type: text/plain; charset=iso-8859-1 Dear all, I've taken a subset of data from a data frame using crb<-subset(all.raw, creek %in% c("CR") & year %in% c(2000,2001) & substrate %in% ("b")) this works fine, except that all of the original factor levels are maintained. This results in NA's for these empty levels when I try to do summaries based on factors using by()....
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
...rFF7e_AMTK|`}RqYaU&5BJmwxKpA_ls>*V%M(|)m|TuOq+0>uzpc5LizvS zlZYR3e2<$(2k1;T!to|uuD6&%$E!7oO|nLWpY4=ulO}Cj$s5BT;x{w&O~v00XviT9 zsj8X(NrC6ZSHj{dk>cqb=V_a2m|zuRW;!}0zcy>w+7fpsYbQWpZbbi;)Xc5R+ at gMS z1N;AC>uM)rmfFPYDHXav8}pAY-U;GQEdR~1P)2mUOJ>Z<M-5u0Bsz4ch4o+JwrQHD zcrB4~lcO-T7%|$Y52NZ$n0Y{G)Wfksjkz?5e@(2DVQjCAZIQGQ%dA{<mT1I;IV{T= z-vg-#!ho1|Il4V2Sy*zNXu2&)s#-CLs?3hABc<S18dHC at L4X=-SdX2#)QddcyyTJo z at xK_OthdpDULUK9i&@XjrPnDACf2#o2+52U8Nbe%#Rt`ivHf2$T(sRsPa=-^gdHLJ zjTg;uf?sQx3T`R+Zz+RK>P3{^#cd%1P5l#5$W53;1E~zx&8ouwOcbM#DDJK>m)(ex z(jAA7...
2003 Aug 14
2
problem adding server to domain using ldap
I followed the howto's that I could find and believe I am close. However, I'm getting a message from the Windows2000 box I'm trying to add to the domain that the user (administrator) doesn't exist. I have the machine name added to the ldap server with machineName$ as its UID. I have been able to add a win98 box to the domain and login as administrator so I know samba is using