search for: conditionn

Displaying 16 results from an estimated 16 matches for "conditionn".

Did you mean: conditions
2018 May 29
2
Conditionnal redirector samba4
Hi, I've the following error when I want to create a conditionnal redirector in samba 4 : " server complex operation 'IpValidate' not implemented  " Version : Version 4.6.7-Ubuntu Not using bind9 but Samba 4 DNS internal Must I user bind 9 ? My goal is to create un approbation between AD2016 et samba 4. Regard -- *Hervé* *HÉNOCH* *Re...
2003 Oct 19
0
Ultime traffic conditionner
Hello! I have experienced problems with the script presented at pages 90-91 of the lartc howto. The script reduces the bandwith greatly and make the ping very high. I have tried many combinations for the UPSTRAM and DOWNSTREAM variables without success. Does anybody know were the problem comes from? Regards, Pete _______________________________________________ LARTC mailing list /
2008 Sep 15
2
Conditionnal shutdown
Hello, Being new to this list and to Nut, maybe my question has been asked before but I didn't find a clear answer. My question is : is it possible to make nut aware of the percentage (or duration) of time before the UPS exhausts its power ? Thus making Nut conditionning the shutdown of the servers depending on the remaining load. I saw this thread on the mailing list : http://lists.alioth.debian.org/pipermail/nut-upsuser/2008-July/004252.html But I didn't understood clearly what it means (probably due to my poor english...) Thanks for your help. -- Emm...
2003 Jul 31
2
help with graphics
...l structure like : if (TRUE) { barchart(....) dev.print(png, file = "image1.png", width = 600) } but there's nothing in the output file. It seems that it's too long to print graphic into the graphical output and the saved file is a blank picture. it works if I do that without the conditionnal structure. it doesn't work if I source a batch file can you help me? I'm using R1.6.2 under win98 Thanks [[alternative HTML version deleted]]
2005 Mar 22
3
Lattice : factor levels in the margins
Hello ! I'm struggling again against lattice graprhics. ;) I'm trying to produce a conditionnal xyplot with two conditionning factors (let's say A and B). I want the levels of those factors (A1, A2, etc) to show in the margins of the lattice plot, not in the strips between the panels. A1 A2 A3 plot11 plot12 plot13 B1 plot21 plot22 plot23 B2 I managed to remove the stri...
2009 Sep 09
0
[LLVMdev] How to express physical register dependencies between instructions
I am wondering how to express physical register dependencies between instructions, typically in the case for conditionnal branch, where an instruction which sets the condition codes is followed by a conditionnal branch. Assuming CCFLAGS is defined in my registerInfo.td, and that I am using llvm-2.5 release, it seems several items need to be set in the .td file : 1 - SDNPOptInFlag / SDNPOptOutFlag 2 - Defs = [CCFLAG...
2006 Nov 18
1
lattice layout multiple pages
Dear all, Using lattice I would like to print a conditionnal plot of 32 panels in a limited number of panels (eg 4) in each of several pages: xyplot(pds~time|Idnid,data=croispond3,layout=c(4,4)) This works well in principle, but the pages are printed without any possibility of stopping the printing process before each next page. I have tried par(ask...
2007 Dec 06
1
Running AGI script if condition met?
...f("SIP/9001-088aa918", "1|AGI(/root/dummy.php)|1234567890") in new stack [Dec 6 04:40:46] WARNING[12293]: app_exec.c:186 execif_exec: Count not find application! (AGI(/root/dummy.php)) ===== It doesn't look like ExecIf() is the right way to have Asterisk run an AGI script conditionnally. What would be the right way to do this? Thank you.
2007 Nov 05
1
Should numeric()/character() etc initialize with NA instead of 0 or ""?
...vector elements themselves and programming errors would be far less easy to overlook. e.g. x <- numeric(n) or for( i in seq(along = x) ) { try(x[i] <- function.which.might.crash( args[i] )) } or x <- numeric(n) x[condition1] <- foo(args1) x[condition2] <- foo(args2) ... x[conditionN] <- foo(argsN) will produce x without any NAs even if function.which.might.crash() actually did crash during the loop or if there are indices for which none of conditions 1 to N were true and you cannot distinguish between zeroes which are real results and zeroes that remained unchanged since i...
2005 Dec 13
1
fSeries
I'm trying to use garchFit from fSeries, with Student or Skewed Student conditionnal distribution. Let's say that eps (vector) is my series of daily log-returns: data(EuStockMarkets) eps = diff(log(EuStockMarkets[,"CAC"])) library(fSeries) g = garchFit(series = eps, formula.var = ~garch(2,2), cond.dist = "dstd") s = g at fit$series All the coefficients...
2008 Feb 29
0
I would like to hire someone to automate my asterisk for hosted PBX service
...Thu, 06 Dec 2007 05:11:24 +0100 Vincent wrote: > exten => 777,n,ExecIf($[${LEN(${CALLERIDNUM})} = > 10],AGI(/root/dummy.php),${CALLERIDNUM}) The line break is not a good idea. > It doesn't look like ExecIf() is the right way to have Asterisk run an > AGI script conditionnally. What would be the right way to do this? Wrong syntax. ExecIf(||) So: ExecIf($[${LEN(${CALLERIDNUM})} = 10],AGI,/root/dummy.php) Not sure about more than one argument. Maybe ExecIf($[${LEN(${CALLERIDNUM})} = 10],AGI,/root/dummy.php,${CALLERIDNUM}) or ExecIf($[${LEN(${CALLERI...
2003 Jan 10
7
HTB and ARP
Hi, I discover recently that the arp traffic is managed like any other flow. So you get hang after a moment if you don''t use a default class. Is the any means to avoid this ? Not to have a default class is a way to filter traffic ... One would be to managed to class ARP request with tc but I don''t know if it is possible. Thanks in advance, -- Éric Leblond courriel :
2015 Apr 02
9
[PATCH v2 0/7] vhost: support for cross endian guests
...post. Patches 1 to 5 are preliminary work: we move the endianness check out of all memory accessors to separate functions. Patch 6 changes the semantics of the accessors so that they have explicit big endian support. Patch 7 brings the cross-endian feature, with the following changes since v1: - conditionnal enablement through a kernel config - introduction of a new vhost feature to advertise cross-endian to userspace The tentative to fix vnet headers was dropped for the moment. As a consequnce, vhost_net still fails to work with cross-endian. It will be fixed in another patchset I'm currently w...
2015 Apr 02
9
[PATCH v2 0/7] vhost: support for cross endian guests
...post. Patches 1 to 5 are preliminary work: we move the endianness check out of all memory accessors to separate functions. Patch 6 changes the semantics of the accessors so that they have explicit big endian support. Patch 7 brings the cross-endian feature, with the following changes since v1: - conditionnal enablement through a kernel config - introduction of a new vhost feature to advertise cross-endian to userspace The tentative to fix vnet headers was dropped for the moment. As a consequnce, vhost_net still fails to work with cross-endian. It will be fixed in another patchset I'm currently w...
2004 Jul 26
5
covariate selection in cox model (counting process)
Hello everyone, I am searching for a covariate selection procedure in a cox model formulated as a counting process. I use intervals, my formula looks like coxph(Surv(start,stop,status)~ x1+x2+...+cluster(id),robust=T) where id is a country code (I study occurence of civil wars from 1962 to 1997). I'd like something not based on p-values, since they have several flaws for this purpose. I turned
2016 Jun 01
15
[PATCH 00/15] clk/tegra: improve code and add DFS support
This series adds support for GM20B PLL's Maxwell features, namely glitchless switch and (more importantly) DFS support. DFS lets the PLL lower its output speed according to input current variations, making the clock more stable and allowing it to run safely at lower voltage. All GM20B additions are done in the last patch, which consequently ends up being considerably big ; fortunately, it