similar to: Hi im new, With questions about helping an app

Displaying 20 results from an estimated 5000 matches similar to: "Hi im new, With questions about helping an app"

2013 Jan 18
0
[LLVMdev] llvm backend porting question ,
I start my porting for picoblaze,the soft cpu for fpga ,which is designed by XILINX from MSP430 porting . After some day's work , somethinig looks good , for it can generate for some simple C program: eg : int f1(int a) { return a+1; } but it failed with this : char f() { char a; a++; a++; a++; a++; a++; a++; a++; a++; a++; a++; a++; a++; a++; a++; a++;
2008 May 10
4
Wine 1.0 rc1 & Anarchy Online & Ubuntu 8.04
Hello there, I just installed HH 8.04 and Wine 1.0 rc-1, i downloaded the 850mb exe file Anarchy Online game, i installed it properly and when i want to launch it, see the screenshot ... i have no /Prefs directory so i created on and chmoded the whole /Funcom directory but i still have this problem. If someone knows why, let me know please. [Image:
2015 Feb 09
0
Proper way to define cbind, rbind for s4 classes in package
Hi Michael, I've tested your change in r67699 (using r67773) and the function now correctly dispatches to r/cbind2 within the R-session without bind_activation(TRUE). However, running unit tests using R CMD check I figured out that the same function call delegates to r/cbind.matrix (function uses S4 class as first- and matrix as second argument). Is this a bug and/or how can I get function
2015 Feb 11
0
Proper way to define cbind, rbind for s4 classes in package
sorry - I just got irritated by my different R-versions. The behaviour I described in the previous mail was discovered using R 3.1.2 without bind_activation(TRUE). In r67773 all calls are delegated to r/cbind.matrix and not r/cbind2. As a workaround I have now implemented an S3 method for my S4 class which correctly dispatches for both versions (3.1.2 and r67699+) - see also the commit for the h5
2005 Nov 15
0
Hi im newbie here
Hi All, I'm new here...i'm really interested in joining this group to be able to explore and find back up solutions on our system. Im running samba here and eventually fully migrate to linux. I really appreciate your advices and expert opinions. Thanks... Tata -------------- next part -------------- HTML attachment scrubbed and removed
2005 Jan 05
1
[PATCH] kinit/nfsmount.c path from bootp
kinit/nfsmount.c:mount_nfs_root() should use the bootpath specified by bootp/dhcp. If the "nfsroot" option is specified then it overrides the boot server bootpath and a message indicating the override is printed. --- klibc-0.194/kinit/nfsroot.c.orig 2005-01-05 04:13:47.043897880 -0700 +++ klibc-0.194/kinit/nfsroot.c 2005-01-05 04:13:09.316633296 -0700 @@ -66,34 +66,21 @@ const int
2013 Oct 21
0
[LLVMdev] First attempt at recognizing pointer reduction
On Oct 21, 2013, at 1:00 PM, Renato Golin <renato.golin at linaro.org> wrote: > Hi Arnold, > > To sum up my intentions, I want to understand how the reduction/induction variable detection works in LLVM, so that I can know better how to detect different patterns in memory, not just the stride vectorization. To detect memory access patterns you will want to look at the SCEV of a
2015 Feb 02
2
Proper way to define cbind, rbind for s4 classes in package
>>>>> Michael Lawrence <lawrence.michael at gene.com> >>>>> on Sun, 1 Feb 2015 19:23:06 -0800 writes: > I've implemented the proposed changes in > R-devel. Minimally tested, so please try it. It should > delegate to r/cbind2 when there is at least one S4 > argument and S3 dispatch fails (so you'll probably want to
2015 Feb 20
1
Proper way to define cbind, rbind for s4 classes in package
>>>>> Mario Annau <mario.annau at gmail.com> >>>>> on Wed, 11 Feb 2015 20:18:53 +0100 writes: > sorry - I just got irritated by my different R-versions. > The behaviour I described in the previous mail was discovered using R > 3.1.2 without bind_activation(TRUE). In r67773 all calls are delegated > to r/cbind.matrix and not
2015 Feb 09
2
Proper way to define cbind, rbind for s4 classes in package
Are you able to create a reproducible example, somehow? Thanks, Michael On Mon, Feb 9, 2015 at 2:28 PM, Mario Annau <mario.annau at gmail.com> wrote: > Hi Michael, > I've tested your change in r67699 (using r67773) and the function now > correctly dispatches to r/cbind2 within the R-session without > bind_activation(TRUE). However, running unit tests using R CMD check I
2009 Apr 24
0
Winbind errors result in no logins!
Everyone, We are currently seeing a very strange problem on our server. Everything will be running along smoothly and then all of a sudden, nobody will be able to login. Looking through the logs reveals the following messages... Apr 24 10:55:15 LINUX-1 httpd2-prefork: pam_winbind(httpd): pam_winbind_request: read from socket failed! Apr 24 10:55:15 LINUX-1 httpd2-prefork:
2013 Oct 21
1
[LLVMdev] First attempt at recognizing pointer reduction
On 21 October 2013 20:58, Arnold Schwaighofer <aschwaighofer at apple.com>wrote: > For example these should be the SCEVs of “int a[2*i] = ; a[2*i+1] =”: > > {ptr, +, 8}_loop > {ptr+4, +, 8}_loop > > Each access on its own requires a gather/scather (2 loads/stores when > vectorized (VF=2) + inserts/extracts). But when we look at both at once we > see that we only
2005 Mar 11
4
VoipJet Terms of Service
I've heard good things about VoipJet here, so I was going to set up an account. Then I noticed their Terms of Service here: https://www.voipjet.com/tos.php Several things there are very concerning to me, and I'm interested in what other people here think of them. * The ToS specifically forbids use for any call relating to medical, financial, or government matters -- as well as any
2005 May 05
2
CNAM lookup: new method for Caller ID Name delivery
[cross-posted to -biz and -users since it could fall into either category] Interesting new product that has been introduced that I think some would be interested in here (at least, those users in the United States and perhaps Canada): CNAM delivery via IP lookup. The problem: inbound calls on many PRI connections, and also over many VoIP providers, do not include caller name. This means that
2007 Oct 16
2
what is GLX
wine errors with: Xlib: extension "GLX" missing on display ":2.0". err:wgl:X11DRV_WineGL_InitOpenglInfo couldn't initialize OpenGL, expect problems What is this?
2013 Oct 24
1
[LLVMdev] First attempt at recognizing pointer reduction
On 23 October 2013 23:05, Arnold Schwaighofer <aschwaighofer at apple.com>wrote: > A reduction is something like: > > for (i= …) { > r+= a[i]; > } > return r; > Ok, so "reduction" is just a reduction in the map-reduce sense, and nothing else. You don’t need to transform them in the legality phase. Believe me ;). Look > at how we handle stride one
2009 Jun 03
1
Unreal Tournament 3 Mouse Bug
Yeah, can't wait for the native client and anyway it was Steam free weekend so I went ahead and downloaded Unreal Tournament 3, the game runs immaculately and performs surprisingly well on my rather low-end 8400gs, but one problem: I can't aim. The mouse works fine in the menus but during actual play im unable to aim,the mouse can move but only slightly, I put mouse sensitivity up to
2008 Aug 13
0
Solatech Window Covering Software, MSDE, and Wine
I am trying to convince my office to move to Linux desktops. I have a workstation installed with Ubuntu 8.04: Code: mis at mis-desktop:~$ uname -a Linux mis-desktop 2.6.24-19-generic #1 SMP Fri Jul 11 21:01:46 UTC 2008 x86_64 GNU/Linux mis at mis-desktop:~$ wine --version wine-1.0 We currently use a *nix-based production software called PIC, but will be moving to another provider called
2013 Apr 17
1
[LLVMdev] How to transform loop to if-else using LLVM?
Hello everyone, Sorry to bother you. I'm an undergraduate, and I'm trying to finish my graduation project using LLVM. In this project, I hope to transform all loop in program to condition statement. For example, Before transformation: for (int i = 0; i < 5; i++) a++; After transformation: int i = 0; if (i < 5) a++; i++; The idea is very clear, however, I'm a newbie to LLVM.
2006 May 10
1
[patch] kinit cmdline handling change
Following mail advice from maximilian attems (thanks). The following patch changes 2 parts of kinit's command line parameter handling. 1) Parse command line parameters passed to kinit *before* /proc/cmdline, in order to allow overrides 2) Pass this resultant command line to the init program, rather than forcing the kinit caller to pass all /proc/cmdline parameters to the kinit call.