search for: to1

Displaying 6 results from an estimated 6 matches for "to1".

Did you mean: to
2012 Feb 02
1
possibly Error in R version 2.12.1 (2010-12-16)
...#39;') } write( sChain, fHandle, append=TRUE) }, stackIt1 = function( ...) { testClass( stackData= c( stackData, ...)) }, stackIt2 = function( ...) { tmp= c( stackData, ...) testClass( stackData= tmp) }, getStack = function() { stackData }, NULL ) } to1= testClass() for( i in 4:2) { to1= to1$stackIt1( i) } print( all( rep( 2, 3) == to1$getStack())) # error! to2= testClass() for( i in 4:2) { to2= to2$stackIt2( i) } print( all( 4:2 == to2$getStack())) # correct! # what ist the difference between stackIt1 and stackIt2? # (error appears only b...
2016 Aug 22
1
RFC 3501 violation in FETCH BODY responses
...ystructure.c:129: Assert failed: strcmp(str_c(str), testmsg_bodystructure) == 0 imap bodystructure parser ............................................ : FAILED because the ?env-to? field of the envelope structure of the encapsulated MESSAGE/RFC822 message is printed as ((NIL NIL "sub-to1" "domain.org") (NIL NIL "sub-to2" "domain.org")) while it should be ((NIL NIL "sub-to1" "domain.org")(NIL NIL "sub-to2" "domain.org")) After a quick look at the source, this seems to be due to src/lib-imap/imap-bodyst...
2005 Aug 08
1
Help with "non-integer #successes in a binomial glm"
...T ~ 1 + TO, family = binomial(link = logit), data = Lease) Deviance Residuals: Min 1Q Median 3Q Max -0.5839 -0.5839 -0.5839 -0.3585 2.3565 Coefficients: Estimate Std. Error z value Pr(>|z|) (Intercept) -1.68271 0.02363 -71.20 <2e-16 *** TO1 -1.02959 0.09012 -11.43 <2e-16 *** --- Signif. codes: 0 `***' 0.001 `**' 0.01 `*' 0.05 `.' 0.1 ` ' 1 (Dispersion parameter for binomial family taken to be 1) Null deviance: 12987 on 15809 degrees of freedom Residual deviance: 12819 on 15808 degrees o...
2008 May 15
1
value transformations in a vector
Dear contributors: I have vector A composed of numbers wich have values equal to 1 and different to 1. I want to transform de components with a value=1 to a component of value=0, and those with a value different to1, to a value=1. Then I want to take out the components=0. Thanks in advance, Juan Pablo [[alternative HTML version deleted]]
2010 Jun 07
0
Announcement before absolute timeout / how to terminate a meetme conf?
...ence - have a nice chat - play an announcement and kill the conference after a max time value so far so good. I developed the following Dialplan to fulfill the task (simplified, hopefully right - deleted all announcements, cdr, etc. :)): [macro-c2cmacro-p1] exten => s,n,Dial(SIP/sipconnect/${to1},120,M(c2cmacro-connect^${ARG1}^to1)) exten => s,n(lbl_macro-c2cmacro-p1_1),MacroExit() exten => s,n(lbl_macro-c2cmacro-p1_2),Hangup() exten => h,1,MeetMeAdmin(8000,K) exten => h,n,Goto(s,lbl_macro-c2cmacro-p1_1) [macro-c2cmacro-p2] exten => s,n,Dial(SIP/sipconnect/${to2},120,M(c2c...
2020 Apr 09
1
python equivalent for virDomainGetGuestInfo()
Hi, I am using python apis. I can't seem to find equivalent python function for virDomainGetGuestInfo() https://libvirt.org/html/libvirt-libvirt-domain.html#virDomainGetGuestInfo I have qemu-guest-agent running on the guest, and want to extract os information.