search for: retured

Displaying 20 results from an estimated 58 matches for "retured".

Did you mean: returned
2004 Jul 01
0
3.04 acl new user/group adding problem
Hi all I've written a few mails to the list hoping that I might get some hint to what mistake I've been making in configuring my samba server with acl support, but haven't been able to figure out much to date. I'm sending some parts of my log files with a description of my problem as a last hope-- I will have to go through the manuals from cover to cover if I dont get an
2012 Apr 14
1
Sieve pipe extension - can it retur something?
I have a question about sieve pipe: can it return something to further processing? For example in procmail I can do: --8<---------------cut here---------------start------------->8--- :0 VIRUS=`$CLAMSCAN --mbox --disable-summary --stdout -` --8<---------------cut here---------------end--------------->8--- and then test VIRUS variable. Maybe I missing something, when read
2017 Apr 28
3
Return on nocapture pointer
Hi, I have a question about semantics of nocapture attribute: "This indicates that the callee does not make any copies of the pointer that outlive the callee itself. " Is returing a pointer considered outliving callee? For example is this code valid: define i8* @foo(i8* nocapture %p) ret i8* %p } The documentation also mention that " This is not a valid attribute for return
2010 Jan 25
2
[LLVMdev] Find all backedges of CFG by MachineDominatorTree. please look at my jpg.
Hi: I hope to cut all backedges of MachineFunction CFG, then topological sort MachineBasicBlocks. 1. MachineDominatorTree *domintree = new MachineDominatorTree(); domintree->runOnMachineFunction(mf); 2. Then travel mf one by one. When domintree->dominates(next,current) is true, there is a backedge from current node to next node. move this backedge form CFG. But I find A LOOP in
2017 Apr 28
2
Return on nocapture pointer
Thanks guys. Do you it make sense to extend the definition in LangRef? If so I will be happy to upload a patch. Piotr 2017-04-28 17:58 GMT+02:00 Hal Finkel <hfinkel at anl.gov>: > > > On 04/28/2017 10:22 AM, Piotr Padlewski via llvm-dev wrote: > > Hi, > I have a question about semantics of nocapture attribute: > "This indicates that the callee does not make any
2006 Apr 23
1
help! A quetion about the Elasticnet package in R
Can anybody help me to run the Elasticnet package of R to build some model, i am a freshman to R language , when i use the Elasticnet package to my data, it always reture a error, but i can't settle that problem. I consider if there is any constrant of the data to that package? Can anyone help me to run the elasticnet and check my data as you convenient? I put the data in attachment. Thank
2003 Dec 10
0
G.729
Hi guys, Just installed G.729 (from digium) codec and after starting asterisk getting the following warning: [codec_g729b.so] => (Annex B (floating point) G.729/PCM16 Codec Translator) WARNING[1082809536]: File asterisk.c, Line 234 (listener): Select retured error: Interrupted system call WARNING[1082809536]: File asterisk.c, Line 234 (listener): Select retured error: Interrupted system call == Detected 1 licensed G.729 transcoders WARNING[1074420608]: File translate.c, Line 219 (calc_cost): Translator 'g729tolinb' does not produce sample fra...
2003 Dec 17
0
g729 error - WARNING[1074433504]:
...? yes(y) or no(n)y ...Please wait a few seconds Registration successful! ============== But, Now I cant start *, it comes up with the following error; [codec_g729b.so] => (Annex B (floating point) G.729/PCM16 Codec Translator) WARNING[1082825920]: File asterisk.c, Line 234 (listener): Select retured error: Interrupted system call WARNING[1082825920]: File asterisk.c, Line 234 (listener): Select retured error: Interrupted system call shmget: Invalid argument WARNING[1074433504]: File codec_g729b.c, Line 511 (load_module): Unable to initialize va stuff: -1 == Detected 4 licensed G.729 transcod...
2004 Jan 21
0
G729 Codec Error
Starting up the asterisk using asterisk -vvvc i get this error is this normal and i purchased license for g729 today? [codec_g729b.so] => (Annex B (floating point) G.729/PCM16 Codec Translator) Jan 21 17:31:58 WARNING[1082805040]: asterisk.c:255 listener: Select retured error: Interrupted system call Jan 21 17:31:58 WARNING[1082805040]: asterisk.c:255 listener: Select retured error: Interrupted system call == Detected 4 licensed G.729 transcoders Jan 21 17:31:58 WARNING[1074411264]: translate.c:219 calc_cost: Translator 'g729tolinb' does not produce samp...
2006 Apr 10
3
Asterisk stops responding when internet is down
Hi, My * refuses SIP registrations when internet is down. All is returing at the moment when outside connection is up. What is wrong? -- Best regards, Michael Strelnikov -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20060410/35bd0b15/attachment.htm
2008 Nov 20
4
Guild Wars on Acer Aspire One
Hi, i have an acer aspire one that have linpus (an lite version of fedora), so i want to play Guild Wars on that. Afer working, with wine-door, playonlinux i can install the game and i can run it, but after download the upgrade the game and before starting the log-in the game stops to work and it retur to the desktop with an other resolution of the screen... I can't understood why i can't
2006 Oct 26
1
File size limits with samba 3.0.20b and FreeBSD 5.3
We're seeing problems with copying files > 2BG to a samba share. Google says that, as of 2004, there was a 2GB file size limit in that scenario, but I haven't found anything more recent. Is that still the case or am I looking at a different problem? Thanks, Graham
2007 Jun 01
1
Debug with set.seed()
HI, all I am debugging an R code with dynamically loaded function in it. It seems set.seed(n) does not give me the same random draws every time. Could somebody tell me what I should do to get the same outcome verytime ? I am not sure what infomation is relevent to this question , the following is a really scatchy description of the code I wrote.I am using the R-2.4.1 built under Cygwin.
2007 Oct 07
2
Specing exit codes
I am writing a small ruby script that will be accepting input from postfix''s pipe command (ie, not running via the shell, directly executing). One of the things I need to do it spec the exit codes to make sure I am returing the correct exit codes for each condition as Postfix will then return SMTP errors as appropriate. I have two files that concern this bit of the program, init.rb and
2010 Jan 25
0
[LLVMdev] Find all backedges of CFG by MachineDominatorTree. please look at my jpg.
2010/1/25 任坤 <hbrenkun at yahoo.cn>: > Hi: > > I hope to cut all backedges of MachineFunction CFG, then topological sort MachineBasicBlocks. > > 1. MachineDominatorTree *domintree = new MachineDominatorTree(); > domintree->runOnMachineFunction(mf); > > 2. Then travel mf one by one. > When domintree->dominates(next,current) is true, there is a backedge
2005 Dec 02
3
Trouble redirecting traffic on transparent bridge.
I have posted this question to the netfilter mailing list along with #ebtables, #iptables, and #netfilter. Nobody has really responded, so I''m led to believe that it is either incredibly complicated or *really* simple. Please, somebody throw me a bone here! Ok, on with the show... I have a bridge (br0) with two interfaces (eth1 and eth2). Neither br0, eth1, or eth2 have an
2010 Jan 25
0
[LLVMdev] About MachineDominatorTree Pass.
Hi: I hope to cut all backedges of MachineFunction CFG, then topological sort MachineBasicBlocks. 1. MachineDominatorTree *domintree = new MachineDominatorTree(); domintree->runOnMachineFunction(mf); 2. Then travel mf one by one. When domintree->dominates(next,current) is true, there is a backedge from current node to next node. move this backedge form CFG. But I find A LOOP in
2006 Jun 10
2
open source newsletter software?
is anyone aware of open source newsletter software built with rails? i am currently using dadamail, and like it, but i''d like a system that is easily integrated with user registration, etc. it was recommended that i try campaign monitor, which has an api available. http://www.campaignmonitor.com/ while i like this solution, i feel that the "per send" cost is worth
2011 May 25
0
Fw: questions about rpart - cont.
...at how it is possible to interpret the relative or cross-validation error for ex by the number of samples. I know that they are scaled to 1 at the root node of the tree but for any number of splits, how much error we make for each sample (but we don't know the number of sample in each split retured by printcp). Any other information is welcome. Look forward to your reply, Carol
2005 Feb 19
0
Help with freebsd and windows domain
I'm trying to add samba to our freebsd staging server and make it part of the domain, so us developers can browse to files on it like we do our other windows servers. I've been going through the setup on the page and got wbinfo -u returing a list of users and such, but i don't see a nsswitch.conf file any where on my system and also there is no getent. I can't chmod a file to a