search for: bradly

Displaying 20 results from an estimated 1118 matches for "bradly".

Did you mean: badly
2010 Nov 18
0
.pkg won't fully install on my MacBook
I'm having problems downloading any .pkg file on my MacBook. All the .dmg files up to 2.10.1 will download and install fine but nothing newer than that. I'm attaching the the log file from my installer as and here are some other things about my system. At the end of the log the installer continues to run not doing anything and comes up with progress messages. I've let it run
2002 Jun 05
9
swat seems broken in HEAD
it just says /usr/sbin/swat.new Aborted when i run it from the command line. nothing i can see in the logs... The swat binary from a 2 week old head now (with the rest of the installation from today's head) seems to work okay. what's going on with swat - did i screw up the build? Are others also having problems? (nothing in the marc) brad
2002 Apr 06
1
ERROR: chroot failed
I am trying to use rsync to transfer some directories from a RedHat 7.0 box to a RedHat 7.1 rsync server via a cron job. The cron command line: 00 00 * * * /usr/local/bin/emailbackup > /tmp/backup.log 2>&1; mail -s "Rsync Backup Log" my@emailaddres < /tmp/backup.log The 7.1 rsyncd.cond; [home] path = /home/brad/data/emailbackup read only = no uid = root gid = root The
2007 Nov 26
0
rSpec (rev 2996), Rails (rev 8214): TextMate bundle problems
Hey guys, I''m trying to get rSpec (rev 2996) working with Rails 2 (rev 8214). Running the tests from the command line works, no problem. I installed the RSpec.tmbundle (also rev 2996), and would like to see the HTML test results in TextMate. When I run the "Run examples in selected files/directories" command in TextMate, I get the following dump:
2002 Mar 23
3
Rsync permissions...
I am transferring some files from a RH7.0 machine to a RH7.2 machine as root with a cron job, using the following: rsync -avt /home homeserver::home rsync -avt /etc homeserver::etc Some of the files transfer OK, but I get: building file list ... done failed to set permissions on home : Operation not permitted home/brad/ home/ftp/bin/ home/ftp/etc/ home/ftp/pub/ home/rsyncuser/ failed to set
2013 Jan 24
3
No sound on any stream.
I figured out half the issue. Icecast appears to be transmitting on port 8000 just fine. The more I dig, the more I realize icecast is fine. Browser vlc seems to be broke. Direct connect via VLC standalone to -> http://66.228.49.182:8000/66.228.49.182.ogg.m3u works perfect. http://tinypic.com/r/2yl1qhc/6 I break there. Thank you! Brad From: Don Soad [mailto:s04d.1982 at
2003 Jan 06
1
Assert in imap-bodystructure.c
First let me thank you for my initial newby question about poping from a pop3 server and delivering into my Dovecot maildir folders. Now I'm getting an assertion in imap-bodystructure.c and one of my imap folders is now inaccessable. I think the two are related. Whenever I select the folder from my email client (kmail) I get two log entries in the dovecot log of the format:
2016 Feb 19
2
Question about __NSConstantString and __NSConstantString_tag
> On Feb 19, 2016, at 7:16 AM, Brad King <brad.king at kitware.com> wrote: > > On 02/18/2016 05:51 PM, Michka Popoff wrote: >> Our problem is that the AST contains some declarations which were not there before. > [snip] >> __NSConstantString and __NSConstantString_tag are now exposed. > [snip] >> Maybe someone could enlighten us about this change. >>
2014 Feb 24
2
[LLVMdev] compiler-rt CMake build
On Fri, Feb 21, 2014 at 9:03 PM, Brad King <brad.king at kitware.com> wrote: > On 02/21/2014 11:20 AM, Alexey Samsonov wrote: > > We can even use "DEPENDERS configure" instead of "DEPENDERS build" here. > > Just "build" should be sufficient because the generated build system > in compiler-rt knows how to re-run CMake if any of the inputs have
2010 Jun 18
10
Xen VNC Hang
When I try to create a PV domU, the VM starts up and I can access it through "xm console <id>", but when I try to connect to it through VNC, the port just hangs. I''ve tried using RealVNC and TightVNC, and also tried on Linux and Windows. All that happens on the client is that it says that the connection has established, and hangs there. I''ve tried running
2006 Nov 13
6
mongrel_upload_progress question/possible suggestion
Hey all, First off, thanks to Rick Olson and whoever else was involved with this plugin... It''s been amazingly easy to implement. I''ve got a question about the path_info parameter, though... It seems that unless the request PATH_INFO exactly matches the path_info passed in to the plugin at inclusion, it won''t actually trigger Add and add the upload to the list of
2003 May 16
4
Samba & Terminal Services / Citrix
Hello! I have heard that there is a problem with using Samba along with Windows Terminal Services and that it's related to session IDs with multiple users coming from one server. I'm in the process of moving to Windows Server 2003 using Citrix and hoping to be able to revive our samba use. Has anyone had any success with using samba in a Terminal Server / Citrix environment? Thanks
2012 Dec 27
2
Help reading matrixmarket files
I'm trying to read data a program produces in matrixmarket array format into R and its giving me fits. I've tried read.MM (below) and readMM (from the Matrix package) but neither works. One of them says array format isn't supported, the other reports something indecipherable about Fortran. Here's the file contents. Can't get much simpler than that! %%MatrixMarket matrix array
2014 Feb 24
2
[LLVMdev] compiler-rt CMake build
On Mon, Feb 24, 2014 at 6:05 PM, Brad King <brad.king at kitware.com> wrote: > On 02/24/2014 08:53 AM, Alexey Samsonov wrote: > > On Fri, Feb 21, 2014 at 9:03 PM, Brad King wrote: > > Just "build" should be sufficient because the generated build system > > in compiler-rt knows how to re-run CMake if any of the inputs have > > changed. >
2016 Feb 25
2
Question about __NSConstantString and __NSConstantString_tag
> On Feb 25, 2016, at 7:49 AM, Brad King <brad.king at kitware.com> wrote: > > On 02/19/2016 10:35 AM, Ben Langmuir wrote: >>> On Feb 19, 2016, at 7:16 AM, Brad King wrote: >>> [snip] >>>> __NSConstantString and __NSConstantString_tag are now exposed. >>> To clarify, this is not so much about the appearance of new builtins >>> but
2012 Apr 06
2
R CMD check returns NOTE about package data set as global variable
I'm developing a package that comes with a data set called RutgersMapB36. One of the package's functions requires this data frame. A toy example is: test<-function() { data(RutgersMapB36) return(RutgersMapB36[,1]) } R CMD check returns a NOTE: test: no visible binding for global variable 'RutgersMapB36' Is there any way to avoid this NOTE? Thanks, Brad --- Brad
2014 Feb 13
3
[LLVMdev] cmake/ninja build failing
Well, I updated to cmake 2.8.12.2 but the result of changing that COMPILE_FLAGS to COMPILE_OPTIONS is that quotes are applied incorrectly: quotes are added surrounding the entire set of flags rather than around each individual item in the list. Obviously the build doesn't work (with the compiler looking for files named " -m64 ... ") but checking the relevant build command in
2002 Jan 11
5
Winbind and Windows 2000
We are running a windows 2000 domain where I work. I am developing a linux client for desktop deployment so that we can stop the spread of cancer (read microsoft). I can get winbind to join the domain, but when i try a winfo -t, it tells me "could not check secret". I have scoured the internet looking for help and could not find anything. I used the HOW TO from John Trostel, with no
2008 Sep 03
5
universal netlogon script
Hi Guys, Advise, I have 200 users, they all have access to 20 shares in different combinations. They all have their own netlogon scripts... its a management nightmare, is there a way to create a universal netlogon script that I can include all the shares to mount and it will silently fail on the ones it cant? Perhaps there is a smarter way to implement this idea, lynching is welcome, so is
2014 Feb 24
2
[LLVMdev] compiler-rt CMake build
On Mon, Feb 24, 2014 at 6:57 PM, Brad King <brad.king at kitware.com> wrote: > On 02/24/2014 09:44 AM, Alexey Samsonov wrote: > > ExternalProject_Add_Step(compiler-rt force-rebuild > > DEPENDERS build > [snip] > > doesn't work for Ninja. > > What version of CMake did you use for this test? Also 2.8.10? > Yes, 2.8.10.2 to be exact. > >