search for: unixi

Displaying 20 results from an estimated 65 matches for "unixi".

Did you mean: unix
2006 May 01
6
Two developers, one on unix and one on windows
Hello all, An interesting problem, I am developing on Windows, another developer is using Unix, and our app and svn repository are running on a Linux box. We need an easy way to not keep breaking our app and each others development environs when we check in the code. The piece in question is the dispatch.fcgi. The path to ruby is (obviously) different in Windows and Unix. Has anyone run into
2012 Apr 13
4
#!/usr/bin/env Rscript --vanilla ??
I think that's my first true question (rather than answer) to R-help. As R has, for a long time, become my primary scripting and programming language, I'm prefering at times to write Rscript files instead of shell scripts, notably when R has nice ways to do some of the things. On a standard standalone platform with standard R, I would start such a script with
2005 Dec 18
5
restarting fastCGI process
Hi, I am very new to this so please go easy on me... I am trying to deploy my app on dreamhost and I seem to be having problems getting it working. One of the troubleshooting items on the wiki states: Rails apps in production mode do not reflect changes made after they start running. So, if you found a bug, fixed it and nothing appeared to happen--this is probably because you
2006 Jun 23
2
rsync and mysql with users connected
Hi, I want to apologise for my bad english (I'm french). So I need to Back-up a lot of datas from a place to an another by the way of rsync with ssh naturally. A good question from my boss was : What happened when the mysql database is used by a user during the Backup ? Is the system stop the Backup or is it transparency for rsync ? Sorry if my question is stupid but I haven't
2007 Apr 18
5
FLAC: sending output to file
Hi, I'm using windows so I know the wildcard support for flac is broken. That's why I use this command to encode a whole directory of WAV-files to FLAC-files in a command prompt: for %1 in (*.wav) do flac -V --best "%1" This command is fully working Now I want to write the flac output to a file, so I can open this file later. I tried to add > outputfile.txt to the command
2007 Aug 23
4
Idiomatic way to do a non-database Enumeration?
I have a class which stores as one of its attributes a day of the week as an integer (0-6, 0=Sunday, standard UNIXy values). I want, obviously, the views to show the weekday name and the forms to provide a drop-down with the weekday names. Essentially it''s a vrtual attribute whose value is the localized weekday name, which maps to the integer value that''s actually stored.
2011 May 19
0
[LLVMdev] [cfe-dev] Cannot run clang regression tests with cmake
> > I've wanted to ask earleir, but forgot about it: > Why we can't produce libclang.dll on Win and clang.so on Unixies? > I meant "libclang.so on Unixies using simple if() else() construct in CMakeLists.txt?" -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110519/337656e6/attachment.html>
2010 Oct 25
1
advice on using daemontools on centos production servers
Hi advisors , I would some suggestions on using http://cr.yp.to/daemontools.html . My requirements is to use less systems daemon checks in nagios but concentrate more on business / application level checks . We have lots of daemons like below > 1. ) snmpd > 2.) ntp > 3.) SSH > 4.) crond > 5.) php-cgi > 6.) nginx > 7.) Postfix > 8.) wackamole > 9.) spread >
2009 Sep 12
1
DESCRIPTION/OS_type and OS X
R Extensions (Section 1.1.1, and using the 2.9.2 version) says The optional `OS_type' field specifies the OS(es) for which the package is intended. If present, it should be one of `unix' or `windows', and indicates that the package should only be installed on a platform with `.Platform$OS.type' having that value. and I am wondering if 'OS_type: unix' includes
2005 Jan 25
2
[LLVMdev] llc -load....
hello... I have finish my backend. But I dont know how to install my backend... llc -load=???Load what?? Can anyone teach me? thanx.
2005 Jan 25
0
[LLVMdev] llc -load....
On Tue, 25 Jan 2005, s88 wrote: > hello... > I have finish my backend. But I dont know how to install my backend... > llc -load=???Load what?? > Can anyone teach me? > thanx. There are two ways to do this. You can either link the backend directly into llc (like the X86 or PowerPC backends, see tools/llc/Makefile), or you can dynamically load the backend. To dynamically load
2015 Apr 09
1
How can I have new users/groups to include posixAccount/posixGroup schema automatically?
El 09/04/15 a les 18:39, Rowland Penny ha escrit: > If you want your Unix users to have the same IDs everywhere, you need to > use the RFC2307 attributes, at the moment, how the attributes get into > AD is up to you, use ADUC, samba-tool or write your own scripts. The problem that both Andrey and me are facing (and I'm sure we're not the only ones) is that to manage users with
2013 Jan 01
0
[LLVMdev] IR function pointers
Hi, > For example: call void %1608(%"struct.LRT::RGBAucharFrameBuffer"* > %1604) > > How can I resolve the targets of these? Also, why are they appearing as > indirect calls in the IR, when they are direct calls in the source? You don't mention what language you're trying to compile, though it looks plausibly C++. I'd guess these are virtual function calls.
2019 Jan 05
2
IMAP preauth and stats-writer
I use IMAP preauth; I connect with Alpine over SSH which is very useful. The last few upgrades this has become more difficult to to. Last time (moving 2.2 -> 2.3, I think) I had to put in a workaround: stats_writer_socket_path = It prevented /usr/local/libexec/dovecot/imap attempting to connect to a central stats service. As of an upgrade today (2.3.2.1_1 -> 2.3.4_3 on FreeBSD) it
2010 Aug 20
1
Re: OT: Xranr support for MacOSX {was: Wine Window not Maximizin
The place to put this information is the MacOSX wiki page, which looks to be sorely in need of updating. An experienced Mac user needs to do it. http://wiki.winehq.org/MacOSX
2013 Jan 01
2
[LLVMdev] IR function pointers
I am coming up against a lot of function pointers in the IR, although the corresponding source code does not have indirect calls. For example: call void %1608(%"struct.LRT::RGBAucharFrameBuffer"* %1604) How can I resolve the targets of these? Also, why are they appearing as indirect calls in the IR, when they are direct calls in the source? Thanks. -Apala
2005 Jan 25
2
[LLVMdev] llc -load....
Thank you... I am preparing to build a simple C compiler for our new architecture. According to your suggestion. I try to dynamically load my backend. But I got the error message : llc : target 'Your_Arch' does not support static compilation! could you tell me where is this problem? On Mon, 24 Jan 2005 22:53:15 -0600 (CST), Chris Lattner <sabre at nondot.org> wrote: > On
2007 Mar 12
7
Capistrano Hanging on Deployment
Hello ~ I am using the Capistrano recipe outlined in this post to restart my backgroundrb server: http://rubyforge.org/pipermail/backgroundrb-devel/2007-February/000718.html My Version: ~~~~~~~~~~~~ task :before_restart, :roles => :app do restart_backgroundrb end task :start_backgroundrb, :roles => :app do sudo "nohup
2007 Sep 12
0
[LLVMdev] C interface
On Sep 11, 2007, at 10:01 PM, Gordon Henriksen wrote: > Hi all, > > I'm authoring a C interface to the LLVM IR type system. Since this > is Really Quite Tedious, I would like to solicit opinions before I > get too far down any paths that seem offensive. Sounds good. > I've attached the header, where I've mapped a portion of Module and > most of Type and
2007 Sep 12
7
[LLVMdev] C interface
Hi all, I'm authoring a C interface to the LLVM IR type system. Since this is Really Quite Tedious, I would like to solicit opinions before I get too far down any paths that seem offensive. I've attached the header, where I've mapped a portion of Module and most of Type and its subclasses. This is working, and I've built ocaml bindings on top of it.[1] My intent is to