search for: returing

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

Did you mean: returning
2004 Jul 01
0
3.04 acl new user/group adding problem
...ze 8 userlist.log: lsa_io_sec_qos: length c does not match size 8 userlist.log: pdb_getsampwrid (TDB): error looking up RID 512 by key RID_00000200.userlist.log: Error: Record does not exist userlist.log: 00c0 bad_password_count : 0000 userlist.log: get_alias_user_groups: not returing Domain Admins, not an ALIAS group. userlist.log: get_alias_user_groups: not returing bin, not in the domain SID. userlist.log: get_alias_user_groups: not returing daemon, not in the domain SID. userlist.log: get_alias_user_groups: not returing sys, not in the domain SID. userlist.log: get_ali...
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 values.", but I interpret that it is is about this case: declare i8* nocapture @bar(i8*...
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
...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 copies of the pointer > that outlive the callee itself. " > Is returing a pointer considered outliving callee? For example is this > code valid: > > > Yes, it includes returning the pointer. The code below is invalid. The > return value outlives the callee itself. > > > define i8* @foo(i8* nocapture %p) > ret i8* %p > } > > The doc...
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
2003 Dec 17
0
g729 error - WARNING[1074433504]:
Hi, I just applied four new g729 license to my * installation. Registration was successful ============== NOW, PLEASE ANSWER THE FOLLOWING QUESTION: Do you accept the terms of this agreement? 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)
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:
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 init_spec.rb. init.rb right now looks like this: ------------------------ class Init exit 1 end ------------------------ init_spe...
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.
Forgot to specify that the cross-val error cannot be decreased lower than 0.91. Note that for smaller values of cp than 0.01, the cross-val error increases. Is the cross-val error sum of squared error or relative error for classification problem (method = "class" in rpart function) or another type of error? Is it possible to determine the true positive, false positive using rpart?
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 user from the domain it says that user does not exist, i can net rpc join into the domain and that worked also. When i try to connect to the freebsd s...