search for: unconditional

Displaying 20 results from an estimated 2672 matches for "unconditional".

2018 Dec 10
4
PJSIP_HEADER - Diversion header manipulation
...ng context - TSP provider [outgoing] exten => 0123456789,1,Dial(PJSIP/${EXTEN}@${SBC_1},,b(add_diversion^FWDdiver^1)) same => n,Hangup() # Diversion manipulation context [add_diversion] exten => FWDdiver,1,Set(PJSIP_HEADER(add,Diversion)=<sip:full_pstn_no at example.com>\;reason=unconditional\;screen=yes\;privacy=off)) exten => FWDdiver,2,Set(PJSIP_HEADER(add,CustomOne)=<sip:custom_one at example.com>\;reason=unconditional\;screen=yes\;privacy=off)) exten => FWDdiver,3,Set(PJSIP_HEADER(add,CustomTwo)=<sip:custom_two at example.com>\;reason=unconditional\;screen=yes\;...
2010 Feb 08
1
[LLVMdev] converting an unconditional into a conditional branch
Hi, I'm learning to use the llvm API, but I got a question for which I haven't found a good answer yet: What is the best way to turn an unconditional branch into a conditional branch? All I want to do is add two more operands, a successor and a condition. But no matter how I try to do this any one of setCondition()/setOperand()/setSuccessor() causes an assertion like these: Cannot set condition of unconditional branch! Successor # out of ran...
2009 Jun 08
1
[LLVMdev] Replacing unconditional branches with conditional ones
Hi all, Somewhat of a newbie's question, hope you can help me out. I'm trying to turn unconditional BranchInst's into conditional ones (with a condition I'm supplying) branching between the original target and a basic block of my choice. Apparently the way to do that is to create a new conditional BranchInst and remove the unconditional one from its basic block. However when removing the...
2006 Oct 05
1
lmer BIC changes between output and anova
...ng to use anova to compare the models. however, whenever i run the anova, the AIC, BIC and loglik are different from the original model output- as below. can someone help me out with why this is happening? (i'm hoping the output assocaited with the anova is right!). thank you, darren > unconditional<-lmer(log50 ~ 1 + (1 | Stream:Site) + (1|Stream), data) > summary(unconditional) Linear mixed-effects model fit by REML Formula: log50 ~ 1 + (1 | Stream:Site) + (1 | Stream) Data: data AIC BIC logLik MLdeviance REMLdeviance -138.8 -132.8 72.42 -150.4 -144.8 > nos...
2013 Dec 13
2
[LLVMdev] unconditional branch folding
Hello guys, Do we have a pass to do unconditional branch folding except the one in Codegen? I checked in the lib/Transforms/Scalar, did not see any promising one. thank you, yuanfang
2011 Jun 18
3
Unconditionally transfer files
Is there a way to make rsync unconditionally transfer files, i.e. create them anew even if the target already exists and is identical to the source ? rsync -I looks closer but still avoids transferring the files. -- Andr? Majorel http://www.teaser.fr/~amajorel/
2017 Jul 25
2
[Debug] Elide the unconditional branch instructions
This email is related with the code of commit: http://lists.llvm.org/pipermail/llvm-commits/Week-of-Mon-20120409/140650.html. This commit will let our unconditional branch instruction not be deleted when its successor is the nature layout and its basic block's instruction only one instruction. However, I have some concerns about it, especially in the debug mode. Let me show you some example: [1.cpp] 1.int main() 2.{ 3. int i; 4. 5. for (i = 0; i &lt...
2007 Aug 07
0
Goodman-Kruskal tau
...{ sum.col[i] <- sum(dat[,i]); max.col[i] <- max(dat[,i]); } for(i in 1:dat.rows) { sum.row[i] <- sum(dat[i,]); max.row[i] <- max(dat[i,]); } max.row.margin <- max(apply(dat,1,sum)); max.col.margin <- max(apply(dat,2,sum)); # Goodman-Kruskal tau # Tau Column|Row n.err.unconditional <- N^2; for(i in 1:dat.rows) n.err.unconditional <- n.err.unconditional-N*sum(dat[i,]^2/sum.row[i]); n.err.conditional <- N^2-sum(sum.col^2); tau.CR <- 1-(n.err.unconditional/n.err.conditional); v <- n.err.unconditional/(N^2); d <- n.err.conditional/(N^2); f <-...
2009 Feb 14
0
How to fit GARCH(1,1) with targeted unconditional variance?
Hello, I have a univariate data set, and the unconditional variance is 1. I would like to fit a GARCH(1,1) model to the data set with a constraint: \omega (the constant parameter in GARCH(1,1)) is equal to 1-\alpha-\beta. So the unconditional variance can be controled to be \omega /(1-\alpha-\beta) = 1. I was using garchFit (fGARCH package) but did not...
2017 Jan 17
6
Bug#851654: Prerm maintainer script unconditionally stops xend/xenconsoled
Package: xen-utils-4.4 Severity: normal Dear Maintainer, the xen-utils-4.4 and xen-utils-4.1 prerm maintainer scripts contain the following code snippet: remove|upgrade) update-alternatives --remove xen-default /usr/lib/xen-4.4 if [ -x "/etc/init.d/xen" ]; then invoke-rc.d xen stop || exit $? fi ;; which, in conjunction with the postinst
2012 Jan 04
1
[LLVMdev] replace a conditional branch with unconditional branch
Hi all, How can replace a conditional branch with unconditional branch? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120104/f2593dd0/attachment.html>
2012 Apr 26
0
Correlated random effects: comparison unconditional vs. conditional GLMMs
In a GLMM, one compares the conditional model including covariates with the unconditional model to see whether the conditional model fits the data better. (1) For my unconditional model, a different random effects term fits better (independent random effects) than for my conditional model (correlated random effects). Is this very uncommon, and how can this be explained? Can I compare t...
2015 Jan 27
4
[LLVMdev] [Windows] Cleaning up dialog box suppression code.
...ifferent places where we handle dialog box suppression to various degrees. I recently discovered another place we need to do it, and so I wanted to unify all of them. We currently have most of this suppression logic behind the LLVM_DISABLE_CRASH_REPORT environment variable. I would like to make it unconditional. I don't believe we have any users that desire the dialog box behavior, as all of our tools are used via the command line and can report crashes via stderr. I wanted to check with other Windows users/vendors for exactly which behavior they wanted. The case where I need to add it now is the lt...
2009 Feb 25
3
[Bug 1563] New: USE_PIPES unconditionally set in session.c
https://bugzilla.mindrot.org/show_bug.cgi?id=1563 Summary: USE_PIPES unconditionally set in session.c Product: Portable OpenSSH Version: 5.2p1 Platform: Other OS/Version: Other Status: NEW Severity: normal Priority: P2 Component: sshd AssignedTo: unassigned-bugs at mindrot.org Reporte...
2015 Nov 17
2
Mips unconditionally uses fast-isel?
...e are also five > targets (Mips, BPF, Sparc, PPC, and AMDGPU) that use the > SelectionDAGISel(TargetMachine &) constructor which leave the optimization > level at the default. The other targets all pass on the optimization level > using the two argument constructor. Okay... so Mips unconditionally has -O2 behavior from SelectionDAGISel, regardless of the requested optimization level; is that really what you wanted? | For this particular test, the -O0 is ignored and becomes -O2, which defaults to -fast-isel=false, and then 'optnone' is actually where you get the -O0 e...
2017 Jan 17
2
Bug#851654: Prerm maintainer script unconditionally stops xend/xenconsoled
Hi Ian, On Tue, Jan 17, 2017 at 10:58 +0000, Ian Jackson wrote: > Wolodja Wentland writes ("Bug#851654: Prerm maintainer script unconditionally > stops xend/xenconsoled"): > We triggered a xen stop by removing obsolete > xen-utils-4.1 packages while already using xen-utils-4.4. > I think a xenconsoled restart should be harmless, so I think it is > probably right that the maintainer scripts end up stopping the old &gt...
2015 Nov 16
2
Mips unconditionally uses fast-isel?
I was mucking around in FastISel, and was surprised to see the test llvm/test/CodeGen/Mips/emergency-spill-slot-near-fp.ll failed. This was surprising because it specifies -fast-isel=false. Does the Mips code generator use fast-isel even when you ask it not to? Thanks, --paulr
2019 Sep 21
0
Re: [PATCH v4 07/12] v2v: nbdkit: Add the readahead filter unconditionally if it is available.
...is command will always fail. > >So we do also need to change nbdkit to allow easier probing for >plugins or filters in the long term. > Is it usable without any plugins? Does the null plugin take much space? I wouldn't think so. Would it be too messy to just ship the null plugin unconditionally, even if just for this particular purpose? On the other hand any program that relies on such probing to work might depend not only on nbdkit, but also on the null plugin. >Rich. > >-- >Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones >Read my program...
2008 Sep 16
0
Package implementing unconditional tests for comparing two binomials
Hello, I am looking for a package implementing unconditional tests for comparing two binomials (Barnard's test or derivatives). As I am looking for rare genotypes within my groups, my number of subjects in one of the cells of the 2x2 table is often 2-4 resulting in a too conservative result by Fisher's exact test due to the discrete sample space...
2007 Mar 30
0
unconditionally redirecting incoming calls by 302 Moved Temporarily messages doing right accounting
...some established filter matches, and than that call is routed to the destination. If no match is found after call flow has descend until the default context, Asterisk hungs up the call. Problem arises when The problem is that the phones I've deployed in my site have the optional feature of unconditionally redirecting incoming calls to other phone number by sending a "302 Moved Temporarily" SIP message back to Asterisk, carrying the new contact that should be dialled by the server. When this happens, Asterisk seems to send this 302 message to the default context. If the new contact is...